How do I get PNGs to work in D2009? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:21:59Z http://stackoverflow.com/feeds/question/254952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/254952/how-do-i-get-pngs-to-work-in-d2009 5 How do I get PNGs to work in D2009? Mason Wheeler 2008-10-31T21:02:06Z 2009-02-27T11:43:41Z <p>One of Delphi 2009's advertised features was PNG support. That's great, because the Unicode issues break the pngimage.pas library I was using before. Only problem is, I can't <em>find</em> the Delphi 2009 version. Anyone know what it's called, and how difficult it is to migrate existing pngimage.pas-based code to the new library?</p> http://stackoverflow.com/questions/254952/how-do-i-get-pngs-to-work-in-d2009/255005#255005 1 Answer by Gamecat for How do I get PNGs to work in D2009? Gamecat 2008-10-31T21:24:31Z 2008-10-31T21:24:31Z <p>You can read png images into a TImage control. Just like gif, jpg, emf, wmf, bmp.</p> <p>Not sure if that's what you want.</p> http://stackoverflow.com/questions/254952/how-do-i-get-pngs-to-work-in-d2009/255132#255132 7 Answer by Nick Hodges for How do I get PNGs to work in D2009? Nick Hodges 2008-10-31T22:26:26Z 2008-10-31T22:26:26Z <p>All VCL image support in Delphi is provided via TImage. If you want to display a PNG image, simply drop a TImage control and then load a PNG image into the Picture property. </p> <p>If you want to manipulate a PNG image in code (i.e., not display it) then you can add</p> <p>pngimage</p> <p>to your uses clause, and then use the TPNGImage class directly. </p> <p>On my machine, PNGImage.pas is found at:</p> <p>C:\Program Files\CodeGear\RAD Studio\6.0\source\Win32\vcl\Imaging\PNGImage\pngimage.pas</p> http://stackoverflow.com/questions/254952/how-do-i-get-pngs-to-work-in-d2009/594410#594410 0 Answer by Theo for How do I get PNGs to work in D2009? Theo 2009-02-27T11:34:05Z 2009-02-27T11:43:41Z <p>Thank you, Nick, your solution really helps a lot.</p> <p>Unfortunately the Delphi 2009 Professional help files are so bad that you seldom get any answers at all. Even if you search for pngimage you won't get any result.</p>