これは私の最後のコードです:
var canvas = document.getElementById('my-canvas');
var ctx = canvas.getContext("2d");
// Draw the window at the top left of canvas, width=100, height=200, white background
ctx.drawWindow(window, 0,0, 100, 200, "rgb(255,255,255)");
// Open another window with the thumbnail as an image
open(canvas.toDataURL("image/png"));
html コード:
<canvas id="my-canvas"/><br/>
注: Web ページの完全なスクリーンショットを取得するためにさまざまなコードを試してきましたが、このコードでは Web ページの画像の一部しか取得できません。
誰かがこれで私を助けることができますか? FF、Opera、および Safari で使用するには、簡単なスクリーンショット コードが必要です (Google Chrome ブラウザー用の特定のコードが完全に動作しています)。