PdfOptions

Inheritance: java.lang.Object, com.aspose.psd.DisposableObject, com.aspose.psd.ImageOptionsBase

public class PdfOptions extends ImageOptionsBase

The PDF options.

Constructors

ConstructorDescription
PdfOptions()Initializes a new instance of the PdfOptions class.

Methods

MethodDescription
clone()
close()Implements the Closable interface and can be used in the try-with-resources statement since JDK 1.7.
deepClone()Clones this instance.
deepClone_internalized()Clones this instance.
dispose()Disposes the current instance.
equals(Object arg0)
getBufferSizeHint()Gets or sets the buffer size hint which is defined max allowed size for all internal buffers.
getClass()
getCorePdfOptions_internalized()Gets the core PDF options.
getDefaultReplacementFont()Gets or sets the default replacement font (font that will be used to draw text when exporting to raster, if existing layer font in PSD file is not presented in system).
getDisposed()Gets a value indicating whether this instance is disposed.
getFullFrame()Gets a value indicating whether [full frame].
getMultiPageOptions()The multipage options
getPageSize()Gets the size of the page.
getPalette()Gets or sets the color palette.
getPdfCoreOptions()The PDF core options
getPdfDocumentInfo()Gets or sets metadata for document.
getProgressEventHandler()Gets or sets the progress event handler.
getResolutionSettings()Gets or sets the resolution settings.
getSource()Gets or sets the source to create image in.
getVectorRasterizationOptions()Gets or sets the vector rasterization options.
getXmpData()Gets or sets the XMP metadata container.
hashCode()
notify()
notifyAll()
setBufferSizeHint(int value)Gets or sets the buffer size hint which is defined max allowed size for all internal buffers.
setDefaultReplacementFont(String value)Gets or sets the default replacement font (font that will be used to draw text when exporting to raster, if existing layer font in PSD file is not presented in system).
setFullFrame(boolean value)Sets a value indicating whether [full frame].
setIgnoreAfterCreate_internalized(boolean value)Gets or sets a value indicating whether ignore after create event.
setMultiPageOptions(MultiPageOptions value)The multipage options
setPageSize(SizeF value)Sets the size of the page.
setPalette(IColorPalette value)Gets or sets the color palette.
setPdfCoreOptions(PdfCoreOptions value)The PDF core options
setPdfDocumentInfo(PdfDocumentInfo value)Gets or sets metadata for document.
setProgressEventHandler(ProgressEventHandler value)Gets or sets the progress event handler.
setResolutionSettings(ResolutionSetting value)Gets or sets the resolution settings.
setSource(Source value)Gets or sets the source to create image in.
setVectorRasterizationOptions(VectorRasterizationOptions value)Gets or sets the vector rasterization options.
setXmpData(XmpPacketWrapper value)Gets or sets the XMP metadata container.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

PdfOptions()

public PdfOptions()

Initializes a new instance of the PdfOptions class.

clone()

public ImageOptionsBase clone()

Returns: ImageOptionsBase

close()

public void close()

Implements the Closable interface and can be used in the try-with-resources statement since JDK 1.7. This method simply call dispose method.

deepClone()

public ImageOptionsBase deepClone()

Clones this instance.

Returns: ImageOptionsBase - Returns shallow copy of this instance

deepClone_internalized()

public ImageOptionsBase deepClone_internalized()

Clones this instance.

Returns: ImageOptionsBase - Returns shallow copy of this instance

dispose()

public final void dispose()

Disposes the current instance.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getBufferSizeHint()

public final int getBufferSizeHint()

Gets or sets the buffer size hint which is defined max allowed size for all internal buffers.

Value: The buffer size hint, in megabytes. Non-positive value means no memory limitation for internal buffers

Returns: int

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getCorePdfOptions_internalized()

public PdfOptionsCore getCorePdfOptions_internalized()

Gets the core PDF options.

Returns: com.aspose.foundation.rendering.pdf.PdfOptionsCore

getDefaultReplacementFont()

public String getDefaultReplacementFont()

Gets or sets the default replacement font (font that will be used to draw text when exporting to raster, if existing layer font in PSD file is not presented in system). To take proper name of default font can be used next code snippet: System.Drawing.Text.InstalledFontCollection col = new System.Drawing.Text.InstalledFontCollection(); System.Drawing.FontFamily[] families = col.Families; string defaultFontName = families[0].Name; PsdLoadOptions psdLoadOptions = new PsdLoadOptions() { DefaultReplacementFont = defaultFontName });

Value: The default replacement font.

Returns: java.lang.String

getDisposed()

public final boolean getDisposed()

Gets a value indicating whether this instance is disposed.

Returns: boolean - true if disposed; otherwise, false .

getFullFrame()

public final boolean getFullFrame()

Gets a value indicating whether [full frame].

Value: true if [full frame]; otherwise, false .

Returns: boolean - a value indicating whether [full frame].

getMultiPageOptions()

public final MultiPageOptions getMultiPageOptions()

The multipage options

Returns: MultiPageOptions

getPageSize()

public final SizeF getPageSize()

Gets the size of the page.

Value: The size of the page.

Returns: SizeF - the size of the page.

getPalette()

public IColorPalette getPalette()

Gets or sets the color palette.

Value: The color palette.

Returns: IColorPalette

getPdfCoreOptions()

public PdfCoreOptions getPdfCoreOptions()

The PDF core options

Returns: PdfCoreOptions

getPdfDocumentInfo()

public PdfDocumentInfo getPdfDocumentInfo()

Gets or sets metadata for document.

Returns: PdfDocumentInfo

getProgressEventHandler()

public final ProgressEventHandler getProgressEventHandler()

Gets or sets the progress event handler.

Value: The progress event handler.

Returns: ProgressEventHandler

getResolutionSettings()

public ResolutionSetting getResolutionSettings()

Gets or sets the resolution settings.

Returns: ResolutionSetting

getSource()

public final Source getSource()

Gets or sets the source to create image in.

Value: The source to create image in.

Returns: Source

getVectorRasterizationOptions()

public final VectorRasterizationOptions getVectorRasterizationOptions()

Gets or sets the vector rasterization options.

Value: The vector rasterization options.

Returns: VectorRasterizationOptions

getXmpData()

public XmpPacketWrapper getXmpData()

Gets or sets the XMP metadata container.

Value: The XMP data container.

Returns: XmpPacketWrapper

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setBufferSizeHint(int value)

public final void setBufferSizeHint(int value)

Gets or sets the buffer size hint which is defined max allowed size for all internal buffers.

Value: The buffer size hint, in megabytes. Non-positive value means no memory limitation for internal buffers

Parameters:

ParameterTypeDescription
valueint

setDefaultReplacementFont(String value)

public void setDefaultReplacementFont(String value)

Gets or sets the default replacement font (font that will be used to draw text when exporting to raster, if existing layer font in PSD file is not presented in system). To take proper name of default font can be used next code snippet: System.Drawing.Text.InstalledFontCollection col = new System.Drawing.Text.InstalledFontCollection(); System.Drawing.FontFamily[] families = col.Families; string defaultFontName = families[0].Name; PsdLoadOptions psdLoadOptions = new PsdLoadOptions() { DefaultReplacementFont = defaultFontName });

Value: The default replacement font.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setFullFrame(boolean value)

public final void setFullFrame(boolean value)

Sets a value indicating whether [full frame].

Value: true if [full frame]; otherwise, false .

Parameters:

ParameterTypeDescription
valuebooleana value indicating whether [full frame].

setIgnoreAfterCreate_internalized(boolean value)

public final void setIgnoreAfterCreate_internalized(boolean value)

Gets or sets a value indicating whether ignore after create event.

Value: true if ignore after create event; otherwise, false .

Parameters:

ParameterTypeDescription
valueboolean

setMultiPageOptions(MultiPageOptions value)

public final void setMultiPageOptions(MultiPageOptions value)

The multipage options

Parameters:

ParameterTypeDescription
valueMultiPageOptions

setPageSize(SizeF value)

public final void setPageSize(SizeF value)

Sets the size of the page.

Value: The size of the page.

Parameters:

ParameterTypeDescription
valueSizeFthe size of the page.

setPalette(IColorPalette value)

public void setPalette(IColorPalette value)

Gets or sets the color palette.

Value: The color palette.

Parameters:

ParameterTypeDescription
valueIColorPalette

setPdfCoreOptions(PdfCoreOptions value)

public void setPdfCoreOptions(PdfCoreOptions value)

The PDF core options

Parameters:

ParameterTypeDescription
valuePdfCoreOptions

setPdfDocumentInfo(PdfDocumentInfo value)

public void setPdfDocumentInfo(PdfDocumentInfo value)

Gets or sets metadata for document.

Parameters:

ParameterTypeDescription
valuePdfDocumentInfo

setProgressEventHandler(ProgressEventHandler value)

public final void setProgressEventHandler(ProgressEventHandler value)

Gets or sets the progress event handler.

Value: The progress event handler.

Parameters:

ParameterTypeDescription
valueProgressEventHandler

setResolutionSettings(ResolutionSetting value)

public void setResolutionSettings(ResolutionSetting value)

Gets or sets the resolution settings.

Parameters:

ParameterTypeDescription
valueResolutionSetting

setSource(Source value)

public final void setSource(Source value)

Gets or sets the source to create image in.

Value: The source to create image in.

Parameters:

ParameterTypeDescription
valueSource

setVectorRasterizationOptions(VectorRasterizationOptions value)

public final void setVectorRasterizationOptions(VectorRasterizationOptions value)

Gets or sets the vector rasterization options.

Value: The vector rasterization options.

Parameters:

ParameterTypeDescription
valueVectorRasterizationOptions

setXmpData(XmpPacketWrapper value)

public void setXmpData(XmpPacketWrapper value)

Gets or sets the XMP metadata container.

Value: The XMP data container.

Parameters:

ParameterTypeDescription
valueXmpPacketWrapper

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int