jsPDF icon indicating copy to clipboard operation
jsPDF copied to clipboard

Client-side JavaScript PDF generation for everyone.

Results 276 jsPDF issues
Sort by recently updated
recently updated
newest added

Fixes: [#3753](https://github.com/parallax/jsPDF/issues/3753) This PR adds an option in the methods _decodeColorString_ and _getTextColor_ with the objective to return different formats of color. The necessary tests were implemented to reflect those...

Fixes: #3753 this pr fixes the return value of the getTextColor(), where the default value is set to be 0, if 1 is passed then rgb value is returned else...

Fixing align in cell. Thanks for contributing to jsPDF! Please follow our [Contribution Guidelines](https://github.com/MrRio/jsPDF/blob/master/CONTRIBUTING.md#pull-requests) when creating a pull request.

I create a Nodelist of sections in html by using querySelectAll and then iterate through it to generate image. I then create pages depending on the element height, finally saving...

Steps to reproduce: 1. open sandbox http://raw.githack.com/MrRio/jsPDF/master/ 2. insert code: var doc = new jsPDF(); doc.text('CheckBox:', 10, 125); var checkBox = new jsPDF.AcroForm.CheckBox(); checkBox.fieldName = "CheckBox1"; checkBox.Rect = [50, 118,...

Bug
help wanted
difficulty:medium

Example borrowed from #2701: ``` var doc = new jsPDF() var ctx = doc.context2d ctx.strokeText(`font: ${ctx.font}, line: ${ctx.lineWidth}`, 10, 10) ctx.font = ctx.font // font size is changed(16px → 10px)...

Bug
help wanted
difficulty:medium