Sort Score
Result 10 results
Languages All
Labels All
Results 411 - 420 of 616 for

email to image

(0.13 sec)
  1. Use Aspose.OCR for .NET on-premise API | Docume...

    This article explains that how To use Aspose.OCR for .NET on-premise API....usage / Using OCR to redact image documents / Use Aspose.OCR for...DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online...

    docs.groupdocs.com/redaction/net/use-aspose-ocr...
  2. GroupDocs.Total for Java | Documentation

    GroupDocs.Total for Java is the super-set of all the Java on-premise APIs offered by GroupDocs. We compile it on a monthly basis To ensure that it contains the most up To date versions of each of our Java document manipulation APIs....and manipulate documents and images within your Java applications...with over 170 document and image formats, including text documents...

    docs.groupdocs.com/total/java/
  3. 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...
  4. 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...
  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 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...
  6. Handle loading of external resources documents ...

    GroupDocs.Parser provides the functionality To handle loading of HTML external resources. Here are the steps To handle loading of HTML external resources. Instantiate the ParserSettings object and pass External Resource Handler; Create Parser object and call GetImages method. The following code sample shows how To handle loading of HTML external resources. // Create an instance of ParserSettings To pass External Resource Handler ParserSettings settings = new ParserSettings(new Handler()); // Create an instance of Parser class To generate spreadsheet page previews try (Parser parser = new Parser(Constants...., settings )) { // Extract images from HTML document Iterable...Iterable < PageImageArea > images = parser . getImages (); // Iterate...

    docs.groupdocs.com/parser/java/handle-loading-o...
  7. Clean Metadata of Documents and Images using Java

    Java API To remove all or selective metadata properties of DOCX, XLSX, PPTX, PDF documents, JPEG, PNG, WebP Images, Email, eBooks, Visio Drawings, Zip, etc....removing metadata from the images and documents using Java ....Documents Clean Metadata from Images Remove Selective Metadata from...

    blog.groupdocs.com/metadata/remove-metadata-fro...
  8. Extract hyperlinks from document | Documentation

    This article explains that how To extract hyperlinks from documents....GitHub examples: Free online image extractor App Along with full...You are welcome to extract images from PDF, DOC, DOCX, PPT, PPTX...

    docs.groupdocs.com/parser/java/extract-hyperlin...
  9. Extract hyperlinks from document | Documentation

    This article explains that how To extract hyperlinks from documents....GitHub examples: Free online image extractor App Along with full...You are welcome to extract images from PDF, DOC, DOCX, PPT, PPTX...

    docs.groupdocs.com/parser/net/extract-hyperlink...
  10. Basic Usage | Documentation

    GroupDocs.Watermark library provides the ability To manipulate different watermark types such as TextWatermark, ImageWatermark. These watermarks could be added To documents, updated, removed, or searched inside already watermarked documents. Our product also provides information about document type and structure - file type, size, page count, etc. and generates document page previews based on provided options. Here are the main GroupDocs.Watermark API concepts: Watermarker is the main class that contains all the required methods for manipulating document watermarks....DOCX, PPT, PPTX, XLS, XLSX, emails, and more with our . Get document...supported file formats Add text or image watermark Was this page helpful...

    docs.groupdocs.com/watermark/java/basic-usage/