In my recent posting on Flash Bitmap maximum width and height, I blog about how Flash bitmapData object has a maximum width and height of 2880 pixel . I was recently contacted by John Keyton who was really nice to point a work around created by Ronald LosbaƱes that would allow you to create a [...]
[Workaround] Flash Bitmap maximum width and height
August 25th, 2008 · Comments Off · Flash
Tags:Add new tag·bitmapdata·Flash·Height·Image·loader·maximum

Width and Height for Dynamic Image in Flex
July 16th, 2008 · No Comments · Flash, Flex
Recently I was working on a Flex project and realize upon having my project on the live server , I couldn’t retrieve the height and width property of my loaded image by doing below
var img:Image = new Image();
img.source = "image.jpg"
trace(img.height);
trace(img.width);
The trace statement above will just show 0 for both width and height. Of course after [...]
Tags:dynamic image·Flex·Height·Image·Width
