Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumColourConversionMode

  • Android
  • Objective-C
  • Swift
public class EnumColourConversionMode {
    public static final int CICM_GENERAL = 1;
    public static final int CICM_SKIP = 0;
}
typedef NS_ENUM(NSInteger, EnumColourConversionMode)
{
    /** Converts a colour image to a grayscale image using the general algorithm. Check @ref CICM for available argument settings.*/
    EnumColourConversionModeGeneral = 0x01,
    /** Skips colour conversion. */
    EnumColourConversionModeSkip = 0x00
};
public enum EnumColourConversionMode : Int{
    /** Converts a colour image to a grayscale image using the general algorithm. Check @ref CICM for available argument settings.*/
    general = 0x01
    /** Skips colour conversion. */
    skip = 0x00
}

This page is compatible for:

Is this page helpful?

YesYes NoNo