SKCodecResult 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.
Used to describe the result of a call to GetPixels(SKImageInfo, IntPtr, SKCodecOptions) or one of the overloads that accepts a SKCodecOptions.
public enum SKCodecResult
- Inheritance
-
SKCodecResult
Fields
Name | Value | Description |
---|---|---|
Success | 0 | The general return value for success. |
IncompleteInput | 1 | The input is incomplete. A partial image was generated. |
ErrorInInput | 2 | There was an error in the imput data. If returned from an incremental decode, decoding cannot continue, even with more data. |
InvalidConversion | 3 | The codec cannot convert to match the request, ignoring dimensions. |
InvalidScale | 4 | The generator cannot scale to requested size. |
InvalidParameters | 5 | The parameters (besides info) are invalid. e.g. null pixels, row bytes too small, etc. |
InvalidInput | 6 | The input did not contain a valid image. |
CouldNotRewind | 7 | Fulfilling this request requires rewinding the input, which is not supported for this input. |
InternalError | 8 | An internal memory occurred, such as an out-of-memory error. |
Unimplemented | 9 | This method is not supported by this codec. |
Remarks
Result is the union of possible results from subclasses.