How do I get PNGs to work in D2009? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T11:21:59Zhttp://stackoverflow.com/feeds/question/254952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/254952/how-do-i-get-pngs-to-work-in-d20095How do I get PNGs to work in D2009?Mason Wheeler2008-10-31T21:02:06Z2009-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#2550051Answer by Gamecat for How do I get PNGs to work in D2009?Gamecat2008-10-31T21:24:31Z2008-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#2551327Answer by Nick Hodges for How do I get PNGs to work in D2009?Nick Hodges2008-10-31T22:26:26Z2008-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#5944100Answer by Theo for How do I get PNGs to work in D2009?Theo2009-02-27T11:34:05Z2009-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>