| c++ Programming Glossary: libpnglight-weight C++ image library http://stackoverflow.com/questions/11816571/light-weight-c-image-library  either directly or via a use of general libraries like libpng Don't care if it's DirectX or OpenGL as I don't plan on using..   I strongly suggest you to write a little library around libpng and jpeglib and every other low level library for the formats.. 
 Libpng, Palette png with alpha or not? http://stackoverflow.com/questions/13569887/libpng-palette-png-with-alpha-or-not  to know if this png image has alpha channel or not.  c png libpng   share improve this question   PNG supports transparency in.. If you are interested in case 2a and if you are using libpng you should look at the function png_get_tRNS   share improve.. 
 error LNK2005: xxx already defined in MSVCRT.lib(MSVCR100.dll) http://stackoverflow.com/questions/2728649/error-lnk2005-xxx-already-defined-in-msvcrt-libmsvcr100-dllc-something-libc 
 Convert bitmap to PNG in-memory in C++ (win32) http://stackoverflow.com/questions/366768/convert-bitmap-to-png-in-memory-in-c-win32  writing to a file using only the Platform SDK i.e. no libpng etc. . I also want to be able to define a transparent color..  share improve this question   I read and write PNGs using libpng and it seems to deal with everthing I throw at it I've used.. 
 How would I load a PNG image using Win32/GDI (no GDI+ if possible)? http://stackoverflow.com/questions/4567875/how-would-i-load-a-png-image-using-win32-gdi-no-gdi-if-possible  lightest solution without using external libraries like libpng  c image winapi png gdi   share improve this question   You.. 
 How do I read JPEG and PNG pixels in C++ on Linux? http://stackoverflow.com/questions/694080/how-do-i-read-jpeg-and-png-pixels-in-c-on-linux  the image formats For jpeg it's libjpeg for png it's libpng. The chances that the libs are already installed is very high... 
 |