Skip to content

Instantly share code, notes, and snippets.

@zorn
Created July 12, 2011 16:04
Show Gist options
  • Save zorn/1078285 to your computer and use it in GitHub Desktop.
Save zorn/1078285 to your computer and use it in GitHub Desktop.
Resize a canvas using JavaScript
<canvas id="c" height="100" width="100" style="border:1px solid red"></canvas>
<script>
var c = document.getElementById('c');
alert(c.height + ' ' + c.width);
c.height = 200;
c.width = 200;
alert(c.height + ' ' + c.width);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment