Sort Score
Result 10 results
Languages All
Labels All
Results 1,331 - 1,340 of 3,355 for

extract

(0.03 sec)
  1. 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....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....sample demonstrates how to extract basic format information from...

    docs.groupdocs.com/metadata/python-net/get-docu...
  3. Load from a local disk | Documentation

    The following example demonstrates how to load file from local disk....Metadata ( inputPath )) { // Extract, edit or remove metadata here...

    docs.groupdocs.com/metadata/net/load-from-a-loc...
  4. Load from a local disk | Documentation

    The following example demonstrates how to load a file from a local disk. advanced_usage.loading_files.LoadFromLocalDisk // Constants.InputOne is an absolute or relative path to your document. Ex: @"C:\Docs\source.one" try (Metadata metadata = new Metadata(Constants.InputOne)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for .NET examples GroupDocs.Metadata for Java examples... InputOne )) { // Extract, edit or remove metadata here...

    docs.groupdocs.com/metadata/java/load-from-a-lo...
  5. Getting Document Information | Documentation

    This article explains how to detect the document file type and calculate the number of pages when converting a file with GroupDocs.Conversion for Java....provides a consistent way to extract metadata from source documents...additional metadata can be extracted. Below are examples of how...

    docs.groupdocs.com/conversion/java/get-document...
  6. 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 getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Images / Extracting common image information Extracting common...GroupDocs.Metadata API allows extracting common image properties such...

    docs.groupdocs.com/metadata/java/extracting-com...
  7. Extracting metadata | Documentation

    Using the GroupDocs.Metadata search engine you can Extract desired metadata properties from files of different types. You don’t need to worry about the exact file format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported files in various metadata packages. All tags defined in GroupDocs....Advanced Usage / Extracting metadata Extracting metadata Leave...Metadata search engine you can extract desired metadata properties...

    docs.groupdocs.com/metadata/python-net/extracti...
  8. How to Run Examples | Documentation

    We offer multiple solutions on how you can run GroupDocs.Editor examples, by building your own or using our back-end or front-end Java examples out-of-the-box....file, extract the folders on your local disk. The extracted files...

    docs.groupdocs.com/editor/java/how-to-run-examp...
  9. How to Run Examples | Documentation

    Download from GitHub The complete examples package of GroupDocs.Parser is hosted on GitHub. You can either download the ZIP file from here or clone the repository of GitHub using your favorite GitHub client. In case you download the ZIP file, Extract the folders on your local disk. The Extracted files and folders will look like following image: Open IntelliJ Idea and import the project to get started with it. Archived project file can also be imported....file, extract the folders on your local disk. The extracted files...

    docs.groupdocs.com/parser/java/how-to-run-examp...
  10. 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); // ....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...

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