Sort Score
Result 10 results
Languages All
Labels All
Results 1,371 - 1,380 of 2,067 for

email

(0.05 sec)
  1. 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:...DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/working-with-b...
  2. Clean metadata | Documentation

    Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/clean-metadata/
  3. Extract data from Microsoft Office PowerPoint p...

    GroupDocs.Parser provides the functionality to extract data from Microsoft Office PowerPoint presentations. Both classic (ppt, pot) and Open XML (pptx, potx) formats are supported. Also LibreOffice Impress (OpenOffice.org Impress) formats are supported. The following table provides the list of supported formats: Format Description PPT Microsoft Office PowerPoint Presentation PPS Microsoft Office PowerPoint Slideshow POT Microsoft Office PowerPoint Template PPTX Microsoft Office Open XML Presentation PPTM Microsoft Office Open XML Macro-Enabled Presentation POTX Microsoft Office Open XML Presentation Template POTM Microsoft Office Open XML Macro-Enabled Presentation Template PPSX Microsoft Office Open XML Presentation Slideshow PPSM Microsoft Office Open XML Macro-Enabled Presentation Slideshow ODP Open Document Presentation OTP Open Document Presentation Template More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online...

    docs.groupdocs.com/parser/net/extract-data-from...
  4. Export Data | Documentation

    How to export data to JSON or XML files....DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online...

    docs.groupdocs.com/parser/net/export-data/
  5. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason files have non-standard extensions or if its format is supported, but not pre-configured....DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online...

    docs.groupdocs.com/redaction/net/extend-support...
  6. Анализ и извлечение заполняемых значений полей ...

    Разбирайте заполняемые PDF-формы и извлекайте значения полей форм PDF-документов на C# с помощью анализа и извлечения данных .NET API от GroupDocs....Text); } } COMPANY: GroupDocs EMAIL: everything@groupdocs.com COUNTRY:...

    blog.groupdocs.com/ru/parser/parse-and-extract-...
  7. Come convertire MSG in PDF usando C#

    In questo argomento imparerai come convertire MSG in PDF utilizzando C# senza installare software di terze parti. Inoltre, forniremo il codice per esportare MSG in PDF in C#....efficacemente i contenuti delle email in un formato versatile. Approfondiamo...

    kb.groupdocs.com/it/conversion/net/how-to-conve...
  8. Handling MPEG audio metadata | Documentation

    This article explains how the The GroupDocs.Metadata API allows reading some common MPEG audio properties from MP3 files....DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/net/handling-mpeg-a...
  9. Extracting common image information | Documenta...

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the getImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/extracting-com...
  10. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the getGifImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with XMP Metadata GroupDocs....DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free...

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