LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
CodecsPdfTextEncoding Enumeration
See Also  
Leadtools.Codecs Namespace : CodecsPdfTextEncoding Enumeration



Indicates the type of text encoding to perform when saving PDF images.

Syntax

Visual Basic (Declaration) 
Public Enum CodecsPdfTextEncoding 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As CodecsPdfTextEncoding
C# 
public enum CodecsPdfTextEncoding : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
public enum class CodecsPdfTextEncoding : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
Base85Use ASCII 85 text encoding algorithm.
HexUse ASCII HEX text encoding technique.
NoneNo text encoding at all.

Example

For an example, refer to CodecsPdfOptions.

Remarks

A PDF loaded as a raster image in LEADTOOLS is accomplished by two assemblies:

  • Leadtools.Codecs.Pdf.dll is the file filter for PDF format. Use this assembly as any other file filter in LEADTOOLS, such as Leadtools.Codecs.Bmp.dll for BMP support and Leadtools.Codecs.Tif.dll for TIF support.

  • Leadtools.PdfEngine.dll is the engine runtime assembly. It contains many resources such as tables and fonts required to render a PDF image. This assembly is not referenced in a direct way by the file filter; instead it is loaded dynamically and out of a process. You must ensure that this DLL is present on the machine to support loading PDF files. By default, it is required to have this DLL in the same directory where the file filter is located. However, to share many instances of Leadtools.PdfEngine.dll between many applications, use the CodecsPdfOptions.InitialPath property.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Codecs.CodecsPdfTextEncoding

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also