GroupDocs.Watermark-Cloud 19.12.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package GroupDocs.Watermark-Cloud --version 19.12.0
NuGet\Install-Package GroupDocs.Watermark-Cloud -Version 19.12.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GroupDocs.Watermark-Cloud" Version="19.12.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GroupDocs.Watermark-Cloud --version 19.12.0
#r "nuget: GroupDocs.Watermark-Cloud, 19.12.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GroupDocs.Watermark-Cloud as a Cake Addin
#addin nuget:?package=GroupDocs.Watermark-Cloud&version=19.12.0

// Install GroupDocs.Watermark-Cloud as a Cake Tool
#tool nuget:?package=GroupDocs.Watermark-Cloud&version=19.12.0

.NET Cloud REST API to Watermark Documents

Version 19.12 Nuget GitHub

banner

Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial

Use this 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.

Cloud Document Watermarking Features

  • Add text or image watermarks to documents of supported formats.
  • Create watermarks for specific pages only.
  • Specify the physical attributes of the watermark, e.g., size, font, color, etc.
  • Search for the collection of the image or text-based watermarks inside a document.
  • Edit properties of the existing editable watermarks.
  • Remove watermarks from specific pages or remove specific watermarks from the document.

Supported File Formats

  • Word Processing Format: DOC, DOCX, DOCM, DOT, DOTM, DOTX, ODT, RTF
  • Spreadsheet Format: XLS, XLT, XLSX, XLSM, XLTX, XLTM
  • Presentation Format: PPT, PPTX, PPTM, PPS, PPSX, PPSM, POTX, POTM
  • Microsoft Visio: VSD, VDX, VSDX, VSTX, VSS, VSSX, VSDM, VSSM, VSTM, VTX, VSX
  • Fixed Layout: PDF
  • Image: BMP, GIF, JPG, JPEG, JPE, JP2, PNG, TIFF, WEBP

Get Started

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.

Please check the GitHub Repository for common usage scenarios.

Add Text Watermarks to a DOCX File using C# Code

// 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);

Product Page | Docs | Demos | Swagger UI | Examples | Blog | Search | Free Support | Free Trial

Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
23.8.0 173 8/29/2023
22.12.0 329 12/26/2022
22.3.0 448 3/23/2022
19.12.0 766 12/19/2019