Sort Score
Result 10 results
Languages All
Labels All
Results 1,641 - 1,650 of 5,290 for

groupdocs.total,

(1.02 sec)
  1. Load password-protected file | GroupDocs

    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-...
  2. Use advanced logging | GroupDocs

    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. GroupDocs.Metadata for .NET | GroupDocs

    A .NET API to manipulate metadata is being consumed as metadata viewer for CRUD operations. It helps developers to read, write, edit and remove meta information from all popular document file formats...A .NET API to manipulate metadata is being consumed as metadata viewer for CRUD operations. It helps developers to read, write, edit and remove meta information from all popular document file formats

    docs.groupdocs.com/metadata/net/
  4. Get supported file formats | GroupDocs

    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...
  5. Load document of specific format | GroupDocs

    This article explains how to load document of specific format....This article explains how to load document of specific format.

    docs.groupdocs.com/watermark/java/load-document...
  6. Get document info | GroupDocs

    Retrieve file type, page count, size, and encryption using Python via .NET....Retrieve file type, page count, size, and encryption using Python via .NET.

    docs.groupdocs.com/watermark/python-net/get-doc...
  7. GroupDocs.Parser Overview | GroupDocs

    In this article, get acquainted with the features, functions, supported file formats and developer usage of GroupDocs.Parser for Python via .NET — API to extract text, images, metadata, and structured data from documents....In this article, get acquainted with the features, functions, supported file formats and developer usage of GroupDocs.Parser for Python via .NET — API to extract text, images, metadata, and structured data from documents.

    docs.groupdocs.com/parser/python-net/groupdocs-...
  8. System Requirements | GroupDocs

    On this page, you will find system requirements supported platforms, development environments. GroupDocs.Parser for Python via .NET does not require any external software or third party tool to be installed....On this page, you will find system requirements supported platforms, development environments. GroupDocs.Parser for Python via .NET does not require any external software or third party tool to be installed.

    docs.groupdocs.com/parser/python-net/system-req...
  9. Pre-rasterize | GroupDocs

    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 | GroupDocs

    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/