Sort Score
Result 10 results
Languages All
Labels All
Results 181 - 190 of 29,922 for

groupdocs metadata

(0.08 sec)
  1. 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 !...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. Remove Metadata in CSharp on GroupDocs Blog | D...

    Remove Metadata in CSharp on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Remove Metadata in CSharp on Groupdocs Blog | Document Automation Solutions ......Remove Metadata in CSharp on GroupDocs Blog | Document Automation...content in Remove Metadata in CSharp on GroupDocs Blog | Document...

    blog.groupdocs.com/zh/tag/remove-metadata-in-cs...
  3. 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....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root Metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_Metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata Metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in Metadata properties To access built-in Metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root Metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata Metadata = new Metadata(Constants.InputPdf)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in Metadata properties To access built-in Metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Search for built-in Metadata signatures | Docum...

     This article explains how to provide advanced search for Metadata electronic signatures with Groupdocs.Signature API....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/signature/java/search-for-bu...
  7. remove metadata using csharp on GroupDocs Blog ...

    remove Metadata using csharp on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in remove Metadata using csharp on Groupdocs Blog | Document Automation Solu......remove metadata using csharp on GroupDocs Blog | Document Automation...content in remove metadata using csharp on GroupDocs Blog | Document...

    blog.groupdocs.com/zh-hant/tag/remove-metadata-...
  8. metadata cleaner using csharp on GroupDocs Blog...

    Metadata cleaner using csharp on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Metadata cleaner using csharp on Groupdocs Blog | Document Automation So......metadata cleaner using csharp on GroupDocs Blog | Document Automation...content in metadata cleaner using csharp on GroupDocs Blog | Document...

    blog.groupdocs.com/zh-hant/tag/metadata-cleaner...
  9. metadata cleaner using csharp on GroupDocs Blog...

    Metadata cleaner using csharp on Groupdocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Metadata cleaner using csharp on Groupdocs Blog | Document Automation So......metadata cleaner using csharp on GroupDocs Blog | Document Automation...content in metadata cleaner using csharp on GroupDocs Blog | Document...

    blog.groupdocs.com/ja/tag/metadata-cleaner-usin...
  10. Working with metadata in EPUB E-Books | Documen...

    What is EPUB? EPUB is an e-book file format that uses the “.epub” file extension. EPUB is supported by many e-readers, and compatible software is available for most smartphones, tablets, and computers. Note Please find more information on the format at https://en.wikipedia.org/wiki/EPUB Reading EPUB format-specific properties The Groupdocs.Metadata API supports extracting format-specific information from EPUB files. The following are the steps to read native EPUB Metadata. Load an EPUB file Get the root Metadata package Extract the native Metadata package using EpubRootPackage....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

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