PDF is Linearized?

With your tool I can tell if a PDF is linearized?

Hi,


Thanks for your interest in our products.

Please try using the following code snippet to determine if the source PDF is linearized or not.

[C#]

//open document<o:p></o:p>

Document pdfDocument = new Document("c:/pdftest/input.pdf");

// check if the source PDF file linearized

Console.WriteLine(“Is
Linearized -”
+pdfDocument.IsLinearized);