ImageError enum
Enumerates possible error codes related to image management.
Constructors
- ImageError()
-
const
Values
- success → const ImageError
-
No error.
- insufficientBuffer → const ImageError
-
The given buffer is too small.
- objectDoesNotExist → const ImageError
-
The requested object does not exist; a 'null' should be returned if possible.
- base → const ImageError
-
Base error code for Image module.
- minimum → const ImageError
-
Minimum error code for Image module.
- invalidHandle → const ImageError
-
The handle is invalid.
- invalidParameter → const ImageError
-
The parameter is invalid.
- imageSizeMismatch → const ImageError
-
The image sizes are not compatible for the requested operation.
- pixelFormatMismatch → const ImageError
-
The pixel formats are not compatible.
- keyAlreadyExists → const ImageError
-
The given key is already used in the dictionary. Multiple values per key is not supported.
- keyNotFound → const ImageError
-
The given key is not present in the dictionary.
- invalidPixelFormat → const ImageError
-
The required pixel format is not correct.
- pythonModule → const ImageError
-
An error as occured during python module initialization.
- functionNotImplemented → const ImageError
-
Function not implemented.
- backendError → const ImageError
-
TODO
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ImageError> -
A constant List of the values in this enum, in order of their declaration.
[success, insufficientBuffer, objectDoesNotExist, base, minimum, invalidHandle, invalidParameter, imageSizeMismatch, pixelFormatMismatch, keyAlreadyExists, keyNotFound, invalidPixelFormat, pythonModul…