Sort Score
Result 10 results
Languages All
Labels All
Results 1,821 - 1,830 of 29,607 for

groupdocs.search

(0.06 sec)
  1. Reduce image quality | Documentation

    This topic describes how to compress images in PDF file using the GroupDocs.Viewer .NET API (C#)....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  2. Extract pages | Documentation

    Following this guide you will learn how to extract pages from PDF, Word, Excel, PowerPoint and many other file types using GroupDocs.Merger for Node.js via Java....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/merger/nodejs-java/extract-p...
  3. Convert font formats | Documentation

    This article demonstrates how you can convert font formats with GroupDocs.Conversion for Java....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/conversion/java/convert/font/
  4. Select specific pages for rasterized PDF | Docu...

    Select specific pages for rasterized PDF Saving document as a rasterized PDF, you can specify starting page index (zero based) and the number of pages from this index to save. Also, you can change the Compliance level from PDF/A-1b, which is used by default, to PDF/A-1a: final Redactor redactor = new Redactor("MultipageSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/select-specif...
  5. Set image resolution | Documentation

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

    docs.groupdocs.com/viewer/net/optimization-pdf-...
  6. Compare multiple documents | Documentation

    Learn more about how to compare multiple Word documents or PowerPoint presentations simultaneously with GroupDocs.Comparison for Java....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/comparison/java/compare-mult...
  7. Set password for output document | Documentation

    This article explains how to set document password after files comparison within your Java applications using GroupDocs.Comparison for Java....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/comparison/java/set-password...
  8. User roles | Documentation

    The page describes how to implement user roles in GroupDocs.Annotation for .NET API....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/annotation/net/apply-roles/
  9. Render attachments | Documentation

    Render email attachments with GroupDocs.Viewer for Java in the same way as you would render any other documents...Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/viewer/java/how-to-convert-a...
  10. 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....Metadata Product Solution GroupDocs.Search Product Solution GroupDocs...

    docs.groupdocs.com/redaction/java/use-advanced-...