- Getting Started
- Installation
- Key Concepts
- Integrations
- Account & Billing
- Security & Privacy
- PDF Generation
- Reference
- Tutorials
- Troubleshooting
- Excel Generation
- Reference
- Troubleshooting
How to create a PDF with a Text-Based Watermark
"Draft" or "Confidential" watermarks are common on many PDFs. Fortunately, dynamically generated watermarked documents are easy to make with DocRaptor's HTML to PDF API!
Step 1: Make some Pages
To set up this example, we'll force the creation of three pages with the page-break-after
CSS property. This simply adds a line-break after each <div>
:
<div style="page-break-after: always;">Page 1</div>
<div style="page-break-after: always;">Page 2</div>
<div style="page-break-after: always;">Page 3</div>
For a document with actual content, you won't need these dummmy page breaks! We just wanted to show the watermark working across multiple pages.
Step 2: Define the Watermark
Let's make a really simple watermark:
<div id="watermark">PREVIEW</div>
Step 3: Add the Watermark
Here's where we leave regular CSS and HTML behind and showcase the power of DocRaptor's PDF engine:
#watermark {
flow: static(watermarkflow);
}
@page {
@prince-overlay {
content: flow(watermarkflow)
}
}
First, we use our custom flow
CSS property to remove the #watermark
block from the document flow. We put it into a separate flow that we've named watermarkflow
.
When defining custom flows, the HTML for the flow must appear in your HTML code before where you want to use it. For watermarks (and headers/footers), it's best to put the HTML at the top of your HTML code (see our full examples below).
Next, we take newly defined flow and put it into the @prince-overlay
page region. This particular page region is overlayed across the entire document page so it's perfect for a watermark. In this example, the same watermark is used on every page but we could also use another custom CSS propery, named pages, to create different watermarks on different pages or hide the watermarks on the intro pages.
Step 4: Style the Watermark
We added a really basic text watermark, so let's class it up with some more CSS styling:
#watermark {
flow: static(watermarkflow);
font-size: 120px;
opacity: 0.5;
transform: rotate(-30deg);
text-align: center;
}
And that's all it takes! Just a few line of code to apply a custom PDF watermark. See below for complete PDF generation code examples in various languages.
This watermark code will not work on test documents (meaning it also won't work with our public API key). You must have a DocRaptor account to use watermarks.
Using DocRaptor's API
Below are the basics of using DocRaptor's HTTP API. It can easily be used in any programming language, but if we don't have a native agent for your language, please let us know! That'll help us write the best examples and agents.
The API key shown here, YOUR_API_KEY_HERE
, actually works! Use it for testing without creating an account. The only requirement is test mode must be used (test
parameter set to true
).
To make documents, send a POST request to this URL:
https://YOUR_API_KEY_HERE@api.docraptor.com/docs
Send JSON-encoded API parameters (you'll need to set an HTTP header for Content-Type
as application/json
). These are the only required parameters:
{
"type": "pdf",
"document_content": "Hello World!"
}
Generating the Document with cURL
Here's a completely functional code sample for this tutorial:
cat <<-'DOCUMENT_OPTIONS' > docraptor_parameters.json
{
"test": false,
"document_type": "pdf",
"document_content": "<div id=\"watermark\">PREVIEW</div><div style=\"page-break-after: always;\">Page 1</div><div style=\"page-break-after: always;\">Page 2</div><div style=\"page-break-after: always;\">Page 3</div><style>#watermark {flow: static(watermarkflow);font-size: 120px;opacity: 0.5;transform: rotate(-30deg);text-align: center;}@page {@prince-overlay {content: flow(watermarkflow)}}</style>"
}
DOCUMENT_OPTIONS
curl https://YOUR_API_KEY_HERE@api.docraptor.com/docs \
--fail --silent --show-error \
--header "Content-Type:application/json" \
--data @docraptor_parameters.json \
> text-based-watermark.pdf
Downloads
Here are all the files you need to follow this tutorial:
Related Tutorials & Documentation
See the complete PDF tutorial list or review the documentation for additional info, such as generating asynchronous documents.