Skip to content

Instantly share code, notes, and snippets.

View gangleton's full-sized avatar

Serena Wales gangleton

  • GovDelivery
  • San Francisco, CA/ New York, NY
View GitHub Profile
@gangleton
gangleton / GrabBlockee.js
Created September 10, 2012 18:36 — forked from mapmeld/GrabBlockee.js
GrabBlockee.js
// grab background: StreetView or uploaded
// 600 x 435 pixels
var bg = $('canvas')[1].parentNode.style.backgroundImage.substring(4);
bg = bg.substring(0, bg.length - 1);
var bgimage = new Image();
bgimage.onload = function(){
// grab image from foreground canvas
// 600 x 435 pixels to avoid menus
var uppercanv = $('canvas')[1].getContext('2d').getImageData(0, 0, 600, 435);