我需要导入哪个包才能在flash中使用JPGEncoder?

时间:2010-07-02 16:55:24

标签: flash package

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.

1 个答案:

答案 0 :(得分:3)

你在谈论

com.adobe.images.JPGEncoder; ?

如果是,则来自ActionScript 3 Core Library中的核心类。

编辑:我知道的唯一可能预先包装的是

mx.graphics.codec.JPEGEncoder

不确定它与as3core库的匹配程度