Sort Score
Result 10 results
Languages All
Labels All
Results 2,111 - 2,120 of 5,179 for

groupdocs.watermark,

(0.06 sec)
  1. Merge pages from various documents | Documentation

    This article explains how to merge some pages from different documents into single PDF, DOCX, Excel or PowerPoint document using GroupDocs.Merger for Java....This article explains how to merge some pages from different documents into single PDF, DOCX, Excel or PowerPoint document using GroupDocs.Merger for Java.

    docs.groupdocs.com/merger/java/merge-pages-from...
  2. Use advanced logging | Documentation

    You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods: import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** *

    * This is an example of ILogger implementation, tracking count of error messages. *

    */ public class CustomLogger implements ILogger { private ArrayList _errors; private ArrayList _traces; private ArrayList _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList(); _traces = new ArrayList(); _warnings = new ArrayList(); } public void error(String message) { _errors....You can implement ILogger interface from com.groupdocs.redaction.options package. This interface requires to implement three methods: import com.groupdocs.redaction.options.ILogger; import java.util.ArrayList; /** * <p> * This is an example of ILogger implementation, tracking count of error messages. * </p> */ public class CustomLogger implements ILogger { private ArrayList<String> _errors; private ArrayList<String> _traces; private ArrayList<String> _warnings; public boolean hasErrors() { return _errors.size() > 0; } public CustomLogger() { _errors = new ArrayList<String>(); _traces = new ArrayList<String>(); _warnings = new ArrayList<String>(); } public void error(String message) { _errors.

    docs.groupdocs.com/redaction/java/use-advanced-...
  3. Compare multiple documents | Documentation

    Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for .NET....Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for .NET.

    docs.groupdocs.com/comparison/net/compare-multi...
  4. Show results of comparison as a Word Track Chan...

    This article explains how to use the Microsoft Word Track Changes comparing as a built-in feature in GroupDocs.Comparison for Node.js via Java....This article explains how to use the Microsoft Word Track Changes comparing as a built-in feature in GroupDocs.Comparison for Node.js via Java.

    docs.groupdocs.com/comparison/nodejs-java/word-...
  5. Load file from local disk | Documentation

    This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Comparison for Python via .NET....This article explains how to load PDF, Word, Excel, PowerPoint documents from local disk when using GroupDocs.Comparison for Python via .NET.

    docs.groupdocs.com/comparison/python-net/load-f...
  6. Get supported file formats | Documentation

    This page describes how the search api is used to obtain a list of supported file types....This page describes how the search api is used to obtain a list of supported file types.

    docs.groupdocs.com/search/net/get-supported-fil...
  7. Compare multiple documents | Documentation

    Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Node.js via Java....Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Node.js via Java.

    docs.groupdocs.com/comparison/nodejs-java/compa...
  8. How to Convert PDF to Word in C#

    You will learn how to convert PDF to Word in C# in this tutorial. We'll utilize a simple console application for PDF to DOC conversion using C#....You will learn how to convert PDF to Word in C# in this tutorial. We'll utilize a simple console application for PDF to DOC conversion using C#.

    kb.groupdocs.com/conversion/net/how-to-convert-...
  9. Pre-rasterize | Documentation

    This article shows how to pre-rasterize a document using the redaction API....This article shows how to pre-rasterize a document using the redaction API.

    docs.groupdocs.com/redaction/java/pre-rasterize/
  10. Using OCR to redact image documents | Documenta...

    GroupDocs.Redaction supports both types of image documents for Optical Character Recognition (OCR): image files, such as printed document scans (PNG, JPG, etc.) embedded images within office documents (PDF, DOCX, etc.) You have to implement IOcrConnector interface and pass the instance to RedactorSettings constructor. For more details, see OCR Usage Basics article. OCR usage limitations There are the following limitations of the OCR with GroupDocs.Redaction for Java v21.6: textual replacements are not supported, so you have to use color box replacements to redact text in images....GroupDocs.Redaction supports both types of image documents for Optical Character Recognition (OCR): image files, such as printed document scans (PNG, JPG, etc.) embedded images within office documents (PDF, DOCX, etc.) You have to implement IOcrConnector interface and pass the instance to RedactorSettings constructor. For more details, see OCR Usage Basics article. OCR usage limitations There are the following limitations of the OCR with GroupDocs.Redaction for Java v21.6: textual replacements are not supported, so you have to use color box replacements to redact text in images.

    docs.groupdocs.com/redaction/java/using-ocr/