JPEGXRCompressOptions.hx 276 B

12345678
  1. package flash.display;
  2. extern final class JPEGXRCompressOptions implements IBitmapCompressOptions {
  3. var colorSpace : String;
  4. var quantization : UInt;
  5. var trimFlexBits : UInt;
  6. function new(quantization : UInt = 20, ?colorSpace : String, trimFlexBits : UInt = 0) : Void;
  7. }