如何将exif数据添加到AS3中的图像?

时间:2015-07-07 12:38:57

标签: actionscript-3 flash exif

如何在AS3中将exif数据添加到JPG或PNG?

    var x:JPEGEncoderOptions = new JPEGEncoderOptions();
    var jpegEncoder:JPEGEncoder = new JPEGEncoder(100);
    var bitmapData:BitmapData = new BitmapData(100,100,true,0x00000000);
    bitmapData.drawWithQuality(this);
    var ba:ByteArray = jpegEncoder.encode(bitmapData);
    var file:FileReference = new FileReference();
    file.save(ba, "ScreenShot.jpeg");

更多信息
在我的应用程序中,我们让用户使用PNGEncoder和JPEGEncoder类进行屏幕截图。他们要求能够在Exif中保存作者创建日期和时间。我能够创建bytearray然后保存该文件,但我不知道如何将exif数据添加到它。

0 个答案:

没有答案