Click or drag to resize

PdfCrossReferenceType Enumeration

Represents how cross-reference information (information about byte positions of the indirect objects) and indirect objects are stored in the PDF file.

Namespace: SautinSoft.Pdf
Assembly: SautinSoft.Pdf (in SautinSoft.Pdf.dll) Version: 2024.8.8
Syntax
public enum PdfCrossReferenceType
Members
Member nameValueDescription
Stream0

(PDF 1.5) Cross-reference information is stored compactly in the cross-reference stream that is usually compressed and indirect objects can be stored compactly in object streams that are also usually compressed.

Use this option if file size is an issue and PDF file won't be opened by old PDF applications that do not support PDF version 1.5 such as Acrobat Reader or Adobe Acrobat before version 6.0 that support PDF version 1.5 and were released on July 2003.

Table1

Cross-reference information is stored as a list of cross-reference entries in a fixed format directly after all indirect objects and before PDF file trailer.

Use this option if file size is not an issue and you want to achieve the maximum portability of the PDF file.

See Also