Sort Score
Result 10 results
Languages All
Labels All
Results 2,381 - 2,390 of 3,646 for

document classification

(0.18 sec)
  1. Getting Started | Documentation

    This section decsribes how to get started with GroupDocs.Editor for Java library...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...

    docs.groupdocs.com/editor/java/getting-started/
  2. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } 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/java/working-with-b...
  3. Launch in operating systems other than windows ...

    Limitations Because of the lack of Windows fonts in target OS (Android, macOS, Linux, etc), fonts used in Documents are substituted with available fonts, this might lead to inaccurate Document layout when rendering the Document to PNG, JPG, and PDF. If GroupDocs.Watermark for .NET Standard is intended to be used in a Linux environment, an additional NuGet package should be referenced to make it work correctly with graphics: SkiaSharp.NativeAssets.Linux for Ubuntu (it also should work on most Debian-based Linux distributions) or Goelze....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/net/launch-in-oper...
  4. 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...
  5. 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...
  6. Export annotations | Documentation

    The page describes how to export annotation using GroupDocs.Annotation for .NET API....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Annotation Product...

    docs.groupdocs.com/annotation/net/export-annota...
  7. 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...
  8. Previewing | Documentation

     This section contains examples with advanced Document preview, pages generation with or without existing electronic signatures by GroupDocs.Signature API....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/previewing/
  9. Searching and modifying watermarks | Documentation

    GroupDocs.Watermark API allows you to search the possible watermarks placed in any Document. You can also search the watermarks that are added using some third-party tool. The found possible watermarks can be removed or their properties can be changed. For more details please refer to the following guides:...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Watermark Product...

    docs.groupdocs.com/watermark/java/searching-and...
  10. Loading of template documents from HTML with re...

    Note This feature is supported by version 19.5. or greater Note The code uses some of the objects defined in The Business Layer. Loading of template Documents from HTML with resources GroupDocs.Assembly provides a great feature which is loading of HTML template Documents referencing external resource files to be assembled and saved to non-HTML formats. Since version 19.5, when loading an HTML Document from a file, its containing folder is used as a base URI to resolve external resource files’ relative URIs to absolute ones by default as shown in the following example....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...

    docs.groupdocs.com/assembly/java/loading-of-tem...