Sort Score
Result 10 results
Languages All
Labels All
Results 4,671 - 4,680 of 8,192 for

document viewer

(0.06 sec)
  1. 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....Viewer Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/nodejs-java/synonym-s...
  2. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook in Java...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/exporting-meta...
  3. Exporting metadata properties | Documentation

    This article provides the knowledge that how to export metadata properties to an Excel workbook....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/exporting-metad...
  4. 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:...Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/extracting-comm...
  5. Search thread safety | Documentation

    This article shows that how search thread safety works....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/java/search-thread-sa...
  6. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Working with metadata in TIFF images | Document...

    Working with XMP metadata GroupDocs.Metadata for .NET allows managing XMP metadata in TIFF images. For more details please refer to the following guide: Working with XMP metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF metadata section. Working with IPTC metadata GroupDocs.Metadata for .NET is also able to work with IPTC metadata in TIFF images....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. Working with metadata in TIFF images | Document...

    Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in TIFF images. For more details please refer to the following guide: Working with XMP Metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF Metadata section. Working with IPTC metadata GroupDocs.Metadata for Java is also able to work with IPTC metadata in TIFF images....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/working-with-m...
  9. 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)....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...

    docs.groupdocs.com/search/net/numeric-range-sea...
  10. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Viewer Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/get-supported-...