Share via


DecoderInitFlag (Compact 2013)

3/26/2014

This feature is being deprecated for this release. Refer to this component: Windows Imaging Component.

This enumeration provides flags used to describe the properties of an image decoder.

Syntax

enum DecoderInitFlag {
  DecoderInitFlagNone       = 0,
  DecoderInitFlagNoBlock    = 0x0001,
  DecoderInitFlagBuiltIn1st = 0x0002
};

Elements

  • DecoderInitFlagNone
    The decoder should not be initialized.
  • DecoderInitFlagNoBlock
    The caller requires nonblocking behavior. This is honored only by nonblocking decoders; that is, decoders that do not have the ImageCodecFlagsBlockingDecode flag. For more information, see ImageCodecFlags.
  • DecoderInitFlagBuiltIn1st
    The decoders built in to Imaging.dll should be tried first before using other decoders.

Requirements

Header

imaging.h

See Also

Reference

Imaging Enumerations