Sort Score
Result 10 results
Languages All
Labels All
Results 111 - 120 of 54,836 for

metadata

(0.11 sec)
  1. Working with EXIF metadata | Documentation

    This article explains how to access EXIF Metadata in a file of any supported format....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-ex...
  2. Working with XMP metadata | Documentation

    This article shows how to access XMP Metadata in a file of any supported format....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/working...
  3. Metadata Scrubbing - Online and Programmatic Ap...

    Discover the online and programmatic way to remove or clean the Metadata properties of documents and images....discussed how we can edit metadata properties of different file...don’t need the metadata or selective metadata properties within...

    blog.groupdocs.com/metadata/metadata-scrubber/
  4. Extract metadata from documents | Documentation

    This article shows how to extract Metadata with GroupDocs.Parser from documents of various formats: PDF, Emails, Ebooks, Microsoft Office: Word (DOC, DOCX), PowerPoint (PPT, PPTX), Excel (XLS, XLSX), LibreOffice formats and many others....Metadata Product Solution GroupDocs.../ Extract metadata from documents Extract metadata from documents...

    docs.groupdocs.com/parser/net/extract-metadata-...
  5. 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.CadPackage property. The following code snippet reads Metadata associated with a CAD file. AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties using (Metadata Metadata = new Metadata(Constants.InputDxf)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-ca...
  6. Working with metadata in Presentations | Docume...

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of presentations such as PPT, PPTX, POTM, POTX, etc. For the full list of supported presentation formats please refer to Supported Document Formats. Detecting the exact type of a presentation The following sample of code will help you to detect the exact type of a loaded presentation and extract some additional file format information. Load a presentation Extract the root Metadata package Use the FileType property to obtain file format information AdvancedUsage....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. 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()); // ....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-c...
  8. Working with IPTC IIM metadata | Documentation

    This article explains how to access IPTC Metadata in a file of any supported format, GroupDocs.Metadata for Java provides the IIptc.getIptcPackage method....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-i...
  9. 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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-d...
  10. Working with IPTC IIM metadata | Documentation

    This article explains how to access IPTC Metadata in a file of any supported format, GroupDocs.Metadata for Node.js via Java provides the IIptc.getIptcPackage method....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

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