I have a DIB handle. How can I convert it to TPNGObject with preserving its transparency?

EDIT : I use method 2 in this solution Here

but the bitmap resulted is not transparent even if i set its Transparent Flag with true

link|improve this question

79% accept rate
3  
Which Delphi and which PNG lib? – David Heffernan Nov 27 '11 at 12:03
i use Delphi 7 , but i don't understand what lib do u mean, and thanks for you concern :) – Sara Saeed Nov 27 '11 at 13:18
There are a number of PNG libraries in common use with D7. Answer may depend on which one you use. – David Heffernan Nov 27 '11 at 13:19
I'm sorry David but how can i know the lib? i just use pngimage in the uses section and define a TPNGOBject. is there a way to know which library i use.. – Sara Saeed Nov 27 '11 at 13:27
1  
Delphi 7 can not handle PNG by default. So you have a thirdparty lib which handles and registers the PNG-pictures. Open the file "pngimage.pas" and see which lib you have. – Andreas Nov 27 '11 at 13:37
show 3 more comments
feedback

1 Answer

I think it's going to start out something like this:

var
  lpbi: PBitmapInfoHeader;
begin
  // Get DIB header info from DIB handle
  lpbi := PBitmapInfoHeader(GlobalLock(hdIB));
end;

Then, if it's a 32 bit image, it will have an alpha channel, which you'll use for your transparency data.

Then, you copy the RGB data to the PNG object's scanline and the alpha data to the alpha scanline.

link|improve this answer
I use this code to get the bitmap, how can i manipulate it to extract the png image(the bitmap image resulted is not transparent even if i set its Transparent property to true) – Sara Saeed Nov 28 '11 at 8:21
@Sara, yes, the TBitmap only supports a single transparent color, and it's whatever color matches the first pixel (upper left corner). Gustavo Daud's TPNGObject supports a full alpha channel. You use the scanline and alpha scanline properties to copy the data over to, pixel by pixel. – Marcus Adams Nov 28 '11 at 13:44
Thanks Marcus but can you help me in how to copy the image data – Sara Saeed Nov 28 '11 at 13:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.