圖片是放在又拍雲上的,當canvas呼叫圖片,最後todataURl會報錯,有什麼解決方法嗎?
百度也看了很多解決方法但是都不能實現。 。
報錯訊息:
Uncaught DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported.
高洛峰2017-05-16 13:38:18
如果是new Image()
的話,要加上設定:
// 引用外部图片,需设置 crossOrigin 属性,否则 toDataURL 调用异常
image.setAttribute('crossOrigin', 'anonymous');
參考問題:/q/10...