vote up 0 vote down star

I need to copy multiple images with transparency to the same BitmapData without the overlapping images' transparencies overwriting the existing pixels.

By default when you use the copyPixels method on a BitmapData with transparency to a BitmapData without transparency, the images layer like I want. The issue is I need to render to a BitmapData layer with transparency to another BitmapData with transparency. I want to maintain the transparency of the bitmapdata but still get the overlapping effect.

Can anyone think of a inexpensive way to achieve this?

flag

43% accept rate

1 Answer

vote up 1 vote down check

Tenatively, I believe this solution works:

bitmapData.copyPixels( source, rectangle, point, null, null, true );

The last property "mergeAlpha" when set to true appears to fix this.

link|flag

Your Answer

Get an OpenID
or

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