Sort Score
Result 10 results
Languages All
Labels All
Results 661 - 670 of 1,016 for

presentation redaction groupdocs

(0.05 sec)
  1. Add Image Watermark to DOCX Using Java

    Learn how to add image watermark to DOCX using Java without extra software installation. Also, we'll supply you code to insert image watermark to DOCX in Java....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/watermark/java/add-image-water...
  2. Add Area Annotation to JPG using Java

    In this topic, you'll discover how to add area annotation to JPG using Java. It encompasses detailed steps and code example to insert area annotation to JPG in Java....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/annotation/java/add-area-annot...
  3. Add Text Watermark to PDF Using C#

    Find out how to add text watermark to PDF using C# without the need for additional software. Plus, we'll supply you with the code to insert text watermark to PDF in C#....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/watermark/net/add-text-waterma...
  4. Load document from stream | Documentation

    There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, Groupdocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/parser/java/load-document-fr...
  5. Add Text Watermark to XLSX using C#

    This guide demonstrates the process of how to add text watermark to XLSX using C#. Additionally, you'll get a code example to insert text watermark to XLSX in C#....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/watermark/net/add-text-waterma...
  6. Add Image Annotation to JPG using Java

    This tutorial provides instructions on how to add image annotation to JPG using Java. We will provide you code to insert image annotation to JPG in Java....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/annotation/java/add-image-anno...
  7. Get supported file formats | Documentation

    This page describes how the search api is used to obtain a list of supported file types....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/search/java/get-supported-fi...
  8. Business Case of Manager-Client Contract System...

    Note This business case has been conceived for the demonstration purpose and serves well for a typical manager-client system. There may be simpler or complex scenarios in real life businesses. Business Case There are many managers offering their services. There are multiple clients in the market. A manager can sign multiple contracts and start working. A contract may contain multiple clients. The data is fetched from custom objects and report is generated....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/assembly/java/business-case-...
  9. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/getting-known-...
  10. Document rendering basics | Documentation

    This section describes how to use Groupdocs.Viewer for Node.js to convert different document types to PDF, HTML, PNG, and JPEG formats....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/viewer/nodejs-java/document-...