VintaSoft PDF .NET Plug-in Discussions
Questions, comments and suggestions concerning VintaSoft PDF .NET Plug-in.
Board index < VintaSoft Imaging < VintaSoft PDF .NET Plug-in Discussions
Is there a way to know if a PDF file is Linearized (Fast Web View) ?You can check that PDF document is linearized using the following code:
public static bool HasLinearizationInfo(Vintasoft.Imaging.Pdf.PdfDocument document)
{
bool result;
if (Vintasoft.Imaging.Pdf.Processing.Analyzers.PdfAnalyzers.PdfFileHasLinearizationInfo.TryAnalyze(document, out result))
return result;
return false;
}
And also is it possible to save a PDF file as Linearized ?Current version does not allow to create linearized PDF documents. We plan to add this feature in future. Unfortunately, I cannot give you the exact date.