Table of contents
Swift
Objective-C

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