Sort Score
Result 10 results
Languages All
Labels All
Results 3,911 - 3,920 of 7,326 for

document annotation

(0.11 sec)
  1. 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....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

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

    docs.groupdocs.com/redaction/java/use-redaction...
  3. GroupDocs.Watermark for Node.js via Java | Docu...

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

    docs.groupdocs.com/watermark/nodejs-java/
  4. 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....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...

    docs.groupdocs.com/viewer/net/image-viewer-adju...
  5. 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....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/numeric-range-se...
  6. Synonym search | Documentation

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

    docs.groupdocs.com/search/net/synonym-search/
  7. Using aliases | Documentation

    This article shows the use of aliases which allows you to reduce the length of search queries in text form....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/using-aliases/
  8. Homophone search | Documentation

    This article gives the knowledge which allows you to find not only the words specified in the search query, but also the homophones, words that are pronounced the same but differ in meaning....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/homophone-search/
  9. Image search options | Documentation

    This article describes the image search options that can be specified in an instance of the ImageSearchOptions class....Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/image-search-opti...
  10. 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:...Annotation Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/extracting-comm...