Sort Score
Result 10 results
Languages All
Labels All
Results 71 - 80 of 29,922 for

groupdocs metadata

(0.24 sec)
  1. Set document metadata on save | Documentation

    Follow this guide and learn how to set document Metadata when saving output document after files comparison within your .NET applications....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/comparison/net/set-document-...
  2. 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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/working-with-d...
  3. eSign PDF with Metadata signature | Documentation

    This article explains how to add Metadata signatures to PDF document meta info layer with Groupdocs.Signature...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/signature/net/esign-pdf-with...
  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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/net/extract-metadata-...
  5. Working with metadata in Diagrams | Documentation

    Groupdocs.Metadata for Java provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, etc. For the full list of supported document formats please refer to Supported document formats. Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded diagram and extract some additional file format information. Load a PDF document Extract the root Metadata package Use the getDiagramType method to obtain file format information advanced_usage....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Working with metadata in Diagrams | Documentation

    Groupdocs.Metadata for .NET provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, etc...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. exif metadata on GroupDocs Blog | Document Auto...

    exif Metadata on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in exif Metadata on Groupdocs Blog | Document Automation Solutions for .NET & Java Develope......exif metadata on GroupDocs Blog | Document Automation Solutions...Recent content in exif metadata on GroupDocs Blog | Document Automation...

    blog.groupdocs.com/ar/tag/exif-metadata/index.xml
  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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/working-with-i...
  9. Working with BMP metadata | Documentation

    Reading BMP header properties The Groupdocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root Metadata package Extract the native Metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_Metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata Metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/working-with-b...
  10. Working with BMP metadata | Documentation

    Reading BMP header properties The Groupdocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root Metadata package Extract the native Metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata Metadata = new Metadata(Constants.InputBmp)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

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