Skip to content

Instantly share code, notes, and snippets.

@nna774
Last active December 11, 2023 07:40
Show Gist options
  • Save nna774/f51a131cd2c4bba5c3eec3714e183015 to your computer and use it in GitHub Desktop.
Save nna774/f51a131cd2c4bba5c3eec3714e183015 to your computer and use it in GitHub Desktop.
乗りつぶしオンライン 画像をsvgからpngへ。
javascript:(function () {
var map = document.getElementById('map');
map.width = 1800; // 特に意味のある値ではない。小さいとガビるので、適当にこれぐらい。元々のmapはサイズの指定のないimgなので適当に画面幅とかになっている?
var c = document.createElement('canvas');
c.width = map.width;
c.height = map.height;
var ctx = c.getContext('2d');
ctx.drawImage(map, 0, 0);
map.src = c.toDataURL();
})();
// https://www.noritsubushi.org/common/map.php で使う。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment