Sort Score
Result 10 results
Languages All
Labels All
Results 91 - 100 of 621 for

email to pdf improvement

(1.19 sec)
  1. Extract images from Emails | Documentation

    To extract images from Emails getImages method is used. By default images are extracted with its original format. With using ImageOptions class it is possible To extract images from Emails as bmp, gif, jpeg, png and webp formats. Warning getImages method returns null value if image extraction isn’t supported for the document. For example, image extraction isn’t supported for TXT files. Therefore, for TXT file getImages method returns null. If an Email has no images, getImages method returns an empty collection....Extract data from Emails / Extract images from Emails Extract images...from Emails Leave feedback To extract images from emails method...

    docs.groupdocs.com/parser/java/extract-images-f...
  2. GroupDocs Newsletter February 2018 – Document M...

    Share this issue: Monthly Newsletter February 2018 .NET Document Viewer APIs for C#, WPF and ASPdotNET Applications Render Pdf, Word, Excel, Outlook, HTML and Image formats within GroupDocs.Viewer for .NET is a powerful file viewer API for rendering over 50 documents and image file formats within .NET applications. It rasterizes documents and images both, renders text and converts them To SVG + HTML + CSS – offering a high-fidelity true-text, native document rendering....ASPdotNET Applications Render PDF, Word, Excel, Outlook, HTML and...for : Java Product News pare PDF Annotations in .NET Applications...

    blog.groupdocs.com/total/groupdocs-newsletter-f...
  3. Extract attachments from Emails | Documentation

    Extract attachments from Emails To extract attachments from Emails getContainer method is used. This method returns the collection of ContainerItem objects. Email Attachment can contain the following metadata: Name Description content-type The MIME type of the attachment content These metadata refer To a container element itself, not a document. Here are the steps To extract an Email text from Email attachments: Instantiate Parser object for the initial document; Call getContainer method and obtain collection of ContainerItem objects; Check if collection isn’t null (container extraction is supported for the document); Iterate through the collection and obtain Parser object To extract a text....data from Emails / Extract attachments from Emails Extract attachments...from Emails Leave feedback Extract attachments from Emails To extract...

    docs.groupdocs.com/parser/java/extract-attachme...
  4. Extract emails from remote server via POP IMAP ...

    GroupDocs.Parser provides the functionality To extract Emails from remote servers. The following Email proTocols are supported: Post Office ProTocol (POP) Internet Message Access ProTocol (IMAP) Exchange Web Services (EWS) To create an instance of Parser class To extract Emails from a remote server the following construcTor is used: Parser(EmailConnection connection); Parser(EmailConnection connection, ParserSettings parserSettings) The second construcTor allows To use ParserSettings object To control the process; for example, by adding logging functionality....Extract data from Emails / Extract emails from remote server...Services protocols Extract emails from remote server via POP...

    docs.groupdocs.com/parser/java/extract-emails-f...
  5. Supported Document Formats | Documentation

    Supported File Formats The following table indicates the input and output file formats supported by GroupDocs.Assembly for Java. Format Description Load Save Populate Remarks DOC Microsoft Word 97 - 2007 Document. DOT Microsoft Word 97 - 2007 Template. DOCX Office Open XML WordprocessingML Document (macro-free). DOCM Office Open XML WordprocessingML Macro-Enabled Document. DOTX Office Open XML WordprocessingML Template (macro-free). DOTM Office Open XML WordprocessingML Macro-Enabled Template. RTF RTF format. XLSX OOXML 2007-2010 XLSM OOXML Macro Enabled Workbook XLTX OOXML Workbook Template XLTM OOXML Macro Enabled Workbook Template XLSB OOXML Binary Workbook XLS Excel Workbook 97-2003 XLT Excel Workbook Template 97-2003 XML Spreadsheet Markup Language ODS Open Document Spreadsheet PPTX OOXML Presentation PPTM OOXML Macro Enabled Presentation PPTM OOXML Macro Enabled Presentation PPSX OOXML SlideShow PPSM OOXML Macros Enabled Presentation POTX OOXML Presentation Template POTM OOXML Macro Enabled Presentation Template PPT PowerPoint Presentation 97-2003 PPS PowerPoint SlideShow 97-2003 ODP OpenDocument Presentation EML Email Message Format MSG Outlook Email Message Format EMLX Apple’s Email Message Format TXT Plain Text XML Word Processing Markup Language HTML HTML format....Presentation Email Message Format Outlook Email Message Format...Format Apple’s Email Message Format Plain Text Word Processing Markup...

    docs.groupdocs.com/assembly/java/supported-docu...
  6. Convert publisher formats | Documentation

    In this article, you will learn how To convert Publisher formats To other formats with GroupDocs.Conversion for Java....digital marketing business, do email marketing, or have some publishing... brochures, postcards, and email content. Publisher file formats...

    docs.groupdocs.com/conversion/java/convert/publ...
  7. Features overview | Documentation

    Render documents To HTML, PNG, JPEG, Pdf. Extract text, list attachments, and transform pages with GroupDocs.Viewer for Python.... Rendering to PDF GroupDocs.Viewer renders a document...document to a single PDF document, so rendering to PDF will suit the...

    docs.groupdocs.com/viewer/python-net/features-o...
  8. Select specific pages for rasterized PDF | Docu...

    This article demonstrates that how you can specify starting page index (zero based) and the number of pages from this index To save a rasterized Pdf...rasterized PDF Select specific pages for rasterized PDF Leave feedback...Saving document as a rasterized PDF, you can specify starting page...

    docs.groupdocs.com/redaction/net/select-specifi...
  9. Working with metadata in PDF documents | Docume...

    Detecting the version of a Pdf document The following sample of code will help you To detect the Pdf version a loaded document and extract some additional file format information. Load a Pdf document Extract the root metadata package Use the getPdfType method To obtain file format information advanced_usage.managing_metadata_for_specific_formats.document.Pdf.PdfReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in metadata properties To access built-in metadata of a Pdf document, please use the getDocumentProperties method defined in the DocumentRootPackage class....metadata in PDF documents Working with metadata in PDF documents...feedback Detecting the version of a PDF document The following sample...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Working with metadata in PDF documents | Docume...

    Detecting the version of a Pdf document The following sample of code will help you To detect the Pdf version a loaded document and extract some additional file format information. Load a Pdf document Extract the root metadata package Use the FileType property To obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage<PdfRootPackage>(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a Pdf document, please use the DocumentProperties property defined in the DocumentRootPackage class....metadata in PDF documents Working with metadata in PDF documents...feedback Detecting the version of a PDF document The following sample...

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