Sort Score
Result 10 results
Languages All
Labels All
Results 1,291 - 1,300 of 1,784 for

image to pdf

(0.09 sec)
  1. GroupDocs.Viewer 2.0 - New Features and Improve...

    Greetings! This is Part B of my post looking at the new features and enhancements To the GroupDocs document viewer for .NET version 2.0. For those of you who missed my previous post, please find it here. This time I’m going To continue describing the core updates that the library has seen in the second major release. So, here we go: Enhanced Text Search Options GroupDocs.Viewer 2.0 includes a lot of helpful text search improvements....are compatible with both the image-based and HTML-based rendering...an option for downloading a PDF instead of the original file...

    blog.groupdocs.com/viewer/new-features-and-impr...
  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....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...
  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 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...
  5. Embedded picture in Excel cell was not correclt...

    Hello, We are a software publisher using your library for our Web application. We are encountering a problem when previewing a Excel file, which a cell contains embedded picture. Here, we can found the document in th…...the screen of preview file image.jpg (83.3 KB) Here’s the code...the balise. Original css : image.png (3.7 KB) My modified css...

    forum.groupdocs.com/t/embedded-picture-in-excel...
  6. eSign document with Barcode signature | Documen...

    This article explains how To add Barcode signature on document page with various options like barcode type, barcode text, positioning, alignment and other visual settings with GroupDocs.Signature...Generally speaking, barcode is an image of rectangular form that consists...This example shows how to sign PDF document with Barcode signature...

    docs.groupdocs.com/signature/java/esign-documen...
  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 DicomRootPackage.DicomPackage Read the DICOM metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputDicom)) { var root = metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....metadata for specific formats / Images / Working with DICOM metadata...format-specific information from DICOM images. The following are the steps...

    docs.groupdocs.com/metadata/net/working-with-di...
  8. 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/
  9. Find metadata properties | Documentation

    This article explains that how 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 .NET solution....properties from PDF, DOCX, PPTX, XLSX, images, audio, video and...Moreover, in most cases, an image, video or document contains...

    docs.groupdocs.com/metadata/net/find-metadata-p...
  10. Word Document as HTML Responsive Pages using C#...

    Render Word documents To view as responsive HTML pages using C#. Convert DOC, DOCX files To HTML responsive pages using document viewer .NET API....resources, an Image Viewer by rendering as JPG and PNG, and PDF Viewer...C# Play and pause animated images in web pages using C# Render...

    blog.groupdocs.com/viewer/view-word-documents-a...