Sort Score
Result 10 results
Languages All
Labels All
Results 2,461 - 2,470 of 3,565 for

document assembly

(0.03 sec)
  1. Use redaction callback | Documentation

    In order to reject specific changes during redaction process or to keep a full log of changes in the Document, you need to set Redactor.RedactionCallback property, to a class implementing IRedactionCallback interface. The interface contains only one method, AcceptRedaction, which receives detailed information about proposed redaction and returns Boolean value, accepted or not. Below, we create a callback class, dumping changes to system console: public class RedactionDump implements IRedactionCallback { public RedactionDump() { } public boolean acceptRedaction(RedactionDescription description) { System....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/use-redaction...
  2. Working with DICOM metadata | Documentation

    Reading DICOM metadata properties The GroupDocs.Metadata API supports extracting format-specific information from DICOM images. The following are the steps to read the native DICOM metadata. Load a DICOM image Get the root metadata package Extract the native metadata package using the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-d...
  3. Adjust the JPEG image quality | Documentation

    Following this guide you will learn how to adjust JPG images quality when rendering Documents with Image Viewer by GroupDocs....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/image-viewer-adju...
  4. Load password-protected file | Documentation

    Load password-protected file In order to open password-protected Documents, you have to pass your password to LoadOptions class constructor or assign it to its Password property of an instance of LoadOptions class: LoadOptions loadOptions = new LoadOptions("mypassword"); final Redactor redactor = new Redactor("protected_sample.docx", loadOptions); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); redactor.save(); } finally { redactor.close(); }...Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/load-password...
  5. Indexing metadata of documents | Documentation

    API allows creating of full-text and / or metadata index on Documents. To index only metadata without main content of Documents, you only need to set IndexType.MetadataIndex when creating an index....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/nodejs-java/indexing-...
  6. Get supported file formats | Documentation

    This page describes how the search api is used to obtain a list of supported file types....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/get-supported-fil...
  7. Use advanced logging | Documentation

    You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods: import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/use-advanced-...
  8. Load from FTP | Documentation

    This article explains how to load a Document from FTP storage with GroupDocs.Viewer within your Java applications....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/java/load-document-fr...
  9. Convert CAD formats | Documentation

    In this article, you will learn how to convert CAD Documents to other formats or another CAD format with GroupDocs.Conversion for Java....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/java/convert/cad/
  10. Optimize a PDF file for a browser | Documentation

    Optimize PDFs for faster browser display using GroupDocs.Viewer. Reduce load times and improve user experience....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/python-net/optimizati...