[]
Defines how to process existing PDF streams in a loaded document.
public enum PdfStreamHandling
Public Enum PdfStreamHandling
Name | Description |
---|---|
Copy | Copy the content of the original stream to the output as is without any changes. Note that CompressionLevel will not affect any existing streams in this case, and will only be used for saving streams that were added after loading the document. |
MinimizeSize | Copy the existing streams as-is (see Copy), or re-compress them (see UseCompressionLevel), achieving the smallest possible size. |
UseCompressionLevel | Decompress existing PDF streams and re-compress them using CompressionLevel. |