Sort Score
Result 10 results
Languages All
Labels All
Results 661 - 670 of 3,324 for

groupdocs.editor,

(0.12 sec)
  1. Set image resolution | Documentation

    This topic describes how to set image resolution in PDF file using the GroupDocs.Viewer .NET API (C#)....This topic describes how to set image resolution in PDF file using the GroupDocs.Viewer .NET API (C#).

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  2. Optimize spreadsheets in a PDF file | Documenta...

    This topic describes how to optimize spreadsheets in a PDF file using the GroupDocs.Viewer .NET API (C#)....This topic describes how to optimize spreadsheets in a PDF file using the GroupDocs.Viewer .NET API (C#).

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  3. Get document info | Documentation

    This article explains how to get document information...This article explains how to get document information

    docs.groupdocs.com/watermark/net/get-document-i...
  4. 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...
  5. Show Revisions | Documentation

    This article explains how to customize the display of revisions in the output document in GroupDocs.Comparison for .NET....This article explains how to customize the display of revisions in the output document in GroupDocs.Comparison for .NET.

    docs.groupdocs.com/comparison/net/show-revisions/
  6. Load from Stream | Documentation

    This article shows that how to load file from stream using redaction API...This article shows that how to load file from stream using redaction API

    docs.groupdocs.com/redaction/python-net/load-fr...
  7. Load password-protected file | Documentation

    Learn how to load a password-protected file by using .NET redaction API...Learn how to load a password-protected file by using .NET redaction API

    docs.groupdocs.com/redaction/net/load-password-...
  8. 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-...
  9. 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/
  10. 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/