Po obróceniu obrazu za pomocą kanwy, zostanie odcięty - jak tego uniknąć? Zrobiłem już element canvas większy niż obrazek, ale wciąż odcina on krawędzie.Jak uniknąć obcinania obrazu przy obrocie o <canvas>?
przykład:
<html>
<head>
<title>test</title>
<script type="text/javascript">
function startup() {
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var img = new Image();
img.src = 'player.gif';
img.onload = function() {
ctx.rotate(5 * Math.PI/180);
ctx.drawImage(img, 0, 0, 64, 120);
}
}
</script>
</head>
<body onload='startup();'>
<canvas id="canvas" style="position: absolute; left: 300px; top: 300px;" width="800" height="800"></canvas>
</body>
</html>