Sort Score
Result 10 results
Languages All
Labels All
Results 2,711 - 2,720 of 3,082 for

email to pdf

(0.07 sec)
  1. Metadata

    Document AuTomation APIs To enrich .NET and Java applications To view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....images, audios, videos, zip, emails and many more. The API aims...Changes are done for HTML, PDF, Cells, Emails and Words document formats...

    blog.groupdocs.com/tag/metadata/
  2. 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 the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. Password-protected documents | Documentation

    Learn how To open the password-protected documents....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...

    docs.groupdocs.com/parser/net/password-protecte...
  4. Detect encoding | Documentation

    This article explains that how To detect encoding of a plain text file in java....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...

    docs.groupdocs.com/parser/java/detect-encoding/
  5. Password-protected documents | Documentation

    GroupDocs.Parser provides the functionality To open the password-protected documents. The following are the steps To work with password protected documents. Instantiate the LoadOptions object; Set password in LoadOptions(String) construcTor; Create Parser object and call any method. The following code sample shows how To process password protected documents. try { String password = "123456"; // Create an instance of Parser class with the password: try (Parser parser = new Parser(Constants.SamplePassword, new LoadOptions(password))) { // Check if text extraction is supported if (!...data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...

    docs.groupdocs.com/parser/java/password-protect...
  6. Java DOTX Annotation API Annotate in C#

    Java API To create and Annotate popular annotation types from DOTX, images, drawings and document file formats....allows you to add annotations to PDF, Word and other documents on...Excel, PowerPoint, Outlook emails, Visio, Adobe, OpenDocument...

    products.groupdocs.com/annotation/java/dotx/
  7. Getting known property descriptors | Documentation

    This code snippet demonstrates how To extract information about known properties that can be encountered in a particular package. Load a file To examine Get a collection of PropertyDescripTor instances for any desired metadata package Iterate through the extracted descripTors advanced_usage.GettingKnownPropertyDescripTors JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descripTors = root.getDocumentProperties().getKnowPropertyDescripTors(); for(var i=0;iTors.getCount(); i++) { var descripTor = descripTors.get_Item(i); console.log(descripTor.getName()); console.log(descripTor.getType().getRawValue()); console.log(descripTor.getAccessLevel().getRawValue()); var tags = descripTor.getTags(); for(var j=0;jPDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  8. Working with metadata in WEBP images | Document...

    Working with XMP metadata GroupDocs.Metadata for Java allows managing XMP metadata in JPEG 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 JPEG 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:...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...

    docs.groupdocs.com/metadata/java/working-with-m...
  9. 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:...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. 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....pdf" try ( Metadata metadata = new...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...

    docs.groupdocs.com/metadata/java/clean-metadata/