PictureEffectsRaw Xojo Plugin |
|
PictureEffectsRawError Module
Constants for Error codes that some of the effects can return.
module PictureEffectsRawError
Constants
NO_ERROR = 0 | No error. |
INVALID_MASK = 1 | The mask was invalid. |
INVALID_SOURCE_IMAGE = 2 | The source image was invalid. |
UNABLE_TO_CREATE_DESTINATION = 3 | Could not create destination image. |
ILLEGAL_INPUT_PARAMETER = 4 | This error indicates that one or more parameters of the graphics filters contained a value that is outside of bounds of allowed values for those parameters. |
NOT_SUPPORTED_COLOR_SPACE = 5 | This error indicates that the given effect does not support the Color space of the image that was passed in as parameter. |
NOT_SUPPORTED_DEPTH = 6 | This error indicates that the given effect does not support the depth of the image that was passed in as parameter. |
DEPTH_NOT_MATCHING = 7 | Depth of the two bitmaps passed in does not match. |
CHANNEL_STRUCTURE_NOT_MATCHING = 8 | Channel structure of the two bitmaps passed in does not match. |
PARAMETER_NOT_SUPPORTED_ON_COLOR_SPACE = 9 | Parameter value is not supported for the given color space. |
ASYNC_METHOD_ALLREADY_RUNNING_ON_THIS_INSTANCE = 10 | A asynchronous method is already running on this class instance. You either need to wait for it to finish or create new class instance for the new operation. |