Sort Score
Result 10 results
Languages All
Labels All
Results 1,771 - 1,780 of 4,685 for

as

(0.1 sec)
  1. Delete QR-Code signatures from documents | Grou...

    This article explains how to delete QR-Code electronic signatures with GroupDocs.Signature API....This article explains how to delete QR-Code electronic signatures with GroupDocs.Signature API.

    docs.groupdocs.com/signature/python-net/delete-...
  2. Remove Metadata from RTF using Java

    Learn how to efficiently remove metadata from RTF using Java with an example that shows how to delete metadata from RTF in Java without need of additional software....Learn how to efficiently remove metadata from RTF using Java with an example that shows how to delete metadata from RTF in Java without need of additional software.

    kb.groupdocs.com/metadata/java/remove-metadata-...
  3. Scan Barcode from PPTX using Java

    Learn how to scan barcode from PPTX using Java. To facilitate efficient and seamless barcode extraction, it includes an example to extract barcode from PPTX in Java....Learn how to scan barcode from PPTX using Java. To facilitate efficient and seamless barcode extraction, it includes an example to extract barcode from PPTX in Java.

    kb.groupdocs.com/parser/java/scan-barcode-from-...
  4. How to Convert Text to HTML in C#

    Do you want to do document conversion in a few steps? then review guidelines to convert Text to HTML in C# and sample code for C# convert Text to HTML capability....Do you want to do document conversion in a few steps? then review guidelines to convert Text to HTML in C# and sample code for C# convert Text to HTML capability.

    kb.groupdocs.com/conversion/net/how-to-convert-...
  5. How to Add Text Signature to DOCX using C#

    In this tutorial, we will provide you guide on how to add text signature to DOCX using C#. We will also provide a code example to insert text signature to DOCX in C#....In this tutorial, we will provide you guide on how to add text signature to DOCX using C#. We will also provide a code example to insert text signature to DOCX in C#.

    kb.groupdocs.com/signature/net/how-to-add-text-...
  6. Add Text Watermark to PDF Using Java

    Discover how to add text watermark to PDF using Java without need of extra software. Also, we'll provide you code example to insert text watermark to PDF in Java....Discover how to add text watermark to PDF using Java without need of extra software. Also, we'll provide you code example to insert text watermark to PDF in Java.

    kb.groupdocs.com/watermark/java/add-text-waterm...
  7. Convert PDF to Text using Node.js

    Learn how to convert PDF to Text using Node.js. This guide covers fAst and accurate text extraction, helping you seamlessly export PDF to Text in Node.js with eAse....Learn how to convert PDF to Text using Node.js. This guide covers fast and accurate text extraction, helping you seamlessly export PDF to Text in Node.js with ease.

    kb.groupdocs.com/conversion/nodejs/convert-pdf-...
  8. Latest release of GroupDocs.Viewer for .NET v3....

    In response to the feedback of our customers we have upgraded GroupDocs.Viewer for .NET and releAsed its new version 3.3.0. This version of the API hAs come with improved performance along with new features. Most of the issues found in older versions have also been fixed. Lets find out what is new in the latest releAse. New Features GroupDocs.Viewer for .NET v3.3.0 hAs come with following new features. Set custom font directories Get document information by guid Get document information by stream Get document information by Uri Remove all cache files Remove cache files older than specified time Get original files attached with email message Get image representation of email attachments Get html representation of email attachments For more information, pleAse visit product documentation: GroupDocs....In response to the feedback of our customers we have upgraded GroupDocs.Viewer for .NET and released its new version 3.3.0. This version of the API has come with improved performance along with new features. Most of the issues found in older versions have also been fixed. Lets find out what is new in the latest release. New Features GroupDocs.Viewer for .NET v3.3.0 has come with following new features. Set custom font directories Get document information by guid Get document information by stream Get document information by Uri Remove all cache files Remove cache files older than specified time Get original files attached with email message Get image representation of email attachments Get html representation of email attachments For more information, please visit product documentation: GroupDocs.

    blog.groupdocs.com/viewer/latest-release-groupd...
  9. Installation | GroupDocs

    GroupDocs hosts all Java APIs on GroupDocs Repository. You use the GroupDocs.Annotation for Java API directly in your Maven projects with simple configurations. Specify GroupDocs Repository Configuration First, you need to specify GroupDocs repository configuration/location in your Maven pom.xml As follows: XML GroupDocs Artifact Repository GroupDocs Artifact Repository https://releAses.groupdocs.com/java/repo/ Define GroupDocs.Annotation for Java API Dependency Then define GroupDocs.Annotation for Java API dependency in your pom.xml As follows:...GroupDocs hosts all Java APIs on GroupDocs Repository. You use the GroupDocs.Annotation for Java API directly in your Maven projects with simple configurations. Specify GroupDocs Repository Configuration First, you need to specify GroupDocs repository configuration/location in your Maven pom.xml as follows: XML <repositories> <repository> <id>GroupDocs Artifact Repository</id> <name>GroupDocs Artifact Repository</name> <url>https://releases.groupdocs.com/java/repo/</url> </repository> </repositories> Define GroupDocs.Annotation for Java API Dependency Then define GroupDocs.Annotation for Java API dependency in your pom.xml as follows:

    docs.groupdocs.com/annotation/java/installation/
  10. 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(); }...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...