GraphicsFormats Xojo plugin |
|
RawICOExporter.ErrorValues Enum
Enum representing error codes which this class can return.
enum RawICOExporter.ErrorValues
Constants
NO_ERROR = 0 | No error |
INVALID_PARAMETER = -2 | Invalid parameter |
COULD_NOT_CREATE_FILE = -10 | Could not create file |
BITMAP_TO_SMALL = -17 | Bitmap is to small (ICO must be at least one pixel in size) |
BITMAP_TO_LARGE = -18 | Bitmap is to large (ICO cannot be larger than 256) |
INVALID_COLOR_SPACE = -20 | Invalid color space - ICO files do not support CMYK color space. |
INVALID_DEPTH = -21 | Invalid dept - The ICO files only supports 8 bit per channel depth. |
OUT_OF_MEMORY_ERROR = -23 | Out of memory. |
COULD_NOT_WRITE = -30 | Could not write file. |
NO_IMAGES_TO_SAVE = -35 | No images to save have been supplied. |