Sort Score
Result 10 results
Languages All
Labels All
Results 661 - 670 of 1,811 for

view

(0.04 sec)
  1. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/python-net/get-docu...
  2. 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:... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/net/extracting-comm...
  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.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. Set image size limits | Documentation

    This article shows how to set image size limits when rendering image to PNG or JPEG... view ( viewOptions ); } Was this...

    docs.groupdocs.com/viewer/java/set-image-size-l...
  5. Extract Text and Metadata from XLSM Online

    Free online document text and metadata extractor. Secure and easy to use XLSM text and metadata parser and extractor... From application point of view, a Macro is set of instructions...

    products.groupdocs.app/parser/xlsm
  6. 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.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/python-net/clean-me...
  7. 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 DicomRootPackage.DicomPackage Read the DICOM metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDicom)) { var root = metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // .... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/net/working-with-di...
  8. Working with interpreted values | Documentation

    This article contains a good example of numeric flag or enumeration in Node.js via Java.... You are welcome to view and edit metadata of PDF, DOC...

    docs.groupdocs.com/metadata/nodejs-java/working...
  9. Compare OneNote document using GroupDocs.Compar...

    GroupDocs team is glad to announce another monthly release of Document Comparison for .NET API v17.8.0 with some new features like adding support for OneNote document comparison and comparison of header and footer for cells file format and also adding support for pivot tables in cells. This monthly release is also including improvements like HyperLinks on Shape in slides file format along with fixes. Major Changes are done for OneNote, Cells and Slides document formats.... view the website...

    blog.groupdocs.com/comparison/groupdocs.compari...
  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.... You are welcome to view and edit metadata of PDF, DOC...

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