Sort Score
Result 10 results
Languages All
Labels All
Results 1,271 - 1,280 of 1,770 for

image to pdf

(0.04 sec)
  1. Working with metadata in JPEG2000 images | Docu...

    Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 Images. The following are the steps To read the JPEG2000 comments (pieces of metadata represented as strings with the length up To 64 kbytes). Load a JPEG2000 Image Get the root metadata package Extract the native metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments using (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { var root = metadata.GetRootPackage(); if (root....formats / Images / Working with metadata in JPEG2000 images Working...Working with metadata in JPEG2000 images Leave feedback Reading JPEG2000...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. Use OCR Connector | Documentation

    This article explains how To integrate OCR solution To GroupDocs.Parser...to extract a text from images and PDFs / Use OCR Connector Use...text recognition from images and scanned PDFs in English. This requires...

    docs.groupdocs.com/parser/net/use-ocr-connector/
  3. 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....information: is a document file type (PDF, Word document, Excel spreadsheet...PowerPoint presentation or image etc.) is a count of document...

    docs.groupdocs.com/annotation/net/get-file-info/
  4. List attachments | Documentation

    Retrieve a list of document attachments from your emails, Outlook data files, archives and Pdf documents with GroupDocs.Viewer for .NET...Outlook data files, archives, and PDF documents. C# using System ;...Sub End Module The following image shows a sample console output:...

    docs.groupdocs.com/viewer/net/how-to-list-attac...
  5. Synonym search online

    Synonym search in document. Perform synonym search of words and phrases online....search Word forms search Reverse image search Synonym search is a type...HTM HTML MHT MHTML XHTML XML PDF PPT PPTX PPS PPSX ODP POT PPTM...

    products.groupdocs.app/search/synonym
  6. Indexing options | Documentation

    This page contains a description of all the properties of the IndexingOptions class...recognize text in separate image files. The default value is...recognize text in embedded images. The default value is false...

    docs.groupdocs.com/search/nodejs-java/indexing-...
  7. Add Watermark to Excel Workbooks using C# | Tex...

    Insert watermarks inTo Excel workbooks using C#. Watermark all sheets or insert watermark To just specific sheet even as background using .NET API....watermark different documents , images , and presentations . Today....NET API for documents and images of various file formats. We...

    blog.groupdocs.com/watermark/watermark-excel-sh...
  8. 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....metadata for specific formats / Images / Working with DICOM metadata...format-specific information from DICOM images. The following are the steps...

    docs.groupdocs.com/metadata/java/working-with-d...
  9. 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:...metadata for specific formats / Images / Working with BMP metadata...header of a BMP file. a BMP image Get the root metadata package...

    docs.groupdocs.com/metadata/net/working-with-bm...
  10. 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:...metadata for specific formats / Images / Working with BMP metadata...header of a BMP file. a BMP image Get the root metadata package...

    docs.groupdocs.com/metadata/java/working-with-b...