Learn how to add watermark in Outlook email messages....Merger Product Solution GroupDocs...EmailContent . class ); File imageFile = new File ( "sample.jpg" );...
This article demonstrates how to save specific page range when annotating documents using GroupDocs.Annotation for .NET API....Merger Product Solution GroupDocs...( "input.pdf" )) { //Result file will be contain only 3 pages...
Following this guide you will learn how to adjust JPG images quality when rendering documents with Image Viewer by GroupDocs....Merger Product Solution GroupDocs...reduces the size of the output file. To adjust images quality, call...
This article explains how to add text watermark when rendering documents with GroupDocs.Viewer within your Java applications....Merger Product Solution GroupDocs...docx" )) { // Create an HTML file. HtmlViewOptions viewOptions...
Load documents directly from streams (URLs, FTP, etc.) in your Python applications using GroupDocs.Viewer....Merger Product Solution GroupDocs...stream without saving it as a file on a disk. You can use this...
The page describes how to load PDF, Word, Excel, PowerPoint documents from stream using GroupDocs.Annotation for Java....Merger Product Solution GroupDocs...// Add annotation and save to file annotator . add ( area ); annotator...
This article explains how to set timeout for loading external resources contained by a document with GroupDocs.Viewer within your Java applications....Merger Product Solution GroupDocs...setResourceLoadingTi ( 500 ); // Render a file. try ( Viewer viewer = new Viewer...
This section explains how to load document from URL with GroupDocs.Signature API....Merger Product Solution GroupDocs...( 100 ); // sign document to file signature . sign ( "SampleSigned...
The following example demonstrates how to load a File from a local disk.
advanced_usage.loading_Files.LoadFromLocalDisk
JavaScript try { const metadata = new groupdocs.metadata.Metadata("input.one"); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:
GroupDocs.Metadata for ....Merger Product Solution GroupDocs.../ Advanced Usage / Loading files / Load from a local disk Load...
This example demonstrates how to load a File from a stream.
advanced_usage.loading_Files.LoadFromStream
// Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata metadata = new Metadata(stream)) { // Extract, edit or remove metadata here } } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:
GroupDocs.Metadata for ....Merger Product Solution GroupDocs.../ Advanced Usage / Loading files / Load from a stream Load from...