.NET Cloud SDK for Watermarks Manipulation

Cloud REST API for watermarks management on images and documents of popular file formats within .NET applications.

  • GroupDocs.Watermark for cURL
  • GroupDocs.Watermark for Java
Start Free Trial

GroupDocs.Watermark Cloud SDK for .NET empowers you to programmatically manage text & image watermarks on a wide range of document formats including: PDF, Microsoft Word, Excel, PowerPoint, Visio, OpenDocument, JPEG, BMP, PNG, TIFF and many more.

It supports working with all most demanded watermarking methods to let you add, remove, search and replace watermarks from images and documents of supported formats. The older watermarks already added inside the document can also be removed, no matter if they were added by third party tools. It’s easier to customize watermark formatting settings by adjusting text style, font, size, color or position with minimal lines or code.

GroupDocs.Watermark Cloud SDK for .NET is built as a layer on the top of GroupDocs.Watermark Cloud REST API, allowing a higher level of abstraction so that you don’t need to know the REST API to use this SDK.

Advanced watermark management API Features

Search and delete already added watermarks from supported file formats

Add or Remove Watermark from a specific pages or whole document

Find text or image-based watermarks inside the documents

Manage formatting settings to manipulate watermarks

Cloud REST API to be used with any language or platform

Secured watermark management solution

Add Text Watermark to the Document – C#

//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
public class AddTextWatermarks
    {
        public static void Run()
        {
            var configuration = new Configuration(Common.MyAppSid, Common.MyAppKey);
            var apiInstance = new WatermarkApi(configuration);

            try
            {
                var fileInfo = new FileInfo
                {
                    FilePath = "documents/sample.docx",
                    StorageName = Common.MyStorage
                };

                var options = new WatermarkOptions()
                {
                    FileInfo = fileInfo,
                    WatermarkDetails = new List
                    {
                        new WatermarkDetails
                        {
                            TextWatermarkOptions = new TextWatermarkOptions
                            {
                                Text = "New watermark text",
                                FontFamilyName = "Arial",
                                FontSize = 12d,
                            }
                        }
                    }
                };

                var request = new AddRequest(options);

                var response = apiInstance.Add(request);
                Console.WriteLine("Resultant file path: " + response.Path);
            }
            catch (Exception e)
            {
                Console.WriteLine("Exception while calling WatermarkApi: " + e.Message);
            }
        }
    }
}

Support and Learning Resources

GroupDocs.Watermark offers document viewing APIs for other popular development environments

  English
4bde1f0