这是我的代码。我想要实现的是能够从相机捕获图像并将其上传到媒体服务器,但到目前为止我还无法成功对其进行编码。有人可以指出我正确的方向吗?
这是代码
var imagePromise:MediaPromise = event.data;
imageLoader = new Loader();
imageLoader.contentLoaderInfo.addEventListener( Event.COMPLETE, asyncImageLoaded );
imageLoader.addEventListener( IOErrorEvent.IO_ERROR, cameraError );
imageLoader.loadFilePromise( imagePromise );
function asyncImageLoaded(event:Event):void
{
var destination:String = "upload.php";
var now:Date = new Date();
var fileName = "IMG" + now.fullYear + now.month + ".jpg";
var image:Bitmap = Bitmap(imageLoader.content);
var bitmapData:BitmapData = image.bitmapData;
var j = new JPGEncoder(80);
var bytes:ByteArray = j.encode(bitmapData);
}
这是我尝试对图像进行编码时遇到的错误
TypeError:错误 #1009:无法访问空对象引用的属性或方法。