I have this image over which i have a circular crop.
The user can move the underlying image and when he is ok with the result hits the crop button.
How can i crop only that part of the image which is under the mask?
I have this image over which i have a circular crop. The user can
Share
Create a new BitmapData, then use its draw() function to draw the pixels from the masked object.
For example, say you have a srcImg and a destImg, both Images defined in MXML:
HTH;
Amy