How to draw a transparent rectangle in j2me?
+1
A:
Transparency is supported only in immutable images, i.e. images loaded from files. So you can create appropriate image. Or create transparency via filling its transparency parts with background color.
Donz
2010-10-08 15:02:52
Hi Donz can you put some code about that?
newcomer
2010-10-22 22:28:12
What code do you need? Image img = Image.createImage("/someImgWithTransparency.png"); gr.drawImage(img, 0, 0, Graphics.TOP | Graphics.LEFT)
Donz
2010-10-25 08:45:09