pdf links

PDF Rendering
Convert PDF to Image (.NET)
Convert PDF to image on Android (Xamarin)
Convert PDF to image on iOS (Xamarin)
Convert PDF to image in Windows Store apps (.NET)
Convert PDF to image in Windows Phone apps (.NET)
PDF to image in Universal Windows Store apps (.NET)
Free PDF Viewer control for Windows Forms (.NET)
How to integrate PDF Viewer control in WPF app (.NET)
Creating WPF PDF Viewer supporting bookmarks (.NET)
Cross-platform PDF Viewer using GTK# (MONO)
Silverlight PDF viewer control (Silverlight 5)
Multithreaded PDF rendering (.NET)
Convert pdf to image in Silverlight app (C# sample)
How to set fallback fonts for PDF rendering (C#)
Avoiding the out-of-memory exception on rendering (C#)
PDF viewer single page application (WebAPI, AngularJS)
PDF viewer control for Windows 10 universal applications
Use custom ICC profile for CMYK to RGB conversion
PDF layers - separate images, text, annotations, graphics

PDF Forms Creation PDF Security
Conversion to PDF/A
Other topics
PDF Document Manipulation
PDF Content Generation
Fixed and Flow layout document API (.NET)
Creation of grids and tables in PDF (C# sample)
How to create interactive documents using Actions (C# sample)
Text flow effects in PDF (C# sample)
How to generate ordered and bulleted lists in PDF (C# sample)
Convert HTML to PDF using flow layout API (C# sample)
How to use custom fonts for PDF generation (.NET)
Create document with differently sized pages (C#)
Create PDF documents using MONO (C#/MONO/Windows/OSX)
How to use background images for content elements (C#/PDF Kit/FlowLayout)
Add transparent images to PDF document (C#)
Draw round rect borders in PDF documents(C#)
ICC color profiles and and ICC based colors in PDF (C#)
How to use bidirectional and right to left text in PDF (C#)
Create PDF documents from XML templates (C# sample)
How to resize PDF pages and use custom stamps (C#)
Add header and footer to PDF page (.NET sample)
How to use clipping mask for drawing on PDF page
Fill graphics path with gradient brushes in PDF (Shadings)
Apitron PDF Kit and Rasterizer engine settings
Add layers to PDF page (optional content, C# sample)
How to create free text annotation with custom appearance

PDF Content Extraction
PDF Navigation

PDF to TIFF conversion
Contact us if you have a PDF related question and we'll cover it in our blog.

2015-04-24

How to add watermark to pdf document

What is a watermark


Watermark is usually a semitransparent drawing added on top of the page content which can be created using various ways. This type of marking your documents becomes necessary when you have to indicate a particular purpose the document is designed for or to give some handling instructions. Examples are: “For internal reading only”, “Do not copy”, “Top Secret” etc.  It’s also useful for placing banners indicating the product name, the document was created by, or its evaluation state.

We’ll describe several watermarking approaches in this post and provide C# code samples which generate watermarks programmatically. 

Image watermark


This type of watermark is simple and convenient. You create an image containing your message and draw it over the page content.

Pros:
  • Easy to create and use, single image XObject can be shared by all pages
  • Provides a simple way to use any picture as watermark

Cons:
  • May affect resulting file by increasing its size significantly if image used is big enough
  • For the image to become transparent it has to include some kind of transparency mask and this fact can be a problem for non-transparency aware readers
  • Raster images don’t scale well, so this watermark may become pixelated when zoomed
  • Becomes a part of page content

See the C# code snippet below that shows how to add image watermark:

/// <summary>
/// Adds image watermark to PDF document.
/// </summary>
public void AddImageWatermark()
{
    // open existing document
    using (Stream file = File.OpenRead("Apitron PDF Kit in Action.pdf"))
    {
        FixedDocument doc= new FixedDocument(file);
        // register image XObject
        doc.ResourceManager.RegisterResource(new Image("watermark","watermark.png", true));

        // add image watermark for each page
        foreach (Page page in doc.Pages)
        {
            page.Content.AppendImage("watermark", 0, 0, page.Boundary.MediaBox.Width,
                page.Boundary.MediaBox.Height);
        }               

        // save watermarked file
        using (Stream stream = File.Create("image_watermark.pdf"))
        {
            doc.Save(stream);
        }
    }
}

The image below demonstrates the execution results:

Pic. 1 Image watermark sample (pdf)

Pic. 1 Image watermark sample

Form XObject watermark


This type of watermark assumes basic knowledge of PDF drawing system. Using this approach it’s easy to create vector-based drawings suitable for watermarking.

Pros:
  • Compactness, single watermark form XObject can be shared by all pages
  • Scales well if it contains vector drawings only, requires no transparency mask

Cons:
  • Requires some knowledge of PDF drawing system
  • Becomes a part of page content

Let’s create a simple text-based watermark using the C# code below:

public void AddFormXObjectWatermark()
{
    // open existing document
    using (Stream file = File.OpenRead("Apitron PDF Kit in Action.pdf"))
    {
        FixedDocument pdfDocument = new FixedDocument(file);
        // define watermark transparency using graphics state
        GraphicsState watermarkGS = new GraphicsState("gs0"){CurrentNonStrokingAlpha=0.2};
        // register graphics state object
        pdfDocument.ResourceManager.RegisterResource(watermarkGS);

        // create watermark form XObject
        FixedContent watermark = new FixedContent("watermark", pdfDocument.Pages[0].Boundary.MediaBox);               
        // register form XObject
        pdfDocument.ResourceManager.RegisterResource(watermark);

        // define text and transformation for it
        TextObject watermarkText = new TextObject(StandardFonts.Helvetica,48);
        watermarkText.AppendText("Apitron PDF Kit for .NET");               
        watermark.Content.ModifyCurrentTransformationMatrix(1,1.25,-1.25,1,50,50);

        // define current color and transparency               
        watermark.Content.SetGraphicsState("gs0");
        watermark.Content.SetDeviceNonStrokingColor(RgbColors.Red.Components);

        // draw watermark text
        watermark.Content.AppendText(watermarkText);                               

        // add watermark to each page
        foreach (Page page in pdfDocument.Pages)
        {
            page.Content.AppendXObject("watermark");
        }

        // save watermarked file
        using (Stream stream = File.Create("formXObject_watermark.pdf"))
        {
            pdfDocument.Save(stream);
        }
    }
}

The result is shown below. You may notice that it looks sharper because of its vector nature:

Pic. 2 Watermark added using form XObject

Pic. 2 Watermark added using form XObject


Watermark annotation


A watermark annotation can be used to represent graphics that is to be printed at a fixed size and position on a page, regardless of the dimensions of the printed page.

Pros:
  • Compactness, designed specifically for watermarks
  • Can be easily managed using page annotations dictionary
  • Requires no transparency mask

Cons:
  • Requires some knowledge of PDF drawing system and annotations

// Adds watermark annotation to the document.
public static void AddWatermarkAnnotation()
{
    // open existing document
    using (Stream file = File.OpenRead("Apitron PDF Kit in Action.pdf"))
    {
        FixedDocument pdfDocument = new FixedDocument(file);
        // define watermark transparency using graphics state and register this object
        GraphicsState watermarkGS = new GraphicsState("gs0"){CurrentNonStrokingAlpha=0.2};
        pdfDocument.ResourceManager.RegisterResource(watermarkGS);

        // create watermark content
        FixedContent watermark = new FixedContent("watermark", pdfDocument.Pages[0].Boundary.MediaBox);

        // define text and transformation for it
        TextObject watermarkText = new TextObject(StandardFonts.Helvetica, 48);
        watermarkText.AppendText("Apitron PDF Kit for .NET");
        watermark.Content.ModifyCurrentTransformationMatrix(1, 1.25, -1.25, 1, 50, 50);

        // define current color and transparency               
        watermark.Content.SetGraphicsState("gs0");
        watermark.Content.SetDeviceNonStrokingColor(RgbColors.Red.Components);

        // draw watermark text
        watermark.Content.AppendText(watermarkText);

        // create watermark annotation object for each pages
        foreach (Page page in pdfDocument.Pages)
        {                   
            WatermarkAnnotation annotation=new WatermarkAnnotation(page.Boundary.MediaBox);
            annotation.Appearance.Normal = watermark;
            page.Annotations.Add(annotation);
        }

        using (Stream stream = File.Create("watermark_annotation.pdf"))
        {
            pdfDocument.Save(stream);
        }
    }
}

The code creating watermark annotation produces the same results as the code that adds form XObject watermark.

Watermarks removal


It’s possible to remove watermarks from PDF file however we don’t recommend doing it because it can cause legal problems. Techniques used involve content analysis as well as annotations checks. There is no 100% reliable method, however, to remove all watermarking information using single algorithm, because watermarks might be hidden in PDF metadata or other less evident places.

For example, one may use a fully transparent image which would appear only when the document is being printed. Think of watermark as of piece of info hidden inside the PDF file, it can be just anything.

Conclusion


Adding watermarks is not a tricky task and, as you can see, it can be completed quite easy using Apitron PDF Kit for .NET component. This component is available for many platforms and makes you able to create applications for Windows and Windows Store, Xamarin.iOS and Xamarin.Android, OS X or any other system where a .NET/MONO can run. ASP.NET and Azure environments are supported as well. You may visit its product page or browse documentation here

Downloadable version of this article can be found by the following link [PDF].

No comments:

Post a Comment