CGImageSourceStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The status of the CGImageSource loader.
public enum CGImageSourceStatus
type CGImageSourceStatus =
- Inheritance
-
CGImageSourceStatus
Fields
Name | Value | Description |
---|---|---|
UnexpectedEOF | -5 | The image loader detected a premature end-of-file condition. |
InvalidData | -4 | The data fed to the CGImageSource is invalid and does not represent an image that can be decoded. |
UnknownType | -3 | The CGImageSource does not have a decoder for the image. |
ReadingHeader | -2 | The CGImageSource is reading the image header information. |
Incomplete | -1 | The CGImageSource is still expecting data. |
Complete | 0 | The image loader has completed, the full set of images is loaded. |