PixaDecoderCapabilities.dartBytes constructor

const PixaDecoderCapabilities.dartBytes({
  1. bool metadataProbe = false,
  2. bool staticDecode = true,
  3. bool animatedDecode = false,
  4. bool progressiveDecode = false,
  5. bool regionDecode = false,
  6. bool processorInput = false,
  7. bool streamingInput = false,
  8. bool defaultRuntimeDisplay = false,
  9. bool stable = true,
})

Explicit Dart decoder defaults for opt-in non-default plugin paths.

Implementation

const PixaDecoderCapabilities.dartBytes({
  this.metadataProbe = false,
  this.staticDecode = true,
  this.animatedDecode = false,
  this.progressiveDecode = false,
  this.regionDecode = false,
  this.processorInput = false,
  this.streamingInput = false,
  this.defaultRuntimeDisplay = false,
  this.stable = true,
}) : zeroCopyInput = false,
     ownedOutputBuffers = false;