Sort Score
Result 10 results
Languages All
Labels All
Results 5,581 - 5,590 of 32,513 for

groupdocs.metadata

(0.09 sec)
  1. How to find comments and remove tracking change...

    Hi, I have a test file (docx) and I’m trying to test the library a little for a future implementation of Metadata cleaning for our products. The basic elements as Author and CreatioDate are fairly easy to clean. However…... GroupDocs.Metadata Product Family find-metadata...for using GroupDocs.Metadata for .NET GroupDocs.Metadata is a totally...

    forum.groupdocs.com/t/how-to-find-comments-and-...
  2. Working with metadata in Matroska (MKV) files |...

    Reading matroska format-specific properties The Groupdocs.metadata API supports extracting format-specific information from MKV files. The following are the steps to read native MKV metadata. Load an MKV video Get the root metadata package Extract the native metadata package using MatroskaRootPackage.MatroskaPackage Read the Matroska metadata properties on different levels of the format structure AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Matroska.MatroskaReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputMkv)) { var root = metadata.GetRootPackage(); // Read the EBML header Console....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. Video | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/video/
  4. Video | Documentation

    Learn about managing metadata for Video formats....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/video/
  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.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()); // ....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-c...
  6. Working with EXIF metadata | Documentation

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

    docs.groupdocs.com/metadata/net/working-with-ex...
  7. 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:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/extracting-comm...
  8. Remove metadata properties | Documentation

    The easiest way to remove metadata properties from a file is to use corresponding tags that allow you to locate the desired properties across all metadata packages....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/nodejs-java/remove-...
  9. Using Your License - Purchase - groupdocs.com

    Information showing how to use your license file after download....NET GroupDocs.Metadata for .NET GroupDocs.Search...GroupDocs.Assembly for Java GroupDocs.Metadata for Java GroupDocs.Search...

    purchase.groupdocs.com/policies/use-license/
  10. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the getGifImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with XMP Metadata GroupDocs....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-m...