PngOptions Class

Summary: The png file format create options.

Module: aspose.psd.imageoptions

Full Name: aspose.psd.imageoptions.PngOptions

Inheritance: ImageOptionsBase

Aspose.PSD Version: 24.4.0

Constructors

NameDescription
PngOptions()Initializes a new instance of the PngOptions class.
PngOptions(png_options)Initializes a new instance of the PngOptions class.

Properties

NameTypeAccessDescription
DEFAULT_COMPRESSION_LEVEL [static]intrThe default compression level.
bit_depthbyter/wThe bit depth.
buffer_size_hintintr/wGets or sets the buffer size hint which is defined max allowed size for all internal buffers.
color_typePngColorTyper/wGets or sets the type of the color.
compression_levelintr/wThe png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode.
default_replacement_fontstringr/wGets 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 });
disposedboolrGets a value indicating whether this instance is disposed.
filter_typePngFilterTyper/wGets or sets the filter type used during png file save process.
full_frameboolr/wGets or sets a value indicating whether [full frame].
multi_page_optionsMultiPageOptionsr/wThe multipage options
paletteIColorPaletter/wGets or sets the color palette.
progressiveboolr/wGets or sets a value indicating whether this PngOptions is progressive.
resolution_settingsResolutionSettingr/wGets or sets the resolution settings.
sourceSourcer/wGets or sets the source to create image in.
vector_rasterization_optionsVectorRasterizationOptionsr/wGets or sets the vector rasterization options.
xmp_dataXmpPacketWrapperr/wGets or sets the XMP metadata container.

Methods

NameDescription
clone()Clones this instance.

Constructor: PngOptions()

 PngOptions() 

Initializes a new instance of the PngOptions class.

Constructor: PngOptions(png_options)

 PngOptions(png_options) 

Initializes a new instance of the PngOptions class.

Parameters:

ParameterTypeDescription
png_optionsPngOptionsThe PNG options.

Method: clone()

 clone() 

Clones this instance.

Returns

TypeDescription
ImageOptionsBaseReturns shallow copy of this instance