Sort Score
Result 10 results
Languages All
Labels All
Results 3,061 - 3,070 of 5,344 for

document editor

(1.3 sec)
  1. Clean metadata | GroupDocs

    Sometimes you just need to remove all metadata properties without applying any filters. The best way to do this is the sanitize method of GroupDocs.Metadata for Python via .NET....Editor Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/python-net/clean-me...
  2. Specify the JPEG image quality | GroupDocs

    Adjust JPEG images quality when rendering Documents to PDF with GroupDocs.Viewer for .NET...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/adjust-jpeg-image...
  3. Use Cases | GroupDocs

    Explore real-world use cases for GroupDocs.Metadata for .NET, such as extracting metadata from PDFs and detecting PDF/A conformance....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/use-cases/
  4. Save in rasterized PDF | GroupDocs

    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(); }...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-in-raste...
  5. Reorder pages | GroupDocs

    Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/reorder-pages/
  6. Working with JSON Data Sources | GroupDocs

    Note This feature is only compatible with GroupDocs.Assembly for Java 19.11 or later releases. Simplified working with JSON data sources To access JSON data while building a report, you can pass a JsonDataSource instance to the engine as a data source. Using of JsonDataSource enables you to work with typed values of JSON elements in template Documents. For more convenience, the set of simple JSON types is extended as follows:...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/java/working-with-j...
  7. Evaluation Limitations and Licensing | GroupDocs

    free trial api version for redaction is available to evaluate the API which will be similar as licensed but with few limitations....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/evaluation-li...
  8. Save overwriting original file | GroupDocs

    The following example demonstrates how to save the redacted Document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.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.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the Document in original format overwriting original file redactor.save(options); } } finally { redactor....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...
  9. Cache results | GroupDocs

    This article contains caching use-cases with GroupDocs.Viewer within your Java applications....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/caching-results/
  10. Logging | GroupDocs

    An interface is used to receive the information about errors, warnings and events which occur while data extraction....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/java/logging/