vote up 1 vote down star

I'm using a compination of actionscript's getPixel and php's imagecreatetruecolor and imagesetpixel to generate a png image of an swf movie inside a browser.

At the moment it will output a 72 dpi image at the same resolution as the swf movie, but I've been asked about the possibility of generating a 300 dpi image instead.

Is this possible?

flag

3 Answers

vote up 1 vote down check

Flash doesn't really know anything about resolution or dpi. The only way to output an image from flash with the correct amount of pixels and at print quality is to scale your movie to that amount of pixels and use print quality images or vector graphics. Otherwise you're just going to have a programatically scaled image which is no better than just sending the 72dpi image off to print. Long story short, flash is not a good print design platform.

link|flag
vote up 1 vote down

I assume you use BitmapData.draw to generate the image? If you scale the swf up (scaleX and scaleY) before dumping the image to a BitmapData, you can get a higher sample rate = a higher DPI.

If you don't want more data, just interpolation (like McWafflestix suggests), you can try using a scale Matrix as the second parameter to draw.

link|flag
vote up 0 vote down

Yes, it should be possible. You can either reduce the size of your output image (thereby increasing the DPI) or use interpolation to increase the effective resolution from 72 DPI to 300 DPI.

link|flag

Your Answer

Get an OpenID
or

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