1. I have converted Word document to PDF using Aspose.word
---CODE START---
Aspose.Words.Document doc = new Aspose.Words.Document();
outputPDF = FolderPath + @"\" + "title.pdf";
Aspose.Words.Saving.PdfSaveOptions options = new Aspose.Words.Saving.PdfSaveOptions();
options.SaveFormat = SaveFormat.Pdf;
options.BookmarksOutlineLevel = 1;
options.HeadingsOutlineLevels = 3;
doc.Save(outputPDF, options);
---CODE END---
I WANT TO ENABLE "FAST WEB VIEW" ON PDF DOCUMENT, COULD YOU PLEASE TELL ME THE PROCEDURE TO MAKE THIS.
IAM USING ASPOSE.WORDS VERSION:10.5.0.0
IAM USING ASPOSE.Pdf VERSION:4.1.0.0
Hi Praveen,
Please accept my apologies for late response.
Thanks for your query. I regret to share with you that Aspose.Words does not support the request feature at the moment.
We apologize for your inconvenience.
The issues you have found earlier (filed as ) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by MuzammilKhan
The issues you have found earlier (filed as WORDSNET-2231) have been fixed in this Aspose.Words for .NET 25.5 update also available on NuGet.
After careful evaluation, we have decided not to implement PDF linearization (“Fast Web View”) at this time due to:
- Low Demand – Minimal customer requests over 11 years (fewer than accessibility-related asks in just 1 year
- High Implementation Cost – Would require:
- Rewriting our single-pass PDF renderer to multi-pass
- Significant memory management changes Risk of performance degradation in core workflows
- Existing Workarounds – Customers can easily linearize output using:
- Standard tools (qpdf, Adobe Acrobat)
- Simple post-processing scripts