Sort Score
Result 10 results
Languages All
Labels All
Results 5,221 - 5,230 of 9,483 for

document signature

(0.15 sec)
  1. Synonym search | GroupDocs

    This article shows that how synonym search allows you to find not only the words specified in the search query, but also the synonyms, words that means the same....Signature Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/nodejs-java/synonym-s...
  2. Use redaction callback | GroupDocs

    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....Signature Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/use-redaction...
  3. Working with DICOM metadata | GroupDocs

    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....Signature Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-d...
  4. Optimize output for printing | GroupDocs

    This article explains how to optimize output HTML for printing....Signature Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/how-to-optimize-o...
  5. Merge XLSX files using Java

    Discover the process of how to merge XLSX files using Java. Enhance Document management efficiency by learning how to combine XLSX files in Java programming....Signature Product Family GroupDocs.Metadata...configuring the recommended document library and adjusting file...

    kb.groupdocs.com/merger/java/merge-xlsx-files-u...
  6. Working with metadata in MOV Files | GroupDocs

    Reading MOV format-specific properties The GroupDocs.Metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/Documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps to extract QuickTime atoms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using MovRootPackage.MovPackage Read the QuickTime atoms AdvancedUsage....Signature Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Getting known property descriptors | GroupDocs

    Extract information about known properties available in a particular package using GroupDocs.Metadata for Python via .NET....Signature Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/python-net/getting-...
  8. Numeric range search | GroupDocs

    This article gives the knowledge about numeric range search which allows you to search in Documents any integer numbers in the range from 0 to 9223372036854775807 (Int64.MaxValue) using Java search API....Signature Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/numeric-range-se...
  9. Extracting common image information | GroupDocs

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Signature Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/extracting-com...
  10. Clear watermarks | GroupDocs

    Search and remove existing text or image watermarks using Python via .NET....Signature Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/python-net/basic-u...