I'm trying to dynamically create a PDF from a background image and some text from a database.
When a user visits our site, they can click on a button to print a voucher that can be redeemed in store. The voucher consists of a background image and some text printed over the top of it; Name, Voucher Code (generated from a hash algorithm) and Email Address.
Currently, the user can print this out right away or have it emailed. However, I want to turn the voucher into a PDF so that the user can save the voucher for later.
The site is built in classic ASP, so i would need a solution that can create a PDF of the voucher image and the text from the database.
I wondered if anyone had any suggestions on how I could approach this?
Thank you.