Sort Score
Result 10 results
Languages All
Labels All
Results 561 - 570 of 630 for

email to image

(0.05 sec)
  1. Extract data from PDF forms | Documentation

    This article shows how To extract data from PDF forms easily with GroupDocs.Parser....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/java/extract-data-fro...
  2. Removing metadata | Documentation

    Example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing To remove metadata properties... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/net/removing-metadata/
  3. Working with ZIP archives | Documentation

    Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed To be followed: Load a ZIP archive Get the root metadata package Extract the native metadata package using ZipRootPackage.ZipPackage Read the ZIP archive properties Loop through ZipPackage.Files To extract information about archived files The following code snippet shows how To get metadata from a ZIP archive. AdvancedUsage.ManagingMetadataForSpecificFormats.Archive.ZipReadNativeMetadataProperties Encoding encoding = Encoding.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/net/working-with-zi...
  4. Removing metadata | Documentation

    Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully cusTom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property To locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing To remove metadata properties.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

    docs.groupdocs.com/metadata/java/removing-metad...
  5. 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...
  6. 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...
  7. 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-...
  8. 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...
  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. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps To read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using FlvRootPackage.Header Read the FLV header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputFlv)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.Version); Console.WriteLine(root.Header.HasAudioTags); Console.WriteLine(root.Header.HasVideoTags); Console.WriteLine(root.Header.TypeFlags); } Working with XMP metadata GroupDocs.... PPT, PPTX, XLS, XLSX, emails, images and more with our free...

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