Sort Score
Result 10 results
Languages All
Labels All
Results 2,381 - 2,390 of 4,996 for

assembly

(0.13 sec)
  1. Features overview | GroupDocs

    GroupDocs.Watermark for .NET API presents a wide range of features like creating a watermark, removing watermark, adding watermark to photos, removing watermark from photo and more....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/watermark/python-net/feature...
  2. Supported Platforms | GroupDocs

    Learn about Java version requirements and supported operating systems for GroupDocs.Redaction for Java. Minimum JDK 8 required, with support for Windows, Linux, and macOS platforms....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/system-requir...
  3. Supported Document Formats | GroupDocs

    It supports DOCX, DOCM, DOC, DOT, DOTM, XLS, XLSX, PDF, PPT, JPG, PNG, HTML, EML and many more....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/net/supported-docu...
  4. OCR Usage Basics | GroupDocs

    This article explains that how to integrate any paid or free OCR solution in Java....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/ocr-usage-bas...
  5. Load document from FTP | GroupDocs

    This article demonstrates how to convert document stored in FTP storage using GroupDocs.Conversion for Java API....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/conversion/java/load-documen...
  6. Detect encoding | GroupDocs

    This article explains that how to detect encoding of a plain text file....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/parser/net/detect-encoding/
  7. Extract barcodes from document | GroupDocs

    This article explains that how to extract barcodes from documents....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/parser/net/extract-barcodes-...
  8. 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....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/use-advanced-...
  9. Indexing with stop words | GroupDocs

    Stop words are frequently used words that do not carry a semantic meaning and can be removed from an index to reduce its size. You can enable or disable the use of stop words by calling the setUseStopWords method of the IndexSettings class. The default value is true, meaning that stop words are filtered during indexing and not added to the index. A list of stop words to use during indexing can be specified in the stop word dictionary....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/search/java/indexing-with-st...
  10. Document renaming | GroupDocs

    Sometimes a situation arises when an indexed document is renamed, but its contents have not changed. In this case, to save computing resources, you can notify the index about the renaming of the document, and then the document will not be reindexed during the update operation. To notify an index about renaming a document, the notifyIndex method is used with the corresponding notification object as a parameter. You should keep in mind that if an index is notified of the renaming of a document, it will not be reindexed the next time you call the update method, even if its contents have changed....Assembly Product Solution GroupDocs...

    docs.groupdocs.com/search/java/document-renaming/