font-size.js 167 B

123456
  1. var doc = new jsPDF();
  2. doc.setFontSize(22);
  3. doc.text(20, 20, 'This is a title');
  4. doc.setFontSize(16);
  5. doc.text(20, 30, 'This is some normal sized text underneath.');