Table of Contents

Method DecodeAscii

Namespace
PaintDotNet.Imaging
Assembly
PaintDotNet.Core.dll

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).

public static char[] DecodeAscii(IReadOnlyList<byte> data)

Parameters

data IReadOnlyList<byte>

Returns

char[]

Remarks

The de facto standard for EXIF ASCII data is to use UTF-8, despite it not being "standard."