Sort Score
Result 10 results
Languages All
Labels All
Results 61 - 70 of 80 for

advanced raster redaction

(0.02 sec)
  1. Features Overview | Documentation

    Learn how to add, search, and remove watermarks from documents and images using GroupDocs.Watermark for Java. Supports text, image, and invisible watermarks for document security....Redaction Product Solution GroupDocs...hyperlinks, and background images Rasterize PDF pages and preview document...

    docs.groupdocs.com/watermark/java/features-over...
  2. Loading documents | Documentation

    GroupDocs.Redaction allows you to load password-protected documents and load documents from different sources. For more details please refer to the following guides:...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/loading-docum...
  3. Loading documents | Documentation

    This article show how to enable you to load password-protected documents and load documents from different sources...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for .NET...

    docs.groupdocs.com/redaction/net/loading-docume...
  4. Saving documents | Documentation

    The articles explain that how to save documents in different ways after making Redactions....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Python...

    docs.groupdocs.com/redaction/python-net/saving-...
  5. Saving documents | Documentation

    The articles explain that how to save documents in different ways after making Redactions....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for .NET...

    docs.groupdocs.com/redaction/net/saving-documents/
  6. Saving documents | Documentation

    Saving a document, GroupDocs.Redaction puts it in the same folder as the original file, renaming or rewriting original. If you need to save the document to any custom location, you’ll have to open a Stream to this location. As a save option by default, GroupDocs.Redaction converts all pages (slides, worksheets) in a document into images and puts them in a single PDF file, so you can share the redacted document without any additional conversions....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/saving-docume...
  7. Loading documents | Documentation

    This article show how to enable you to load password-protected documents and load documents from different sources...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Python...

    docs.groupdocs.com/redaction/python-net/loading...
  8. Save in rasterized PDF | Documentation

    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(); }...Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/save-in-raste...
  9. Select specific pages for rasterized PDF | Docu...

    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....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/select-specif...
  10. Pre-rasterize | Documentation

    This article shows how to pre-Rasterize a document using the Redaction API....Redaction Product Solution GroupDocs...GroupDocs.Redaction Product Family / GroupDocs.Redaction for Java...

    docs.groupdocs.com/redaction/java/pre-rasterize/