This topic describes how to use the GroupDocs.Viewer .NET API (C#) to convert email messages to HTML, Pdf, PNG, and JPEG formats....Conversion Product Solution GroupDocs...Render email messages as HTML, PDF, PNG, and JPEG files Leave feedback...
This topic describes how to use the GroupDocs.Viewer .NET API (C#) to convert images to HTML, Pdf, PNG, and JPEG formats....Conversion Product Solution GroupDocs...images Render images as HTML, PDF, PNG, and JPEG files Leave feedback...
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(); }...Conversion Product Solution GroupDocs...Save in rasterized PDF Save in rasterized PDF Leave feedback The...
This topic describes how to optimize Pdf file using the GroupDocs.Viewer .NET API (C#) to reduce size....Conversion Product Solution GroupDocs...to PDF / Optimize the output PDF file / Optimize the PDF file...
Select specific pages for rasterized Pdf Saving document as a rasterized Pdf, you can specify starting page index (zero based) and the number of pages from this index to save. Also, you can change the Compliance level from Pdf/A-1b, which is used by default, to Pdf/A-1a:
final Redactor redactor = new Redactor("MultipageSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options....Conversion Product Solution GroupDocs...rasterized PDF Select specific pages for rasterized PDF Leave feedback...
Removing watermark from a particular page of Pdf document using C#....Conversion Product Solution GroupDocs...watermarks / To PDF documents / Existing objects in PDF document Existing...
This article shows how to redact the pages of a document as images, redacting entire areas of the page instead or in addition to a specific text....Conversion Product Solution GroupDocs...usage / Create PDF with Image Redaction Create PDF with Image Redaction...
This topic describes how to use the GroupDocs.Viewer .NET API (C#) to convert Word documents to HTML, Pdf, PNG, and JPEG formats....Conversion Product Solution GroupDocs...Render Word documents as HTML, PDF, and image files Leave feedback...
This article shows how to redact the pages of a document as images, redacting entire areas of the page instead or in addition to a specific text....Conversion Product Solution GroupDocs...Usage / Create PDF with Image Redaction Create PDF with Image Redaction...
This article shows how to extract data from Pdf forms easily with GroupDocs.Parser....Conversion Product Solution GroupDocs...Extract data from PDF forms Extract data from PDF forms Leave feedback...