Sort Score
Result 10 results
Languages All
Labels All
Results 1,921 - 1,930 of 5,246 for

groupdocs.watermark,

(0.1 sec)
  1. Convert JPG to XPS using C#

    This tutorial will show you how to convert JPG to XPS using C#. Also, code example will be provided to export JPG to XPS using C# without installing extra software....This tutorial will show you how to convert JPG to XPS using C#. Also, code example will be provided to export JPG to XPS using C# without installing extra software.

    kb.groupdocs.com/conversion/net/convert-jpg-to-...
  2. Convert JPG to PPTX using C#

    This tutorial demonstrates how to convert JPG to PPTX using C#. Also, code example will be supplied to export JPG to PPTX using C# without extra software installation....This tutorial demonstrates how to convert JPG to PPTX using C#. Also, code example will be supplied to export JPG to PPTX using C# without extra software installation.

    kb.groupdocs.com/conversion/net/convert-jpg-to-...
  3. Convert EML to HTML using Java

    Efficiently convert EML to HTML using Java without installing extra tool. Enhance document processing in projects with this guide on how to export EML to HTML using Java....Efficiently convert EML to HTML using Java without installing extra tool. Enhance document processing in projects with this guide on how to export EML to HTML using Java.

    kb.groupdocs.com/conversion/java/convert-eml-to...
  4. How to Convert TXT to XLSX using C#

    This article presents necessary steps to convert TXT to XLSX using C# on frequently used operating systems along with code example to generate XLSX from TXT using C#....This article presents necessary steps to convert TXT to XLSX using C# on frequently used operating systems along with code example to generate XLSX from TXT using C#.

    kb.groupdocs.com/conversion/net/how-to-convert-...
  5. How to Convert Excel to HTML using Java

    This topic includes sample Java program that expalins how to convert Excel to HTML using Java along with comprehensive instructions to export Excel to HTML in Java....This topic includes sample Java program that expalins how to convert Excel to HTML using Java along with comprehensive instructions to export Excel to HTML in Java.

    kb.groupdocs.com/conversion/java/how-to-convert...
  6. Convert PDF to PCL using C#

    Let's learn how to convert PDF to PCL using C# without installing extra software. The conversion library used to export PDF to PCL using C# is platform-independent....Let's learn how to convert PDF to PCL using C# without installing extra software. The conversion library used to export PDF to PCL using C# is platform-independent.

    kb.groupdocs.com/conversion/net/convert-pdf-to-...
  7. Get supported file formats | Documentation

    This article shows that how to get the list of all supported file formats of GroupDocs.Redaction by using Java....This article shows that how to get the list of all supported file formats of GroupDocs.Redaction by using Java.

    docs.groupdocs.com/redaction/java/get-supported...
  8. Get supported file formats | Documentation

    This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your .NET applications....This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your .NET applications.

    docs.groupdocs.com/comparison/net/get-supported...
  9. Save in rasterized PDF | Documentation

    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(); }...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(); }

    docs.groupdocs.com/redaction/java/save-in-raste...
  10. Save overwriting original file | Documentation

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

    docs.groupdocs.com/redaction/java/save-overwrit...