Sort Score
Result 10 results
Languages All
Labels All
Results 191 - 200 of 983 for

document management

(0.04 sec)
  1. 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:...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

    docs.groupdocs.com/metadata/java/working-with-b...
  2. 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....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

    docs.groupdocs.com/metadata/java/working-with-d...
  3. Convert PDF to Image using Node.js

    Learn how to convert PDF to Image using Node.js. This guide provides a simple method to efficiently export PDF to Image in Node.js, ensuring high-quality image output....practical solution for displaying document content in applications without...image output while preserving document details. With just a few lines...

    kb.groupdocs.com/conversion/nodejs/convert-pdf-...
  4. 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....Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...features and get familiar how to manage metadata and more, please refer...

    docs.groupdocs.com/metadata/nodejs-java/clean-m...
  5. 2021 September | File Format Blog

    Monthly Archives: September 2021 Top 5 GIS File Formats for Google Maps Posted on September 25, 2021 by Kashif Iqbal ......either we are writing business documents (e.g. letters, applications...requires efficient disk storage management. Moreover, fast and effective...

    blog.fileformat.com/2021/09/
  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 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:...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

    docs.groupdocs.com/metadata/net/working-with-bm...
  7. GroupDocs Pricing Review 2019

    In this post, we share how we conducted our 2019 GroupDocs Pricing Review. Last month we shared the news about GroupDocs 2019 pricing change. Our aim behind that change was simple: to make sure we are delivering the best value Document Management API suite on the market. Each year we review our pricing and licensing model to make sure we’re continually giving developers the functionality and flexibility they need. Providing top quality APIs at fair prices along with permissive licensing models....delivering the best value Document Management API suite on the market...list Vendors in the “.NET Document Viewer” space, ensured they...

    blog.groupdocs.com/total/groupdocs-pricing-revi...
  8. Find metadata properties | Documentation

    Using the GroupDocs.Metadata for Java you can easily search metadata and extract desired metadata properties from PDF, DOCX, PPTX, XLSX, images, audio, video and many other files of different types in your Java solution....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...cases, one image, video or document contains more than one metadata...

    docs.groupdocs.com/metadata/java/find-metadata-...
  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 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:...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

    docs.groupdocs.com/metadata/java/extracting-com...
  10. Working with metadata in MOV Files | Documentation

    Reading MOV format-specific properties The GroupDocs.Metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/Documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps to extract QuickTime atoms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using MovRootPackage.MovPackage Read the QuickTime atoms AdvancedUsage....Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...Developer Guide / Advanced Usage / Managing metadata for specific formats...

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