This guide demonstrates how to edit content of the Markdown documents/files like a common text documents using a GroupDocs.Editor for Java....and it uses (references) two raster images image1.png and image2...
This topic describes how to use the GroupDocs.Viewer .NET API (C#) to specify various options for rendering CAD files to HTML, PDF, PNG, and JPEG....output HTML or image (vector or raster) also may be too heavy. Starting...
This guide demonstrates how to edit content of the Markdown documents/files like a common text documents using a GroupDocs.Editor for .NET....and it uses (references) two raster images image1.png and image2...
This guide demonstrates how to edit the content of Markdown documents/files like common text documents using GroupDocs.Editor for Node.js via Java....and it uses (references) two raster images image1.png and image2...
This guide demonstrates how to edit content of PDF files like a common text documents using a GroupDocs.Editor for .NET....PDF format is much closer to raster or vector images like JPEG...
This article demonstrates that how to save the document as a Rasterized PDF file...documents / Save in rasterized PDF Save in rasterized PDF Leave feedback...to save the document as a rasterized PDF file: C# using ( Redactor...
This article shows how to pre-Rasterize a document using the redaction API....Loading documents / Pre-rasterize Pre-rasterize Leave feedback In some...cases, you might need to pre-rasterize the document before opening...
This article shows how to pre-Rasterize a document using the redaction API....Loading documents / Pre-rasterize Pre-rasterize Leave feedback In some...cases, you might need to pre-rasterize the document before opening...
The following example demonstrates how to save the document as a Rasterized PDF file:
final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as Rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...documents / Save in rasterized PDF Save in rasterized PDF Leave feedback...to save the document as a rasterized PDF file: final Redactor...
Use advanced Rasterization options In order to use the advanced Rasterization options you have to pass one of the options to Save method. In this case the document will be Rasterized to PDF, but the scan-like effects will be applied to its pages.
The following example demonstrates how to apply the AdvancedRasterizationOptions with default settings.
C#
using (Redactor redactor = new Redactor(@"sample.docx")) { // Save the document with advanced options (convert pages into images, and save PDF with scan-like pages) var so = new SaveOptions(); so....advanced rasterization options Use advanced rasterization options...Leave feedback Use advanced rasterization options In order to use...