How to convert icon to png with alpha transparency in delphi ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T22:30:27Zhttp://stackoverflow.com/feeds/question/1141561http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1141561/how-to-convert-icon-to-png-with-alpha-transparency-in-delphi1How to convert icon to png with alpha transparency in delphi ?isa2009-07-17T05:45:31Z2009-07-17T07:16:02Z
<p>The code below will extract icon from file and convert it to png but without alpha transparency ?</p>
<pre><code>var
IconIndex : word;
icon:TIcon;
png:TPngImage;
bmp:TBitmap;
begin
IconIndex := 0;
icon := TIcon.Create;
icon.Handle := ExtractAssociatedIcon(hInstance,pChar(Edit1.Text), IconIndex) ;
bmp:= TBitmap.Create;
bmp.LoadFromFile('blank.bmp');
DrawIcon(bmp.Canvas.Handle, 0, 0, icon.Handle) ;
png := TPngImage.Create();
png.Assign(bmp);
png.SaveToFile('icon.png');
end;
</code></pre>
http://stackoverflow.com/questions/1141561/how-to-convert-icon-to-png-with-alpha-transparency-in-delphi/1141581#11415810Answer by eed3si9n for How to convert icon to png with alpha transparency in delphi ?eed3si9n2009-07-17T05:51:52Z2009-07-17T05:51:52Z<p>I found some libraries like <a href="http://pngdelphi.sourceforge.net/" rel="nofollow">pngdelphi</a> and <a href="http://delphi.pjh2.de/articles/graphic/png.php" rel="nofollow">Delphi PNG and MNG libraries</a> after Googling.</p>
http://stackoverflow.com/questions/1141561/how-to-convert-icon-to-png-with-alpha-transparency-in-delphi/1141698#11416980Answer by Stijn Sanders for How to convert icon to png with alpha transparency in delphi ?Stijn Sanders2009-07-17T06:38:32Z2009-07-17T06:38:32Z<p>Although <a href="http://blogs.embarcadero.com/nickhodges/2008/08/13/39100" rel="nofollow">TPngImage is no longer open source</a>, if I take a quick look in an old copy I have lying around here, TPngImage.Assign only checks if the source is a TPngImage, and if not lets the 'default' assign do it's work, and for TBitmap or TGraphic, this will most probably use a plain draw on the canvas which throws away the transparency.</p>
<p>This looks like something to post on <a href="http://qc.embarcadero.com/" rel="nofollow">Delphi QC</a></p>
http://stackoverflow.com/questions/1141561/how-to-convert-icon-to-png-with-alpha-transparency-in-delphi/1141802#11418025Answer by Uwe Raabe for How to convert icon to png with alpha transparency in delphi ?Uwe Raabe2009-07-17T07:16:02Z2009-07-17T07:16:02Z<p>The <a href="http://cc.embarcadero.com/Item/26127" rel="nofollow">PngComponents</a> contain a unit PngFunctions.pas, where you can have a look at </p>
<p><code>procedure ConvertToPNG(Source: TGraphic; out Dest: TPngImage);</code></p>
<p>There you can find the code to convert a TIcon into a TPngImage - or just use that procedure.</p>