Browse our Products

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.

 

GroupDocs.Watermark for .NET 24.6 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 150.3MB
  • Date Added:
  • 28/6/2024

Description

This ZIP file contains only the GroupDocs.Watermark for .NET 24.6 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Watermark for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

The latest release of GroupDocs.Watermark for .NET 24.6 (DLLs only) offers exciting improvements for developers working with repeated watermarks (tile mode). This version gives finer control over watermark spacing by introducing point-based configuration.

Precise Tile Watermarking

Easily control the distance between watermarks and lines in tile mode using points with this version of the .NET watermark API. Augment the visual appeal of your watermarked documents with this feature. 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*

Bug Fixes

  • Fixed the calculation of spacing between watermarks in the tile mode (WATERMARKNET-1712).
  • Fixed the calculation of spacing between lines in the tile mode (WATERMARKNET-1732).

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.

 English