forked from stakx/WIC
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
276 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
namespace WIC | ||
{ | ||
/// <summary> | ||
/// <see cref="https://docs.microsoft.com/de-de/windows/win32/wic/-wic-codec-error-codes"/> | ||
/// </summary> | ||
public static class WinCodecError | ||
{ | ||
public const int PROPERTY_NOT_FOUND = unchecked((int)0x88982F40); | ||
public const int PROPERTY_NOT_SUPPORTED = unchecked((int)0x88982F41); | ||
public const int UNSUPPORTED_OPERATION = unchecked((int)0x88982F81); | ||
public const int TOOMUCHMETADATA = unchecked((int)0x88982F52); | ||
public const int INSUFFICIENTBUFFER = unchecked((int)0x88982F8C); | ||
public const int TOO_MUCH_METADATA = unchecked((int)0x88982F52); | ||
public const int INSUFFICIENT_BUFFER = unchecked((int)0x88982F8C); | ||
public const int IMAGE_METADATA_HEADER_UNKNOWN = unchecked((int)0x88982F63); | ||
public const int COMPONENT_NOT_FOUND = unchecked((int)0x88982F50); | ||
public const int CODEC_NO_THUMBNAIL = unchecked((int)0x88982F44); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
public enum ExifColorSpace : int | ||
{ | ||
SRGB = 1, | ||
AdobeSRGB = 2, | ||
AdobeRGB = 2, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.