Add

Add(Watermark)

Ajoute un filigrane au document chargé.

public void Add(Watermark watermark)
Paramètre Taper La description
watermark Watermark Le filigrane à ajouter au document.

Remarques

En savoir plus sur l’ajout de filigranes : Ajouter des filigranes .

Exemples

Ajoutez un filigrane d’image et de texte à un document de tout type pris en charge.

using (Watermarker watermarker = new Watermarker(@"D:\input.pdf"))
{
    TextWatermark textWatermark = new TextWatermark("DRAFT", new Font("Arial", 19));
    textWatermark.HorizontalAlignment = HorizontalAlignment.Center;
    textWatermark.VerticalAlignment = VerticalAlignment.Top;
    textWatermark.ConsiderParentMargins = true;
    textWatermark.ForegroundColor = Color.Red;
    textWatermark.IsBackground = true;
    textWatermark.Opacity = 0.5;
    watermarker.Add(textWatermark);

    using (ImageWatermark imageWatermark = new ImageWatermark(@"D:\draft.png"))
    {
        imageWatermark.HorizontalAlignment = HorizontalAlignment.Center;
        imageWatermark.VerticalAlignment = VerticalAlignment.Bottom;
        imageWatermark.ConsiderParentMargins = true;
        imageWatermark.IsBackground = true;
        imageWatermark.Opacity = 0.5;
        watermarker.Add(imageWatermark);
    }

    watermarker.Save(@"D:\output.pdf");
}

Voir également


Add(Watermark, WatermarkOptions)

Ajoute un filigrane au document chargé à l’aide des options de filigrane.

public void Add(Watermark watermark, WatermarkOptions options)
Paramètre Taper La description
watermark Watermark Le filigrane à ajouter au document.
options WatermarkOptions Options supplémentaires à utiliser lors de l’ajout du filigrane.

Remarques

En savoir plus sur l’ajout de filigranes Ajouter des filigranes .

Exemples

Ajouter un filigrane d’image à une page particulière d’un document pdf.

PdfLoadOptions loadOptions = new PdfLoadOptions();
using (Watermarker watermarker = new Watermarker(@"C:\doc.pdf", loadOptions))
using (ImageWatermark watermark = new ImageWatermark(@"C:\watermark.png"))
{
    PdfXObjectWatermarkOptions options = new PdfXObjectWatermarkOptions();
    options.PageIndex = 0;

    watermarker.Add(watermark, options);
    watermarker.Save();
}

Voir également