I'm trying to make a website that will generate PDFs.
It needs to:
- Upload a CSV file
- Fill a PDF fixed template with the data from the CSV file.
- Produce the PDF
- Download the PDF
E.g. PDF generation for a student's feedback.
- Upload CSV - student data (student number, name, grades, feedback)
- Fill the fixed PDF template with this data, e.g.:
Feedback
Name | Mike
Grade | A
Advice | Work on ...
- Generate PDF, MikeFeedback.PDF
- Allow download of PDF
Any help would be appreciated (links, snippets of code, libraries to use etc...) Languages I'm familiar with: Java, JavaScript, HTML, C#.