PngSaveOptions

PngSaveOptions class

Png Save options for image documents.

public sealed class PngSaveOptions : ImageSaveOptions

Constructors

Name Description
PngSaveOptions() Creates PngSaveOptions with default values.

Properties

Name Description
AddMissingExtenstion { get; set; } Gets or sets flag to automatically add extension when it was missing in output file path Default value is false.
BitDepth { get; set; } The bit depth.
ColorType { get; set; } Gets or sets the type of the PngColorType.
CompressionLevel { get; set; } The png image compression level in the 0-9 range, where 9 is maximum compression and 0 is store mode.
FileFormat { get; set; } Gets or sets file format of signed document.
FilterType { get; set; } Gets or sets the filter type PngFilterType used during png file save process.
OverwriteExistingFiles { get; set; } Gets or sets whether to overwrite existing file with new output file. Otherwise new file will be created with number as suffix. By default this value set to true that means file will be overwritten.
Password { get; set; } Gets or sets password to save signed document with password protection. This property is not supported for Image documents.
Progressive { get; set; } Gets or sets a value indicating whether this PngSaveOptions is progressive.
UseOriginalPassword { get; set; } Gets or sets whether to use password from LoadOptions to save signed document as protected. Default value is true. This property is not supported for Image documents.

See Also