Sort Score
Result 10 results
Languages All
Labels All
Results 3,101 - 3,110 of 6,144 for

file watermark

(0.9 sec)
  1. Heading level offset | GroupDocs

    Shift all heading levels in the Markdown output...Watermark Product Solution GroupDocs...annual-report.docx is a sample file used in this example. Click...

    docs.groupdocs.com/markdown/net/heading-offset/
  2. Filtering annotations by type on saving documen...

    This page describes how to filter annotation by type on saving File using GroupDocs.Annotation for Java API....Watermark Product Solution GroupDocs...// Add annotation and save to file annotator.save(outputPath, tmp1);...

    docs.groupdocs.com/annotation/java/filtering-an...
  3. How to load document from FTP | GroupDocs

    This section explains how to load document from FTP with GroupDocs.Signature API....Watermark Product Solution GroupDocs...= 100 }; // sign document to file signature . Sign ( "SampleSigned"...

    docs.groupdocs.com/signature/net/load-document-...
  4. How to load document from Amazon S3 Storage | G...

    This section explains how to load document from Amazon S3 Storage with GroupDocs.Signature API....Watermark Product Solution GroupDocs...= 100 }; // sign document to file signature . Sign ( outputFilePath...

    docs.groupdocs.com/signature/net/load-document-...
  5. Load text from string | GroupDocs

    This article explains how to load values from variables of string type when using GroupDocs.Comparison for Java....Watermark Product Solution GroupDocs...contains text to be compared, not file path). Instantiate the object...

    docs.groupdocs.com/comparison/java/load-text-fr...
  6. Extend supported extensions list | GroupDocs

    This article explains the method which can be used when for some reason Files have non-standard extensions or if its format is supported, but not pre-configured....Watermark Product Solution GroupDocs...be used when for some reason files have non-standard extensions...

    docs.groupdocs.com/redaction/net/extend-support...
  7. Troubleshooting | GroupDocs

    This section contains issues that you may face and solutions for them when processing Files with GroupDocs.Viewer....Watermark Product Solution GroupDocs...solutions for them when processing files with GroupDocs.Viewer. Chinese...

    docs.groupdocs.com/viewer/java/troubleshooting/
  8. Compare documents | GroupDocs

    This article demonstrates how to compare Word, Excel, PowerPoint, Outlook, OneNote, PDF, Image, HTML, AutoCAD, Visio, OpenDocument, OneNote documents using GroupDocs.Comparison for Java....Watermark Product Solution GroupDocs...comparison.Comparer ; import java.nio.file.Path ; // ... try ( Comparer...

    docs.groupdocs.com/comparison/java/compare-docu...
  9. How to save PDF document with other format | Gr...

    This article explains how to save signed PDF document with various File formats by GroupDocs.Signature API....Watermark Product Solution GroupDocs...true }; // sign document to file signature . Sign ( "SignedPdf...

    docs.groupdocs.com/signature/net/save-signed-pd...
  10. Getting known property descriptors | GroupDocs

    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....Watermark Product Solution GroupDocs...encountered in a particular package. a file to examine Get a collection...

    docs.groupdocs.com/metadata/java/getting-known-...