Package | flash.display |
Class | public final class JPEGXREncoderOptions |
Inheritance | JPEGXREncoderOptions Object |
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.3 |
flash.display.BitmapData.encode()
method.
See also
Property | Defined by | ||
---|---|---|---|
colorSpace : String
Specifies how color channels are sampled.
| JPEGXREncoderOptions | ||
constructor : Object
A reference to the class object or constructor function for a given object instance.
| Object | ||
prototype : Object
[static]
A reference to the prototype object of a class or function object.
| Object | ||
quantization : uint
Specifies the amount of lossy in the compression.
| JPEGXREncoderOptions | ||
trimFlexBits : uint
Determines the amount of extra entropy data that is cut after quantization.
| JPEGXREncoderOptions |
Method | Defined by | ||
---|---|---|---|
Creates a JPEGEXREncoderOptions object with the specified settings.
| JPEGXREncoderOptions | ||
Indicates whether an object has a specified property defined.
| Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter.
| Object | ||
Indicates whether the specified property exists and is enumerable.
| Object | ||
Sets the availability of a dynamic property for loop operations.
| Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions.
| Object | ||
Returns the string representation of the specified object.
| Object | ||
Returns the primitive value of the specified object.
| Object |
colorSpace | property |
public var colorSpace:String
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.3 |
Specifies how color channels are sampled. For more information, see flash.display.BitmapEncodingColorSpace.
See also
quantization | property |
public var quantization:uint
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.3 |
Specifies the amount of lossy in the compression. The range of values is 0 to 100, where a value of 0 means lossless compression. Larger values increase the lossy value and the resultant image becomes more grainy. A common value is 10. For values of 20 or larger, the image can become very grainy.
trimFlexBits | property |
public var trimFlexBits:uint
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.3 |
Determines the amount of extra entropy data that is cut after quantization. This property can affect image quality, and is typically left at the default value.
JPEGXREncoderOptions | () | constructor |
public function JPEGXREncoderOptions(quantization:uint = 20, colorSpace:String = "auto", trimFlexBits:uint = 0)
Language version: | ActionScript 3.0 |
Runtime version: | AIR 3.3 |
Creates a JPEGEXREncoderOptions object with the specified settings.
Parametersquantization:uint (default = 20 ) — The amount of lossy in the compression.
|
|
colorSpace:String (default = "auto ") — Specifies how color channels are sampled.
|
|
trimFlexBits:uint (default = 0 ) — Determines the amount of extra entropy data
that is cut after quantization.
|