Sort Score
Result 10 results
Languages All
Labels All
Results 871 - 880 of 4,103 for

groupdocs comparison release

(0.09 sec)
  1. Loading files | GroupDocs

    Groupdocs.Metadata allows you to load password-protected documents and load files from different sources. For more details please refer to the following guides:...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/nodejs-java/loading...
  2. Developer guide | GroupDocs

    Note This section describes some basic and advanced use cases of Groupdocs.Watermark for .NET. Please refer to GitHub repository for more examples and samples. Basic Usage Advanced Usage Migration Notes...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/watermark/net/developer-guide/
  3. Annotation basics | GroupDocs

    Quick Start section about main features of Groupdocs.Annotation API, describes how to annotate documents with just couple lines of code....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/annotation/java/basic-usage/
  4. Optimize images | GroupDocs

    Optimize images in a PDF file using Groupdocs.Viewer for .NET (C#)...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/viewer/net/optimize-images/
  5. Optimize images | GroupDocs

    Optimize PDF images with Groupdocs.Viewer for Python and .NET. Improve file size and performance....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/viewer/python-net/optimize-i...
  6. Getting Started | GroupDocs

    Open Navigation Close Navigation Products Groupdocs.Total Product Family Groupdocs.Viewer Product Solution Groupdocs.......Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/java/getting-started/
  7. Developer Guide | GroupDocs

    Explains Groupdocs.Viewer for Java file viewer features and shows how to view PDF, Word, Excel, PowerPoint documents inside your Java applications...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/viewer/java/developer-guide/
  8. Add text watermarks | GroupDocs

    Add text watermarks to rendered documents using Groupdocs.Viewer in your Python applications....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/viewer/python-net/add-text-w...
  9. Load from Stream | GroupDocs

    Load from Stream As an alternative to a local file, Redactor can open a document from stream. The following example demonstrates how to load and redact a document using Stream: final FileInputStream stream = new FileInputStream("sample.docx"); try { final Redactor redactor = new Redactor(stream); try { // Here we can use document instance to make redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor.close(); } } finally { stream.close(); }...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/redaction/java/load-from-str...
  10. Classify Raw Text | GroupDocs

    Simple IAB-2 text classification Call Classify method with a text as the first parameter to perform classification. Default taxonomy (IAB-2) and bestClassesCount (1) will be used. var response = classifier.Classify("Medicine is an important part of our lifes"); Console.WriteLine(response.BestClassName, response.BestClassProbability); Raw text classification with Documents taxonomy and 2 best classes to return Taxonomy, bestClassesCount and precisionRecallBalance could also be specified: var response = classifier.Classify("Medicine is an important part of our lifes", 2, Taxonomy....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/classification/net/classify-...