Hello,
we use the latest version of ImageEn (Build 6.0.0.25.9884).
Our customer wants to convert a transparent PNG file to BMP.
He creates the PNG file with Photoshop.
But after the conversion the output BMP has fragmented segments
of different colors on the former-transparent parts of the image.
We use this code:
var
bmp: TIEBitmap;
begin
bmp := TIEBitmap.Create;
try
bmp.Read('C:\input.png');
bmp.Write('C:\output.bmp');
finally
bmp.Free;
end;
end;
Does anyone has an idea how to fix this issue?