Extract email attachments using GroupDocs.Parser for .NET...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article explains how to add metadata signatures to PDF document meta info layer with GroupDocs.Signature...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Editing Form Fields with GroupDocs.Editor for Java...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Rendering Files to PDF with GroupDocs.Viewer for Node.js via Java. It means that you can embed PDF in websites or applications by using this Java Api...Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This page describes how to remove annotations from document when collaborate, edit and annotate documents using GroupDocs.Annotation for Java....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
The simplest way to save the document is it provide no parameters to Save method. In this case the document will be rasterized to PDF and will have the same name as the original one except its extension (.PDF). The PDF File will be overwritten.
The following example demonstrates usage of Save() method with default options.
final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article explains how to load PDF, Word, Excel, PowerPoint documents from stream when using GroupDocs.Merger for Java....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Following this guide you will learn how to change Word document page orientation to Portrait or Landscape using GroupDocs.Merger for Java....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional File format information.
Load a PDF document Extract the root metadata package Use the FileType property to obtain File format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties
using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....Comparison Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...