I use the XSLT and CSS to PDF Transformation Scenario and have specified a background image for the title page
Code: Select all
@page front-page{
background-image: url("../img/title.png");
}
I tried to make a new parameter "titlepage" in the transformation settings and refer to it with
Code: Select all
@page front-page{
background-image: url(${titlepage});
}
How can we pass the filename to transformation?
tia
Jörn