Pacote | mx.graphics.codec |
Interface | public interface IImageEncoder |
Implementadores | JPEGEncoder, PNGEncoder |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Elementos da API relacionados
Propriedades públicas
Propriedade | Definido por | ||
---|---|---|---|
contentType : String [somente leitura]
The MIME type for the image format that this encoder produces. | IImageEncoder |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
Encodes a BitmapData object as a ByteArray. | IImageEncoder | ||
Encodes a ByteArray object containing raw pixels
in 32-bit ARGB (Alpha, Red, Green, Blue) format
as a new ByteArray object containing encoded image data. | IImageEncoder |
Detalhes da propriedade
contentType | propriedade |
Detalhes do método
encode | () | método |
public function encode(bitmapData:BitmapData):ByteArray
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Encodes a BitmapData object as a ByteArray.
Parâmetros
bitmapData:BitmapData — The input BitmapData object.
|
ByteArray — Returns a ByteArray object containing encoded image data.
|
encodeByteArray | () | método |
public function encodeByteArray(byteArray:ByteArray, width:int, height:int, transparent:Boolean = true):ByteArray
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Encodes a ByteArray object containing raw pixels in 32-bit ARGB (Alpha, Red, Green, Blue) format as a new ByteArray object containing encoded image data. The original ByteArray is left unchanged.
Parâmetros
byteArray:ByteArray — The input ByteArray object containing raw pixels.
This ByteArray should contain
4 width height bytes.
Each pixel is represented by 4 bytes, in the order ARGB.
The first four bytes represent the top-left pixel of the image.
The next four bytes represent the pixel to its right, etc.
Each row follows the previous one without any padding.
| |
width:int — The width of the input image, in pixels.
| |
height:int — The height of the input image, in pixels.
| |
transparent:Boolean (default = true ) — If false ,
alpha channel information is ignored.
|
ByteArray — Returns a ByteArray object containing encoded image data.
|
Wed Jun 13 2018, 11:10 AM Z