Sort Score
Result 10 results
Languages All
Labels All
Results 741 - 750 of 1,723 for

pdf image comparison

(0.12 sec)
  1. Get file info | Documentation

    The page describes how to detect document file type, size and calculate pages count when annotate documents or Images with GroupDocs.Annotation....Comparison Product Solution GroupDocs...information: is a document file type (PDF, Word document, Excel spreadsheet...

    docs.groupdocs.com/annotation/net/get-file-info/
  2. How to Convert SVG to JPG using Java

    This tutorial walks you through the complete workflow to convert SVG to JPG using Java and enables you to easily write the SVG to JPG Java code with a few API calls....Comparison Product Family GroupDocs...transform SVG files to other image formats. We have discussed the...

    kb.groupdocs.com/conversion/java/how-to-convert...
  3. Load document of specific format | Documentation

    This article explains how to load document of specific format....Comparison Product Solution GroupDocs...descendant Diagram Email Image GifImage TiffImage PDF Presentation Spreadsheet...

    docs.groupdocs.com/watermark/java/load-document...
  4. Deleting multiple signatures of different types...

    This article shows how to delete multiple electronic signatures different ways with GroupDocs.Signature API....Comparison Product Solution GroupDocs...BaseSignature >(); // collect image signatures to delete foreach...

    docs.groupdocs.com/signature/net/deleting-multi...
  5. 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:...Comparison Product Solution GroupDocs...metadata for specific formats / Images / Working with BMP metadata...

    docs.groupdocs.com/metadata/net/working-with-bm...
  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:...Comparison Product Solution GroupDocs...metadata for specific formats / Images / Working with BMP metadata...

    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....Comparison Product Solution GroupDocs...metadata for specific formats / Images / Working with DICOM metadata...

    docs.groupdocs.com/metadata/java/working-with-d...
  8. GroupDocs.Annotation for Java | Documentation

    API to annotate text or Images in your documents using Java. It supports Pdf, Microsoft Word DOCX, Excel XLSX and PowerPoint. PPTX...Comparison Product Solution GroupDocs...ability to annotate text or images in a document within your applications...

    docs.groupdocs.com/annotation/java/
  9. Use Microsoft Azure Computer Vision API | Docum...

    This article explains that how to use Microsoft Azure Computer Vision API...Comparison Product Solution GroupDocs...usage / Using OCR to redact image documents / Use Microsoft Azure...

    docs.groupdocs.com/redaction/net/use-microsoft-...
  10. Working with Metadata in ASF Files | Documentation

    Working with metadata in ASF files Reading ASF format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from ASF files. The following are the steps to read native ASF metadata. Load an ASF video Get the root metadata package Extract the native metadata package using AsfRootPackage.AsfPackage Read the ASF metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Asf.AsfReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputAsf)) { var root = metadata.GetRootPackage(); var package = root.AsfPackage; // Display basic properties Console....Comparison Product Solution GroupDocs...Compression ); Console . WriteLine ( "Image height: {0}" , videoStreamProperty...

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