I am trying to create a transparent image on which to write some text which can then be turned upside down.
When I added in the text it always appeared on a white background, so I stripped out that part, just leaving the image empty.
The following code snippet:
Code: Select all
CreateImage(277,200,200,32,#PB_Image_Transparent)
StartDrawing(ImageOutput(#finalimage))
DrawingMode(#PB_2DDrawing_Transparent)
DrawImage(ImageID(277),0,0)
I can draw shapes onto image 277 and they still have a white background.
Using ' DrawAlphaImage(ImageID(277),0,0) ' does not show anything on the final image.
I have been using lots of bad words at my computer and would appreciate any help as to the possible cause.