mirror of
https://github.com/adriancooney/console.snapshot.git
synced 2025-12-08 21:26:19 +00:00
Update README.md
This commit is contained in:
parent
2c29984763
commit
9df7cd16b1
@ -1,7 +1,7 @@
|
||||
# console.snapshot( _canvas_ )
|
||||
### A simple canvas profiler
|
||||
|
||||
`console.snapshot` takes and inputted _<canvas>_ element and outputs a snapshot of it into the console. It makes debugging the canvas a little less dramatic. See [this demo](http://dunxrion.github.io/console.snapshot). `console.snapshot` is a fork of the [`console.image`](http://github.com/dunxrion/console.image) and actually does something useful.
|
||||
`console.snapshot` takes and inputted _<canvas>_ element and outputs a snapshot of it into the console. It makes debugging the canvas a little less dramatic. See [this demo](http://adriancooney.github.io/console.snapshot). `console.snapshot` is a fork of the [`console.image`](http://github.com/adriancooney/console.image) and actually does something useful.
|
||||
|
||||

|
||||
|
||||
@ -35,7 +35,7 @@ console.screenshot(canvas, 0.8); //Snapshot it and scale the output to 80% of th
|
||||

|
||||
|
||||
### console.image( _<url>_ )
|
||||
`console.image` outputs an image from a url into the console. See [console.image](http://github.com/dunxrion/console.image).
|
||||
`console.image` outputs an image from a url into the console. See [console.image](http://github.com/adriancooney/console.image).
|
||||
|
||||
```js
|
||||
console.image("http://i.imgur.com/wWPQK.gif");
|
||||
@ -45,4 +45,4 @@ console.image("http://i.imgur.com/wWPQK.gif");
|
||||
##### I'm getting "Uncaught Error: SecurityError: DOM Exception 18" when I try to snapshot the canvas.
|
||||
This is caused by printing a non CORS-enabled image on the canvas. The browser blocks the `toDataURL` function which is what `console.image` depends on to print the canvas. To fix this, see [this tutorial on HTML5Rocks](http://www.html5rocks.com/en/tutorials/cors/) or consider passing your image through a CORS proxy such as [corsproxy.com](http://corsproxy.com).
|
||||
|
||||
License: MIT
|
||||
License: MIT
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user