[]
Represents an output intent for a PDF document. Output intents provide information about the intended output device or production condition.
new OutputIntent(om): OutputIntent;
Creates a new OutputIntent object.
An object manager that controls the lifetime of the OutputIntent object.
OutputIntent
ObjectBase.constructor
new OutputIntent(): OutputIntent;
Creates a new OutputIntent object.
OutputIntent
ObjectBase.constructor
readonly static GTS_PDFA1: "GTS_PDFA1" = "GTS_PDFA1";
The string representing the GTS_PDFA1 output intent subtype.
readonly static GTS_PDFX: "GTS_PDFX" = "GTS_PDFX";
The string representing the GTS_PDFX output intent subtype.
readonly static ISO_PDFE1: "ISO_PDFE1" = "ISO_PDFE1";
The string representing the ISO_PDFE1 output intent subtype.
get destOutputProfile(): IccProfile;
Gets or sets an ICC profile color space defining the transformation from the PDF document's source colors to output device colorants.
set destOutputProfile(value): void;
Gets or sets an ICC profile color space defining the transformation from the PDF document's source colors to output device colorants.
void
get id(): number;
Gets the reference to the object.
number
get info(): string;
Gets or sets the human-readable text string containing additional information or comments about the intended output device or production condition.
string
set info(value): void;
Gets or sets the info string.
string
void
get om(): ObjectManager;
Gets the owner ObjectManager instance.
get outputCondition(): string;
Gets or sets the output condition. A text string concisely identifying the intended output device or production condition in human-readable form.
string
set outputCondition(value): void;
Gets or sets the output condition.
string
void
get outputConditionIdentifier(): string;
Gets or sets the output condition identifier. This is a string identifying the intended output device or production condition in human or machine readable form.
string
set outputConditionIdentifier(value): void;
Gets or sets the output condition identifier.
string
void
get registryName(): string;
Gets or sets the registry name identifying the registry in which the condition designated by OutputConditionIdentifier is defined.
string
set registryName(value): void;
Gets or sets the registry name.
string
void
get subtype(): string;
Gets or sets the output intent subtype. Common values include "GTS_PDFX" for PDF/X and "GTS_PDFA1" for PDF/A.
string
set subtype(value): void;
Gets or sets the output intent subtype.
string
void
static createDefaultForPdfA(om?): OutputIntent;
Creates a default OutputIntent for PDF/A compliance with sRGB color space.
An object manager that controls the lifetime of the OutputIntent object.
OutputIntent
A new OutputIntent configured for PDF/A compliance.
free(): void;
Detaches the object from the ObjectManager and deallocates its memory, if possible.
void
rebind(omTo): void;
Rebinds the object from the current ObjectManager to the specified one.
The new ObjectManager for the object.
void