33

drawImage()1836 x 3264 の画像をキャンバスにして 739 x 1162 にサイズ変更したい。

ドキュメントを読んだ後、これは次の方法で達成できると思いました。

ctx.drawImage(image, 0, 0, 739, 1162);

私も試しました:

ctx.drawImage(image, 0, 0, 1836, 3264, 0, 0, 739, 1162);

どちらも画像を縮小するのではなく、画像全体のごく一部のみを表示しています。

1836 x 3264 -> 739 x 1162 からサイズ変更する値を渡すにはどうすればよいですか?

4

1 に答える 1

38

あなたが持っているものは正しいように見えるので、どこかでタイプミスを再確認するかもしれません.

[追加の考え: あなたの画像は本当に 1836x3264 であり、3264x1836 ではありませんか。]

ここに作業コードとフィドルがあります: http://jsfiddle.net/m1erickson/MLGr4/

<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>

<style>
    body{ background-color: ivory; }
    canvas{border:1px solid red;}
</style>

<script>
$(function(){

    var canvas=document.getElementById("canvas");
    var ctx=canvas.getContext("2d");

    img=new Image();
    img.onload=function(){
        canvas.width=400;
        canvas.height=300;
        ctx.drawImage(img,0,0,img.width,img.height,0,0,400,300);
    }
    img.src="http://www.onestopwebmasters.com/wp-content/uploads/2011/06/eitai-bridge.jpg";

}); // end $(function(){});
</script>

</head>

<body>
    <canvas id="canvas" width=100 height=100></canvas>
</body>
</html>
于 2013-03-04T02:30:02.223 に答える