0
我試圖使用canvas.toDataURL()下載整個畫布圖像。該圖像是在畫布上呈現的地圖(打開圖層3)。canvas.toDataURL()下載大小限制
在Firefox中,我可以使用以下方法來下載地圖上的鏈接的點擊:
var exportPNGElement = document.getElementById('export_image_button');
if ('download' in exportPNGElement) {
map.once('postcompose', function(event) {
var canvas = event.context.canvas;
exportPNGElement.href = canvas.toDataURL('image/png');
});
map.renderSync();
} else {
alert("Sorry, something went wrong during our attempt to create the image");
}
但是在Chrome和Opera我打的鏈路上的大小限制。爲了使下載工作起來,我必須使窗口變小。
瀏覽器之間存在大小限制差異,Chrome特別限制。類似的帖子在這裏(2歲以上,現在)提出了廣泛的服務器端解決辦法:
canvas.toDataURL() for large canvas
是否有一個客戶端解決有關此呢?
這正是我想要縮小尺寸。 –
toBlob是相當有限的瀏覽器[鏈接](https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toBlob)就像一個FYI。取決於IE/Safari的重要性。 – hipkiss