var print = document.createElement('button');
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
canvas.width = 300;
canvas.height = 100;
ctx.fillStyle = '#000';
ctx.font = '15px sans-serif';
ctx.fillText('Fill Text, 18px, sans-serif', 10, 20);
print.innerHTML = 'Print';
document.body.appendChild(print);
document.body.appendChild(canvas);
print.addEventListener('click', function () {
window.print();
});
http://jsfiddle.net/vpetrychuk/LWup5/ .
ご覧のとおり、キャンバス内のテキストは問題なく表示されますが、[印刷] ボタンをクリックして (ページを PDF として保存すると)、出力画像が見苦しくなります。
キャンバスの内容をぼやけずに印刷する機会はありますか?