Sort Score
Result 10 results
Languages All
Labels All
Results 3,081 - 3,090 of 4,126 for

document classification

(0.18 sec)
  1. Working with formats | GroupDocs

    This article explains Document formats and format families supported by GroupDocs.Editor for .NET and how to operate them in .NET code....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...

    docs.groupdocs.com/editor/net/working-with-form...
  2. Search for embedded object with custom encrypti...

     This article explains how to search for embedded electronic signatures with custom encryption in Document metadata. This topic contains example of custom encryption, class definition and search for encrypted objects in the Document metadata with GroupDocs.Signature....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...

    docs.groupdocs.com/signature/java/search-for-em...
  3. Work with Word Track Changes | GroupDocs

    Learn how to compare Word Documents while respecting Track Changes using GroupDocs.Comparison for Python via .NET....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...

    docs.groupdocs.com/comparison/python-net/word-t...
  4. Licensing | GroupDocs

    Free conversion API version for Node.js developers is available to evaluate the API which will be similar to licensed version but with few limitations....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/nodejs-java/licen...
  5. Getting known property descriptors | GroupDocs

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/getting-known-...
  6. Working with metadata in GIF images | GroupDocs

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); 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); } Working with XMP Metadata GroupDocs....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Convert XML to PDF Using XSL-FO | GroupDocs

    Learn how to convert a XML Document to PDF using XSL-FO with GroupDocs.Conversion for .NET....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/net/convert-xml-t...
  8. Install GroupDocs.Markdown for Python via .NET ...

    How to install and run GroupDocs.Markdown for Python via .NET on Linux, macOS, and in Docker containers....Classification Product Solution Purchase...Events Acquisition GroupDocs Documentation / GroupDocs.Markdown / GroupDocs...

    docs.groupdocs.com/markdown/python-net/installa...
  9. Working with metadata in PSD images | GroupDocs

    Reading Photoshop Metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop metadata associated with a PSD image. For more information on the Photoshop file format and metadata blocks please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/. The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop file format) from a PSD image. Load a PSD file Get the root metadata package Extract the ImageResourcePackage instance and obtain a list of ImageResourceBlock objects Iterate trough the collection of resource blocks AdvancedUsage....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

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

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iClassification Product Solution Purchase...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/getting...