Lukas Holländer
Lukas Holländer
Yes, `html` can draw tables. Just call `addPage/setPage` before `html`.
Ah, you're right. There seems to be a bug in jsPDF. The `context2d.autoPaging` property is set to true (which is probably good for most use cases): https://github.com/MrRio/jsPDF/blob/cef97fb34eda41a8704c9f3983e680919a328ce4/src/modules/html.js#L451-L454 However, the autoPaging...
Textfields have their own `fontSize` property: http://raw.githack.com/MrRio/jsPDF/master/docs/module-AcroForm-AcroFormTextField.html. Use this.
If you make the text field large enough, the font size property should work. If there is too much text to fit the text field with the given font size,...
Yes, please share a jsfiddle.
Thanks for the fiddle. I think the issue is that the field is initially empty. When the field is not empty, the font size is correctly applied. However, as soon...
Mmh if I am right, `op += 4` sets all for 4 channels of this pixel to 0. And alpha=0 means this pixel is transparent, so the code in omggif...
@Mrfence97 thanks for digging into this. Did you make any progress?
jsPDF linearly samples the gradient colors, which is why very hard edges are washed out. As a fix we should probably implement the workaround @yGuy mentioned. When there are multiple...
Thanks for reporting this bug. Could you reduce your SVG to only what's necessary to reproduce the bug?