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.
We are excited to announce the release of GroupDocs.Watermark for .NET 24.6 (MSI)! This update empowers developers with greater control over watermark placement in tile mode.
Meticulously control the distance between watermarks and lines within the tile mode using points with the latest .NET watermark API release. This feature enhances the visual appeal and professionalism of your watermarked documents. The following code sample showcases watermarking with tile options using points in C#.
using (Watermarker watermarker = new Watermarker("test.pdf", new PdfLoadOptions())) { // Create a text watermark with a specified text and font var watermark = new TextWatermark("watermark", new Font("Arial", 48)); // Configure TileOptions watermark.TileOptions = new TileOptions() { LineSpacing = new MeasureValue() { MeasureType = TileMeasureType.Points, Value = 100 }, WatermarkSpacing = new MeasureValue() { MeasureType = TileMeasureType.Points, Value = 70 }, }; watermark.Opacity = 0.3; watermark.RotateAngle = -45; // Add the text watermark with additional options PdfArtifactWatermarkOptions textWatermarkOptions = new PdfArtifactWatermarkOptions(); watermarker.Add(watermark, textWatermarkOptions); // Save the watermarked document and capture the watermarking result WatermarkResult watermarkResult = watermarker.Save("result.pdf"); }
Source*
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Watermark for .NET 24.6 Release Notes.