Learn R Programming

cpp11qpdf (version 1.3.5)

pdf_overlay_stamp: Overlay a pdf file into another pdf file

Description

Overlay a pdf file into another pdf file

Usage

pdf_overlay_stamp(input, stamp, output = NULL, password = "")

Value

a character vector with the path of the stamped pdf file

Arguments

input

path or url to the input pdf file

stamp

pdf file of which the first page is overlayed into each page of input

output

base path of the output file(s)

password

string with password to open pdf file

Examples

Run this code
pdf_file <- system.file("examples", "sufganiyot.pdf", package = "cpp11qpdf")
stamp_file <- system.file("examples", "header.pdf", package = "cpp11qpdf")
fout <- tempfile()
pdf_overlay_stamp(pdf_file, stamp_file, fout, "")

Run the code above in your browser using DataLab