Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
InstallationThe package is available at nuget.org and it can be installed via package manager console by executing following command:PM> NuGet\Install-Package GroupDocs.Watermark-Cloud
The package is available at nuget.org and it can be installed via package manager console by executing following command:
PM> NuGet\Install-Package GroupDocs.Watermark-Cloud
Use GroupDocs.Watermark Cloud SDK for .NET, REST API to enable your cloud-based C#, ASP.NET, & other .NET apps to search, edit, remove & add watermarks to documents of 40+ different file formats.
You do not need to install anything to get started with GroupDocs.Watermark Cloud SDK for .Net. Just create an account at GroupDocs for Cloud and get your application information.
Simply execute Install-Package GroupDocs.Watermark-Cloud from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Watermark assembly in your project. If you already have GroupDocs.Watermark Cloud SDK for .Net and want to upgrade it, please execute Update-Package GroupDocs.Watermark-Cloud to get the latest version.
Install-Package GroupDocs.Watermark-Cloud
Update-Package GroupDocs.Watermark-Cloud
Please check the GitHub Repository for common usage scenarios.
DOCX
// For complete examples and data files, please go to https://github.com/groupdocs-watermark-cloud/groupdocs-watermark-cloud-dotnet-samples // Get AppKey and AppSID from https://dashboard.groupdocs.cloud string MyAppKey = ""; string MyAppSid = ""; var configuration = new Configuration(MyAppSid, MyAppKey); var apiInstance = new ParseApi(configuration); var fileInfo = new FileInfo { FilePath = "documents/sample.docx" }; var options = new WatermarkOptions() { FileInfo = fileInfo, WatermarkDetails = new List < WatermarkDetails > { new WatermarkDetails { TextWatermarkOptions = new TextWatermarkOptions { Text = "New watermark text", FontFamilyName = "Arial", FontSize = 12 d, } } } }; var request = new AddRequest(options); var response = apiInstance.Add(request);