Class ExifConverter
- Namespace
- PaintDotNet.Imaging
- Assembly
- PaintDotNet.Core.dll
public static class ExifConverter
- Inheritance
-
ExifConverter
- Inherited Members
Methods
- DecodeAscii(IReadOnlyList<byte>)
Decodes the data to a char array. The data is treated as using UTF-8 encoding, despite the use of ASCII terminology. Thus, chars may be outside the range [1, 255] (but not including 0).
- DecodeUtf8(IReadOnlyList<byte>)
Decodes the data to a string. The data is treated as using UTF-8 encoding.
- EncodeAscii(char[])
Encodes the character array as an ExifValue of type Ascii. The full range of Unicode characters is actually supported, as the string is encoded using UTF-8. Thus, chars outside the range of [1, 255] (but not 0) are permitted.
- EncodeUtf8(string)
Encodes the Unicode string as a sequence of UTF-8 characters. The returned ExifValue will be of type Ascii.