Is there any way to center text with jsPDF?
Yes it’s possible. You could write a jsPDF plugin method to use. One quick example is this: (function(API){ API.myText = function(txt, options, x, y) { options = options ||{}; /* Use the options align property to specify desired text alignment * Param x will be ignored if desired text alignment is ‘center’. * Usage of … Read more