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

management

(0.07 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....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...
  2. 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-...
  3. 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...
  4. 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...
  5. Render Project documents as HTML, PDF, and imag...

    This topic describes how to use the GroupDocs.Viewer Java API to convert Microsoft Project files to HTML, PDF, PNG, and JPEG formats....Project or other project management software to load and view...pages. Supported Project Management file formats GroupDocs.Viewer...

    docs.groupdocs.com/viewer/java/render-ms-projec...
  6. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } 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...properties advanced_usage.managing_metadata_for_specific_formats...

    docs.groupdocs.com/metadata/java/working-with-b...
  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 the DicomRootPackage.getDicomPackage method Read the DICOM metadata properties examples.advanced_usage.managing_metadata_for_specific_formats.image.dicom.DicomReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Developer Guide / Advanced Usage / Managing metadata for specific formats...properties examples.advanced_usage.managing_metadata_for_specific_formats...

    docs.groupdocs.com/metadata/java/working-with-d...
  8. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } 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/working-with-bm...
  9. Clean metadata | Documentation

    This artcle explains how to 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 watermarks and more, please...online document metadata management App Along with full featured...

    docs.groupdocs.com/metadata/net/clean-metadata/
  10. 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/nodejs-java/clean-m...