mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-16 16:13:28 -05:00
6 lines
166 B
JavaScript
6 lines
166 B
JavaScript
var doc = new jsPDF();
|
|
doc.setFontSize(22);
|
|
doc.text(20, 20, 'This is a title');
|
|
|
|
doc.setFontSize(16);
|
|
doc.text(20, 30, 'This is some normal sized text underneath.'); |