Sort Score
Result 10 results
Languages All
Labels All
Results 2,891 - 2,900 of 7,829 for

document conversion api

(0.38 sec)
  1. Search text in Microsoft Office Word documents ...

    This article explains that how to search text from Microsoft Office Word (.doc, .docx) Documents...Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/parser/net/search-text-in-mi...
  2. Remove Text Watermark from RTF Using Python

    You can remove text watermark from RTF using Python with a simple workflow. This guide also explains how to delete watermark in RTF using Python with ease....Find Answers by API GroupDocs.Total Product Family GroupDocs...GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family...

    kb.groupdocs.com/watermark/python/remove-text-w...
  3. Load from local disk | GroupDocs

    This article explains how to load from local disk while using GroupDocs. Watermarks Api....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/watermark/net/load-from-loca...
  4. Remove Text Watermark from PDF Using Python

    You can remove text watermark from PDF using Python with simple steps. This guide also explains how to delete watermark in PDF using Python safely and easily....Find Answers by API GroupDocs.Total Product Family GroupDocs...GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family...

    kb.groupdocs.com/watermark/python/remove-text-w...
  5. Output format and password | GroupDocs

    Following this guide you will learn how to save edited Word Document with password or change output Document format using GroupDocs.Editor for .NET features....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/editor/net/output-format-and...
  6. Save in rasterized PDF | GroupDocs

    The following example demonstrates how to save the Document as a rasterized PDF file: final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use Document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/redaction/java/save-in-raste...
  7. GroupDocs.Conversion Product Family

    Find answers about converting Documents and images of various types using code on any platform....Find Answers by API GroupDocs.Total Product Family GroupDocs...GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family...

    kb.groupdocs.com/conversion/page/16/
  8. Reorder pages | GroupDocs

    Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/viewer/java/reorder-pages/
  9. Save overwriting original file | GroupDocs

    The following example demonstrates how to save the redacted Document, replacing an original file: // Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.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.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the Document in original format overwriting original file redactor.save(options); } } finally { redactor....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/redaction/java/save-overwrit...
  10. Extract text from Microsoft Office Word documen...

    To extract a text from Microsoft Office Word Documents getText and getText(int) methods are used. These methods allow to extract a text from the entire Document or a text from the selected page. TextOptions parameter is ignored for Microsoft Office Words Documents. Here are the steps to extract a text from Microsoft Office Word Document: Instantiate Parser object for the initial Document; Call getText method and obtain TextReader object; Read a text from reader....Conversion Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...

    docs.groupdocs.com/parser/java/extract-text-fro...