Sort Score
Result 10 results
Languages All
Labels All
Results 571 - 580 of 596 for

email to image

(0.2 sec)
  1. Working with metadata in HEIF/HEIC images | Doc...

    Working with XMP metadata GroupDocs.Metadata for .NET allows managing XMP metadata in HEIF/HEIC Images. For more details please refer To the following guide: Working with XMP metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in HEIF/HEIC Images. Please find appropriate code samples in the Working with EXIF metadata section. More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...formats / Images / Working with metadata in HEIF/HEIC images Working...with metadata in HEIF/HEIC images Leave feedback Working with...

    docs.groupdocs.com/metadata/net/working-with-me...
  2. Get document info | Documentation

    This article shows that how To get meta information of a document.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/net/get-document-info/
  3. Get document info | Documentation

    This article shows how To get the basic document info....familiar how to extract text, images, forms and more, please refer...DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online...

    docs.groupdocs.com/parser/net/get-document-info/
  4. Extract metadata from documents | Documentation

    This article shows how To extract metadata with GroupDocs.Parser from documents of various formats: PDF, Emails, Ebooks, Microsoft Office: Word (DOC, DOCX), PowerPoint (PPT, PPTX), Excel (XLS, XLSX), LibreOffice formats and many others....documents of various formats: PDF, Emails, Ebooks, Microsoft Office:...familiar how to extract text, images, forms and more, please refer...

    docs.groupdocs.com/parser/net/extract-metadata-...
  5. Load a password-protected document | Documentation

    This example demonstrates how To load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const metadata = new groupdocs.metadata.Metadata("protected.docx", loadOptions); } More resources Advanced usage Topics To learn more about library features and get familiar how To manage metadata and more, please refer To theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  6. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used To obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); IteraTor iteraTor = supportedFileTypes.iteraTor(); while (iteraTor.hasNext()) { FileType fileType = (FileType)iteraTor.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage Topics To learn more about library features and get familiar how To manage metadata and more, please refer To theadvanced usage section.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/get-supported-...
  7. Exporting metadata properties | Documentation

    This article provides the knowledge that how To export metadata properties To an Excel workbook.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/net/exporting-metad...
  8. Exporting metadata properties | Documentation

    This article provides the knowledge that how To export metadata properties To an Excel workbook in Java... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/exporting-meta...
  9. Working with metadata in WordProcessing documen...

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of WordProcessing documents such as DOC, DOCX, ODT, etc. For the full list of supported document formats please refer To Supported Document Formats. Detecting the exact type of a document The following sample of code will help you To detect the exact type of a loaded document and extract some additional file format information. Load a WordProcessing document Extract the root metadata package Use the FileType property To obtain file format information AdvancedUsage.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Load a file of a specific format | Documentation

    This example demonstrates how To load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file To load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path To your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties To extract or edit metadata System.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/load-a-file-of...