Class OptimizationOptions

OptimizationOptions class

Class which describes document optimization algorithm. Instance of this class may be used as parameter of OptimizeResources() method.

public class OptimizationOptions

Constructors

NameDescription
OptimizationOptions()The default constructor.

Properties

NameDescription
AllowReusePageContent { get; set; }If true page contents will be reused when document is optimized for equal pages.
CompressObjects { get; set; }If this flag is set to true, Pdf objects will be packed into Objest Streams and compressed to reduce pdf file size.
ImageCompressionOptions { get; }Set of options which describe will images in the document be compressed and parameters of the compression.
ImageEncoding { get; set; }Image encodre which will be used.
LinkDuplcateStreams { get; set; }If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times).
MaxResoultion { get; set; }Specifies maximum resolution of images. If image has higher resolition it will be scaled
RemovePrivateInfo { get; set; }Remove private information (page piece info).
RemoveUnusedObjects { get; set; }If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document.
RemoveUnusedStreams { get; set; }If this flag set to true, every resource is checked on it’s usage. If resource is never used, then resources is removed. This may decrease document size for example when pages were extracted from document.
SubsetFonts { get; set; }Fonts will be converted into subsets if set to true.
UnembedFonts { get; set; }Make fonts not embedded if set to true.

Methods

NameDescription
static All()Creates optimization strategy will all options activated. Please note that activated only options which does not change any functionality of the document. I.e. image compressing and fonts unembedding will not enabled (and can be embedded manually).

See Also