Sort Score
Result 10 results
Languages All
Labels All
Results 2,731 - 2,740 of 4,939 for

library

(0.08 sec)
  1. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....Along with full featured Java library we provide simple, but powerful...

    docs.groupdocs.com/metadata/java/working-with-c...
  2. SearchQuery - GroupDocs.Search for Java - API R...

    All Classes Packages com.groupdocs.search com.groupdocs.search.common com.groupdocs.search.dictionaries com.groupdocs......provides common classes of the library. Uses of SearchQuery in com...

    apireference.groupdocs.com/search/java/com.grou...
  3. SearchQuery - GroupDocs.Search for Java - API R...

    All Classes Packages com.groupdocs.search com.groupdocs.search.common com.groupdocs.search.dictionaries com.groupdocs......provides common classes of the library. Uses of SearchQuery in com...

    apireference.groupdocs.com/search/java/com.grou...
  4. GitHub - groupdocs-metadata/GroupDocs.Metadata-...

    GroupDocs.Metadata for Java examples, plugins and showcase projects - groupdocs-metadata/GroupDocs.Metadata-for-Java...navigation Document Metadata Library for Java GroupDocs.Metadata...

    github.com/groupdocs-metadata/GroupDocs.Metadat...
  5. GitHub - groupdocs-metadata/GroupDocs.Metadata-...

    GroupDocs.Metadata for Java examples, plugins and showcase projects - groupdocs-metadata/GroupDocs.Metadata-for-Java...navigation Document Metadata Library for Java GroupDocs.Metadata...

    github.com/groupdocs-metadata/GroupDocs.Metadat...
  6. Working with ZIP archives | Documentation

    Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed to be followed: Load a ZIP archive Get the root metadata package Extract the native metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get metadata from a ZIP archive. advanced_usage.managing_metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Along with full featured Java library we provide simple, but powerful...

    docs.groupdocs.com/metadata/java/working-with-z...
  7. Signing archive documents in batch | Documentation

    This article shows how to sign documents in batch mode within the archive files with one or multiple electronic signatures...NET library, we provide simple but powerful...

    docs.groupdocs.com/signature/net/signing-archiv...
  8. Search index repository | Documentation

    The IndexRepository class can be used to combine several indexes into a group for searching all indexes at once....NET library we provide simple, but powerful...

    docs.groupdocs.com/search/net/search-index-repo...
  9. 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....NET library we provide simple, but powerful...

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

    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....NET library we provide simple, but powerful...

    docs.groupdocs.com/metadata/net/working-with-me...