Class PsLoadOptions

PsLoadOptions class

Represents options for loading/importing of .mht-file into pdf document.

public sealed class PsLoadOptions : LoadOptions

Constructors

NameDescription
PsLoadOptions()The default constructor.

Properties

NameDescription
ConvertFontsToTTF { get; set; }Specifies whether to save non-TrueType fonts to TTF. It significantly decreases the volume of the resulting document in PS to PDF conversion and increases the speed of conversion of PS files with a large quantity of text in non-TrueType fonts to any output format. However, there is small vertical shift of text when converting PostSctipt file to image.
DisableFontLicenseVerifications { get; set; }Gets or sets flag to disable any license restrictions for all fonts while loading the file. When true, allows to execute operations with font that are prohibited by a license of this font, for example allows to embed a font into a PDF document even if license rules disable embedding for this font. By default false.
FontsFolders { get; set; }Gets or sets fonts folders paths.
LoadFormat { get; }Represents file format which LoadOptions describes.
WarningHandler { get; set; }Callback to handle any warnings generated. The WarningHandler returns ReturnAction enum item specifying either Continue or Abort. Continue is the default action and the Load operation continues, however the user may also return Abort in which case the Load operation should cease.

See Also