PdfSaveOptionsAdditionalTextPositioning Property |
Namespace: Aspose.Words.Saving
If true, additional text positioning operators are written to the output PDF. This may help to overcome issues with inaccurate text positioning with some printers. The downside is the increased PDF document size.
The default value is false.
Document doc = new Document(MyDir + "Paragraphs.docx"); PdfSaveOptions saveOptions = new PdfSaveOptions(); // This may help to overcome issues with inaccurate text positioning with some printers, even if the PDF looks fine, // but the file size will increase due to higher text positioning precision used saveOptions.AdditionalTextPositioning = true; saveOptions.TextCompression = PdfTextCompression.None; doc.Save(ArtifactsDir + "PdfSaveOptions.AdditionalTextPositioning.pdf", saveOptions);