mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-03 00:55:32 -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.'); |