I am using rasterizehtml.js plugin to render my html into canvas! I got some issues but managed to fix all of them except the very important one. I am getting problems with toDataUrl(); it shows that it is blocked. I googled a lot. There were some stuff concerning that but i found no solution to my question.

The error is this one: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported

有帮助吗?

解决方案

Chrome and Safari both have issues reported for what you seem to be seeing. <foreignObject> elements in SVGs will taint the canvas for both browsers thus making toDataUrl fail. See limitations listed here.

Firefox is working fine.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top