Render Documents to HTML, PDF, JPEG, or PNG with GroupDocs.Viewer for Python via .NET. Simple and powerful!...Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...
Note This feature is supported by version 20.3 or greater. Note The code uses some of the objects defined in The Business Layer. Warning Dynamic insertion of Documents from Base64-encoded bytes is available for file formats where dynamic Document insertion is available for Word Processing Documents and emails with HTML and RTF bodies only. You can insert contents of outer Documents to your reports dynamically using doc tags. A doc tag denotes a placeholder within a template for a Document to be inserted during run time....Assembly Product Solution GroupDocs...AI GroupDocs Documentation / GroupDocs.Assembly Product Family...
This article explains how to separately extract data from Documents and add the extracted data to the index....Assembly Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Search Product...
This article demonstrates how to move Document page to another position within PDF, Word, Excel, PowerPoint Document using GroupDocs.Merger for Java API....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...
Following this guide you will learn how to change PDF Document page rotation angle using GroupDocs.Merger for Java API....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...
Following this guide you will learn how to change PDF Document page rotation angle using GroupDocs.Merger for .NET API....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Merger Product...
You might need to save a Document to any custom file at any location on the local disc or a even a Stream.
The following example demonstrates how to save a Document to any location.
final Redactor redactor = new Redactor("Sample.docx"); try { // Here we can use Document instance to perform redactions RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { // Save the Document to a custom location and convert its pages to images final FileOutputStream fileStream = new FileOutputStream("C:\\\\Temp\\\\sample_output_file....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...
For GroupDocs, 2012 was a significant year marked by milestones; we’re proud and grateful to end a busy year with great achievements. With constant enhancements, we were able to prove that we’re an integral part of the Document management world. In 2012, we have introduced enhanced versions of our apps with added features from time to time; created a variety of plugins for multiple platforms; integrated many different storage options with GroupDocs; introduced flexible API SDKs to help you integrate our apps to your existing applications; and were able build a strong base of valuable customers, ranging from small to mid to enterprise levels; amongst many others....we’re an integral part of the document management world. In 2012...one-stop shop for all your document management requirements. We...
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....Assembly Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...