Custom font faces in jsPDF?
I found this was possible by modifying jsPDF.js to expose the existing addFont method in the public API. In jsPDF.js, look for: //————————————— // Public API Add the following: API.addFont = function(postScriptName, fontName, fontStyle) { addFont(postScriptName, fontName, fontStyle, ‘StandardEncoding’); }; I put this method near other font methods for clarity – API.setFont, API.setFontSize, API.setFontType, etc. … Read more