Click or drag to resize

IPdfEncoding Interface

Represents an interface used for transforming a String into a sequence of bytes and vice versa.

Namespace: SautinSoft.Pdf.Text
Assembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.11.26
Syntax
public interface IPdfEncoding

The IPdfEncoding type exposes the following members.

Methods
 NameDescription
Public methodGetByteCount Calculates the number of bytes produced by encoding the characters in the specified string.
Public methodGetBytes Encodes a set of characters from the specified string into the specified byte array.
Public methodGetMaxByteCount Calculates the maximum number of bytes produced by encoding the specified number of characters.
Public methodGetString Decodes a sequence of bytes from the specified byte array into a string.
Top
Extension Methods
 NameDescription
Public Extension MethodGetBytes Encodes all the characters in the specified string into a sequence of bytes.
(Defined by PdfEncodingExtensions)
Public Extension MethodGetString Decodes a sequence of bytes from the specified byte array into a string.
(Defined by PdfEncodingExtensions)
Top
See Also