Skip to content

Instantly share code, notes, and snippets.

@aleksplus
aleksplus / gist:a0a86600e32eaea574e7
Created January 9, 2016 23:06
Cropping an image client-side using the Canvas
// From README of: https://github.com/DominicTobias/react-image-crop
loadImage: function(src, callback) {
var image = new Image();
image.onload = function(e) {
callback(image);
image = null;
};
image.src = src;