Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the usable stage size limit in Flash Player 11?

The usable stage size limit in Flash Player 10 is roughly 4,050 pixels by 4,050 pixels. However, the usable size of the stage varies depending on the settings of the QUALITY tag. In some cases, it's possible to see graphic artifacts when stage size approaches the 3840 pixel range. http://kb2.adobe.com/cps/496/cpsid_49662.html

But what about Flash Player 11?

like image 280
davivid Avatar asked Nov 02 '11 13:11

davivid


2 Answers

Standard marketing sights: Enhanced high resolution bitmap support

http://www.adobe.com/products/flashplayer/features.html
http://www.techspot.com/downloads/1127-adobe-flash-player.html

Enhanced high resolution bitmap support — BitmapData objects are no longer limited to a maximum resolution of 16 megapixels (16,777,215 pixels), and maximum bitmap width/height is no longer limited to 8,191 pixels, enabling the development of apps that utilize very large bitmaps.

O'Reilly Media cites:

1 megapixel is equal to 1,000,000 pixels.
Flash Player 10 supports up to 00.008 megapixels.
Flash Player 11 supports up to 16.777 megapixels.

Although, the Adobe Flash Player 11 / Features page lists previous constraints for effects.

http://www.adobe.com/products/flashplayer/features.html

3D effects Manipulate large bitmaps up to 16,777,216 pixels (4096x4096) with a maximum length of 8191 pixels per side.

Posts regarding this topic at the Adobe Forums seem unresolved, such as:

Maximum bitmap width/height in Incubator?
http://forums.adobe.com/message/3898280

like image 53
Jason Sturges Avatar answered Nov 17 '22 11:11

Jason Sturges


it must be the same, otherwise Adobe would have updated the info in the documentation, it would have been listed as a new feature, etc.

ActionScript 3.0 / Flash Player 11 - flash.display.BitmapData:

In AIR 1.5 and Flash Player 10, the maximum size for a BitmapData object is 8,191 pixels in width or height, and the total number of pixels cannot exceed 16,777,215 pixels. (So, if a BitmapData object is 8,191 pixels wide, it can only be 2,048 pixels high.) In Flash Player 9 and earlier and AIR 1.1 and earlier, the limitation is 2,880 pixels in height and 2,880 in width.

like image 1
Chunky Chunk Avatar answered Nov 17 '22 13:11

Chunky Chunk