Save images to CameraRoll - iOS
Hi, I'm currently using the code below to save a screenshot of my app in Flash AIR 2,6:
var cameraRoll:CameraRoll = new CameraRoll();
var bitmapData:BitmapData = new BitmapData(640,960);
bitmapData.draw(MovieClip(root).stage);
cameraRoll.addBitmapData(bitmapData);
The app is working fine, in fact it saves the screenshot in the iPhone's CameraRoll.
So... the question is "what's the problem?": The problem is that the definition of the saved shot is not very high.
It seems like it has got a low JPEG quality... is it possible? Is there a way to save a more defined image in the CameraRoll?
Thank you all
Brandon
