Created
February 10, 2012 09:11
-
-
Save aratak/1787951 to your computer and use it in GitHub Desktop.
dataurl for image
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
('HTMLCanvasElement' in this) && (function () { | |
HTMLCanvasElement.prototype.trim = function (opts) { | |
opts = opts || {}; | |
var | |
element = this, | |
bound = { | |
top: null, | |
left: null, | |
right: null, | |
bottom: null | |
}, | |
ctx = element.getContext('2d'), | |
newctx = document.createElement('canvas').getContext('2d'), | |
pixels = ctx.getImageData(0, 0, element.width, element.height), | |
l = pixels.data.length, | |
i, x, y; | |
for (i = 0; i < l; i += 4) { | |
if (pixels.data[i + 3] !== 0) { | |
x = (i / 4) % element.width; | |
y = ~~((i / 4) / element.width); | |
if (bound.top === null) { | |
bound.top = y; | |
} | |
if (bound.left === null) { | |
bound.left = x; | |
} else if (x < bound.left) { | |
bound.left = x; | |
} | |
if (bound.right === null) { | |
bound.right = x; | |
} else if (bound.right < x) { | |
bound.right = x; | |
} | |
if (bound.bottom === null) { | |
bound.bottom = y; | |
} else if (bound.bottom < y) { | |
bound.bottom = y; | |
} | |
} | |
} | |
var | |
trimmedHeight = Math.max(bound.bottom - bound.top, 1), | |
trimmedWidth = Math.max(bound.right - bound.left, 1), | |
trimmedData = ctx.getImageData(bound.left, bound.top, trimmedWidth, trimmedHeight), | |
offsetX = 0, | |
offsetY = 0; | |
if (opts.minAspectRatio && opts.minAspectRatio > (trimmedWidth / trimmedHeight)) { | |
var trimmedWidthNew = trimmedHeight * opts.minAspectRatio; | |
offsetX = (trimmedWidthNew - trimmedWidth) / 2; | |
trimmedWidth = trimmedWidthNew; | |
} | |
else if (opts.maxAspectRatio && opts.maxAspectRatio < (trimmedWidth / trimmedHeight)) { | |
var trimmedHeightNew = trimmedWidth / opts.maxAspectRatio; | |
offsetY = (trimmedHeightNew - trimmedHeight) / 2; | |
trimmedHeight = trimmedHeightNew; | |
} | |
if (opts.minWidth && opts.minWidth > trimmedWidth) { | |
var trimmedWidthNew = opts.minWidth; | |
offsetX += (trimmedWidthNew - trimmedWidth) / 2; | |
trimmedWidth = trimmedWidthNew; | |
} | |
if (opts.minHeight && opts.minHeight > trimmedHeight) { | |
var trimmedHeightNew = opts.minHeight; | |
offsetY += (trimmedHeightNew - trimmedHeight) / 2; | |
trimmedHeight = trimmedHeightNew; | |
} | |
newctx.canvas.width = trimmedWidth; | |
newctx.canvas.height = trimmedHeight; | |
newctx.putImageData(trimmedData, offsetX, offsetY); | |
return newctx.canvas; | |
}; | |
})(); | |
var holder = document.documentElement, | |
ta = null; | |
holder.ondragover = function () { return false; }; | |
holder.ondragend = function () { return false; }; | |
holder.ondrop = function (e) { | |
e.preventDefault(); | |
var file = e.dataTransfer.files[0], | |
reader = new FileReader(); | |
reader.onload = function (event) { | |
var img = new Image(); | |
img.onload = function () { | |
var ctx = document.createElement('canvas').getContext('2d'); | |
ctx.canvas.width = this.width; | |
ctx.canvas.height = this.height; | |
ctx.drawImage(this, 0, 0); | |
var newCanvas = ctx.canvas.trim(); | |
if (ta !== null) { | |
document.body.removeChild(ta); | |
} | |
ta = document.createElement('textarea'); | |
ta.value = newCanvas.toDataURL('image/png'); | |
document.body.appendChild(ta); | |
}; | |
img.src = event.target.result; | |
}; | |
reader.readAsDataURL(file); | |
return false; | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment