このコードはPngImageコンポーネント (G.Daud から) で動作します。PngImage が D7 の PngComponentsに置き換えられた後、コンパイルされなくなりました ( http://code.google.com/p/cubicexplorer/downloads/list )。
function Bmp32ToPng(bmp: TBitmap): TPngObject;
var
x, y: integer;
src, dst: PngImage.pByteArray;
begin
Result:= nil;
if bmp.PixelFormat<>pf32bit then
Exit;
Result:= TPngObject.CreateBlank(COLOR_RGBALPHA, 8, bmp.Width, bmp.Height);
Result.Canvas.Draw(0, 0, bmp);
for y:= 0 to bmp.Height-1 do begin
src:= bmp.ScanLine[y];
dst:= Result.AlphaScanLine[y];
for x:= 0 to bmp.Width-1 do
dst[x]:= src[x*4+3];
end;
end;
このCreateblank
メソッドはPngComponentsに存在しません。Create
単純なthen 設定に置き換えることはできませんWidth/height
。Width/height
はPngComponentsの R/O です。
32bpp BMP (例: shell32.dll から取得) を PNG に変換するには?