[Bindable]
protected var bmp : Bitmap = new Bitmap();
...
var loader : Loader = new Loader();
loader.contentLoaderInfo.addEventListener( Event.COMPLETE, onComplete );
loader.load( new URLRequest( fileObj.url ) );
function onComplete( event : Event ) : void
{
trace( Bitmap( LoaderInfo( event.target ).content ).bitmapData.height );
bmp = ( new Bitmap( Bitmap( LoaderInfo( event.target ).content ).bitmapData ) ) ;
}
...
<s:BitmapImage id="cameraSource" width="100%" height="100%" source="{ bmp }" scaleMode="stretch" />
I am using this source code to load a localy stored image file. It is loaded fine, but due some reason is not displayed.
- Why the follow source code doesn't display the loaded image ?
// Flex 4.6 and Flex 4.8 tested, mobile AIR application
loadervariable seems to be a local one, and potentially could be garbage collected. But I think you'd get a null pointer error in your event handler if that was the case. – Sunil D. Jan 7 at 17:46