cobiss-obrazec/js/font-size.js

7 lines
167 B
JavaScript
Raw Normal View History

2022-04-19 13:20:36 +00:00
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.');