Giter VIP home page Giter VIP logo

console.snapshot's Introduction

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. console.snapshot is a fork of the console.image and actually does something useful.

The demo

Usage

console.snapshot( <canvas> )

console.snapshot profiles a canvas for 1 iteration in the browser render loop or for one requestAnimationFrame tick and outputs the canvas context call stack and state changes to the console.

var canvas = document.getElementById("canvas");

console.snapshot(canvas);

Sample output;

console.screenshot( <canvas> [, <scale> ] )

console.screenshot takes in a HTMLCanvasElement, base64 encodes it using toDataURL and then outputs it to the canvas using console.image. You can also pass along an optional scale factor to scale down the outputted image for better viewing within the Dev tools.

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

	// ...
	//draw
	// ...

console.screenshot(canvas);
console.screenshot(canvas, 0.8); //Snapshot it and scale the output to 80% of the original size

Screenshot demo

console.image( <url> )

console.image outputs an image from a url into the console. See console.image.

console.image("http://i.imgur.com/wWPQK.gif");

Troubleshooting

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 or consider passing your image through a CORS proxy such as corsproxy.com.

License: MIT

console.snapshot's People

Contributors

adriancooney avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.