Sort Score
Result 10 results
Languages All
Labels All
Results 2,641 - 2,650 of 3,654 for

document classification

(0.03 sec)
  1. Text file encoding detection | Documentation

    This article explains that how to detect encoding of a text file automatically in Java....Classification Product Solution Purchase...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/nodejs-java/text-file...
  2. Merge TEX | Documentation

    Learn how to merge TEX files, combine TEX files into one file programmatically in C# language using GroupDocs.Merger for .NET library....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...

    docs.groupdocs.com/merger/net/merge/tex/
  3. Queries in text and object form | Documentation

    This article gives the knowledge about two ways to create a search query: in text or object form using Java search API....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/queries-in-text-...
  4. Working with metadata in PNG images | Documenta...

    Reading PNG metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG metadata. Load a PNG image Get the root metadata package Extract the native metadata package using PngRootPackage.PngPackage Read the PNG metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Png.PngReadTextChunks using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var compressedChunk = chunk as PngCompressedTextChunk; if (compressedChunk !...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  5. Search text in EPUB eBooks | Documentation

    To search a keyword in EPUB e-books Search(String) method is used. This method returns the collection of SearchResult objects....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/search-text-in-ep...
  6. 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 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:...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/extracting-com...
  7. Search text in Microsoft OneNote sections | Doc...

    This article explains that how to search text from Microsoft OneNote sections presentations...Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Parser Product...

    docs.groupdocs.com/parser/net/search-text-in-mi...
  8. Merge indexes | Documentation

    The merge operation is designed to combine two or more indexes into one index to accelerate the search and to simplify the work with indexes. When merging, only the index at which the merge method was called is changed. This index as a result of the operation contains all the Documents that were contained in all indexes together. The second index or index repository after the merge can be deleted to free up disk space....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/merge-indexes/
  9. Working with XMP metadata | Documentation

    This article shows how to access XMP metadata in a file of any supported format....Classification Product Solution Purchase...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/nodejs-java/working...
  10. Indexing reports | Documentation

    Indexing reports are created for indexing and updating operations. Indexing reports can be retrieved from the index using the getIndexingReports method. Reports are stored in the index only while the index is loaded into RAM for use. If you reload the index, the reports will not be restored. You can configure the maximum number of stored reports using the setMaxIndexingReportCount method of the IndexSettings class. The default value is 5. Learn more about index settings on the page Search index settings....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/indexing-reports/