Hello,
I have a TIFF file with a transperant area. I tried to place an image under the trensparent area, but for some reason it appears in white colour.
How did I do that:
1. I created 3 TImaging
2. I loaded with Imaging1.ICCAddFromFile() the tiff file in Imaging1
3. I loaded with Imaging2.ICCAddFromFile() the jpeg file in Imaging2
4. I created a new image in Imaging3 with Imaging3.CreateNewImage(Imaging1.GetWidth,Imaging1.GetHeight,64,Imaging3.argb(255,255,255,255));
5. I used DrawImage() to insert Imaging2 and Imaging1 in Imaging3:
Imaging3.DrawImage(Imaging2.GetNativeImage,100,400,Imaging2.GetWidth,Imaging2.GetHeight,7);
Imaging3.DrawImage(Imaging1.GetNativeImage,0,0,Imaging1.GetWidth,Imaging1.GetHeight,7);
I have also tried a PSD, but that did not work either.
The aforementioned problem does not occur though if using PNG or GIF files.
I use DELPHI 2009 with trial version of "GdPicture Pro Imaging SDK Ver. 5.12.3 (21 October 2009)"
