var jpgEncoder:JPGEncoder = new JPGEncoder(85);
var jpgStream:ByteArray = jpgEncoder.encode(bmpData);
以上是报告错误:
Type was not found or was not a compile-time constant: JPGEncoder.
Call to a possibly undefined method JPGEncoder.
答案 0 :(得分:3)
你在谈论
com.adobe.images.JPGEncoder; ?
如果是,则来自ActionScript 3 Core Library中的核心类。
编辑:我知道的唯一可能预先包装的是
mx.graphics.codec.JPEGEncoder
不确定它与as3core库的匹配程度