我正在我的 Flash 构建器中构建一个带有 actionscript 3.0 的应用程序。这是this question的后续问题。
我需要将字节数组上传到我的服务器,但我用来将位图数据转换为 a 的函数ByteArray
非常慢,所以它会冻结我的移动设备。我的代码如下:
var jpgenc:JPEGEncoder = new JPEGEncoder(50);
trace('encode');
//encode the bitmapdata object and keep the encoded ByteArray
var imgByteArray:ByteArray = jpgenc.encode(bitmap);
temp2 = File.applicationStorageDirectory.resolvePath("snapshot.jpg");
var fs:FileStream = new FileStream();
trace('fs');
try{
//open file in write mode
fs.open(temp2,FileMode.WRITE);
//write bytes from the byte array
fs.writeBytes(imgByteArray);
//close the file
fs.close();
}catch(e:Error){
有没有其他方法可以将其转换为byteArray
? 有没有更好的办法?