Sort Score
Result 10 results
Languages All
Labels All
Results 2,471 - 2,480 of 3,618 for

document classification

(0.03 sec)
  1. Synchronizing shards | Documentation

    This page contains information about synchronizing shards in the search network....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/synchronizing-sh...
  2. Numeric range search | Documentation

    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....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/numeric-range-se...
  3. 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....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-d...
  4. 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....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/use-redaction...
  5. Specify rendering options for CAD files | Docum...

    This topic describes how to use the GroupDocs.Viewer .NET API (C#) to specify various options for rendering CAD files to HTML, PDF, PNG, and JPEG....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/specify-cad-rende...
  6. 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....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/image-viewer-adju...
  7. Show Revisions | Documentation

    This article explains how to customize the display of revisions in the output Document in GroupDocs.Comparison for Node.js via Java....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/nodejs-java/show-...
  8. GroupDocs.Watermark for Node.js via Java | Docu...

    GroupDocs.Watermark for Java developer Documentation. Learn how to add watermarks using nodejs...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/nodejs-java/
  9. Extracting Common Image Information | Documenta...

    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 FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/extracting-comm...
  10. Converting JSON to a Spreadsheet | Documentation

    Learn how to convert a JSON Document as a data source to a spreadsheet using GroupDocs.Conversion for Java....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/java/convert-json...