Sort Score
Result 10 results
Languages All
Labels All
Results 231 - 240 of 1,766 for

management

(0.05 sec)
  1. Clean metadata | Documentation

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....features and get familiar how to manage metadata and more, please refer...online document metadata management App Along with a full featured...

    docs.groupdocs.com/metadata/java/clean-metadata/
  2. Get document info | Documentation

    This article shows that how to get meta information of a document....features and get familiar how to manage watermarks and more, please...online document metadata management App Along with full featured...

    docs.groupdocs.com/metadata/net/get-document-info/
  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....Developer Guide / Advanced Usage / Managing metadata for specific formats...properties advanced_usage.managing_metadata_for_specific_formats...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Handle EXIF Data of JPEG, PNG, TIFF & WebP Imag...

    Manipulate EXIF metadata of images in Java. Extract, update, add or remove EXIF data of JPG/JPEG, PNG, WebP, or other images programmatically using Java API.... If you want to manage, extract, update, or remove...is an easy to use metadata management Java API. It has the ability...

    blog.groupdocs.com/metadata/handle-exif-data-of...
  5. Features overview | Documentation

    With GroupDocs.Viewer for Node.js you can render files to HTML, PNG, JPEG and PDF formats, list and save attachments, embedded files and compressed files, and extract document text....js provides two resources management options for CSS, fonts, images...printing restrictions; Project Management – project start and end dates...

    docs.groupdocs.com/viewer/nodejs-java/features-...
  6. Features overview | Documentation

    With GroupDocs.Viewer for Java you can render files to HTML, PNG, JPEG and PDF formats, list and save attachments, embedded files and compressed files, and extract document text....Java provides two resources management options for CSS, fonts, images...printing restrictions; Project Management – project start and end dates...

    docs.groupdocs.com/viewer/java/features-overview/
  7. Convert JPG to PDF using C#

    By closely adhering to this topic, you will gain knowledge how to convert JPG to PDF using C#. Also, we will provide you with the code to export JPG to PDF using C#....for document processing and management. Before beginning the conversion...well-equipped to efficiently manage visual content within your...

    kb.groupdocs.com/conversion/net/convert-jpg-to-...
  8. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....features and get familiar how to manage metadata and more, please refer...online document metadata management App Along with a full featured...

    docs.groupdocs.com/metadata/python-net/get-docu...
  9. 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:...Developer Guide / Advanced Usage / Managing metadata for specific formats...online document metadata management App Along with full featured...

    docs.groupdocs.com/metadata/net/extracting-comm...
  10. 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 FlvRootPackage.Header Read the FLV header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputFlv)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.Version); Console.WriteLine(root.Header.HasAudioTags); Console.WriteLine(root.Header.HasVideoTags); Console.WriteLine(root.Header.TypeFlags); } Working with XMP metadata GroupDocs....Developer Guide / Advanced Usage / Managing metadata for specific formats...GroupDocs.Metadata for .NET allows managing XMP metadata in FLV files...

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