FontObject GetEncoding Function. Obtain a standard encoding dictionary for use with PDF text operators. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

Obtain a standard encoding dictionary for use with PDF text operators.

 

   
Syntax  

[C#]
static Dictionary<char, char> GetEncoding(LanguageType type, bool vertical)

[Visual Basic]
Shared Function GetEncoding(type As LanguageType, vertical As Boolean) As Dictionary(Of Char, Char)

Throws Exceptions may throw Exception()

   

Params
 
Name Description
type

The language type for the desired encoding.

vertical

Whether the writing direction should be horizontal or vertical.

return A dictionary mapping Unicode values to native character IDs.

 

   

Notes
 

Use this method to obtain a standard encoding dictionary for use with PDF text operators.

Note that the encoding dictionary is defined purely by the language and direction provided as arguments to this function. It is your responsibility to ensure that the returned encoding dictionary is only used with fonts that already have this encoding. If instead you need to encode text using the font encoding specific to this particular font see the EncodeText method.

Since the Unicode LanguageType is already Unicode the encoding for this type is identity. For this reason an exception will be thrown if an encoding for this type is requested.

See the Fonts and Languages section for details on language types.

 

   

Example
 

None.