Sort Score
Result 10 results
Languages All
Labels All
Results 2,771 - 2,780 of 2,797 for

email to image

(0.07 sec)
  1. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature To read basic metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads metadata associated with a CAD file. advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // .... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/working-with-c...
  2. Working with metadata in Matroska (MKV) files |...

    Reading matroska format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from MKV files. The following are the steps To read native MKV metadata. Load an MKV video Get the root metadata package Extract the native metadata package using MatroskaRootPackage.MatroskaPackage Read the Matroska metadata properties on different levels of the format structure AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Matroska.MatroskaReadNativeMetadataProperties using (Metadata metadata = new Metadata(Constants.InputMkv)) { var root = metadata.GetRootPackage(); // Read the EBML header Console.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. Working with metadata in AVI files | Documentation

    Reading AVI header properties The GroupDocs.Metadata API supports extracting format-specific information from AVI file headers. The following are the steps To read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/working-with-m...
  4. extract text in java on GroupDocs Blog | Docume...

    extract text in java on GroupDocs Blog | Document AuTomation Solutions for .NET & Java Developers Recent content in extract text in java on GroupDocs Blog | Document AuTomation Solutions for .NET &......spreadsheets, presentations, ebooks, emails, markup documents, notes, archives...but you can also extract the images and metadata properties from...

    blog.groupdocs.com/tag/extract-text-in-java/ind...
  5. Working with metadata in Matroska (MKV) files |...

    Reading matroska format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from MKV files. The following are the steps To read native MKV metadata. Load an MKV video Get the root metadata package Extract the native metadata package using the MatroskaRootPackage.getMatroskaPackage method Read the Matroska metadata properties on different levels of the format structure advanced_usage.managing_metadata_for_specific_formats.video.matroska.MatroskaReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputMkv)) { MatroskaRootPackage root = metadata.getRootPackageGeneric(); // Read the EBML header System.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Learn about Publisher File Formats and APIs tha...

    Learn about Publisher File Formats and APIs that can open and create Publisher files on File Format Docs Recent content in Learn about Publisher File Formats and APIs that can open and create Publi......contain text, raster and vector images. Documents created with PUB...marketing materials such as Emails. PUB files can be opened with...

    docs.fileformat.com/publisher/index.xml
  7. Working with metadata in Matroska (MKV) files |...

    Reading matroska format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from MKV files. The following are the steps To read native MKV metadata. Load an MKV video Get the root metadata package Extract the native metadata package using the MatroskaRootPackage.getMatroskaPackage method Read the Matroska metadata properties on different levels of the format structure advanced_usage.managing_metadata_for_specific_formats.video.matroska.MatroskaReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputMkv)) { MatroskaRootPackage root = metadata.getRootPackageGeneric(); // Read the EBML header System.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Working with metadata in MOV files | Documentation

    Reading MOV format-specific properties The GroupDocs.Metadata API supports extracting QuickTime aToms from a MOV video. The aTom is the basic data unit in any QuickTime file. Please find more information on QuickTime aToms in the official specification: https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps To extract QuickTime aToms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using the MovRootPackage.getMovPackage method Read the QuickTime aToms advanced_usage.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/working-with-m...
  9. 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...PowerPoint presentations Extract images from Microsoft Office PowerPoint...

    docs.groupdocs.com/parser/java/extract-data-fro...
  10. Extract data from Microsoft Office Word documen...

    GroupDocs.Parser provides the functionality To extract data from Microsoft Office Word documents. Both classic (doc, dot) and Open XML (docx, dotx) formats are supported. Also LibreOffice Writer (OpenOffice.org Writer) formats and RTF are supported. The following table provides the list of supported formats: Format Description DOC Microsoft Office Word Document DOT Microsoft Office Word Document Template DOCX Microsoft Office Open XML Document DOCM Microsoft Office Open XML Macro-Enabled Document DOTX Microsoft Office Open XML Document Template DOTM Microsoft Office Open XML Document Macro-Enabled Template TXT Plain text ODT Open Document Text OTT Open Document Text Template RTF Rich Text Format 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...Office Word documents Extract images from Microsoft Office Word...

    docs.groupdocs.com/parser/java/extract-data-fro...