Learn how to merge Open Document files, combine ODT, ODS, ODP files into one file programmatically in C# language using Groupdocs.Merger for .NET library....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
Use advanced rasterization options In order to use the advanced rasterization options you have to pass one of the options to Save method. In this case the document will be rasterized to PDF, but the scan-like effects will be applied to its pages.
The following example demonstrates how to apply the AdvancedRasterizationOptions with default settings.
use_advanced_rasterization_options.py from Groupdocs.redaction import Redactor from Groupdocs.redaction.options import SaveOptions, AdvancedRasterizationOptions from Groupdocs.redaction.redactions import ExactPhraseRedaction, ReplacementOptions def use_advanced_rasterization_options(): # Specify the redaction options repl_opt = ReplacementOptions("[personal]") ex_red = ExactPhraseRedaction("John Doe", repl_opt) # Load the document to be redacted with Redactor("....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
This page contains a description of all index settings that can be specified in an instance of the IndexSettings class....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
This article demonstrates how to convert PowerPoint presentations of PPT, PPTX, ODP to other formats with couple lines of Java code....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
Learn how to convert documents to XML or JSON data using Groupdocs.Conversion for .NET....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
Note In this article, we will use Groupdocs.Assembly to generate a Bulleted List report in Text Document format. Note The code uses some of the objects defined in The Business Layer. Bulleted List in Text Document Note This feature is supported by version 17.04 or greater Creating a Bulleted List Practicing the following steps you can insert Bulleted List in a Text document.
To add a bulleted list use • as a bullet for each element in the list....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
Articles in this section...Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
Note In this article, we will use Groupdocs.Assembly to generate a Numbered List report in HTML Document format. Note The code uses some of the objects defined in The Business Layer. Note This feature is supported by version 17.03 or greater. Numbered List in HTML Document Reporting Requirement As a report developer, you are required to describe the services you are providing with the following key requirements:
The report must show the products in numbered list....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...
Extracting information about all slide backgrounds The API allows you to extract information about all the slide backgrounds in a PowerPoint document as shown in the following code sample using method getBackgroundImage() of PresentationSlide.getImageFillFormat().
advanced_usage.add_watermarks_to_presentations.PresentationGetSlideBackgroundsInformation
PresentationLoadOptions loadOptions = new PresentationLoadOptions(); // Specify an absolute or relative path to your document. Ex: "C:\\Docs\\presentation.pptx" Watermarker watermarker = new Watermarker("presentation.pptx", loadOptions); PresentationContent content = watermarker.getContent(PresentationContent.class); for (PresentationSlide slide : content.getSlides()) { if (slide....Navigation Products GroupDocs.Total Product Family GroupDocs.Conversion...Solution GroupDocs.Viewer Product Solution GroupDocs.Markdown...