0.1.5 • Published 10 years ago
crop-image v0.1.5
img-to-canvas
Convert an img tag into an (optionally cropped) blob (works only in browser).
Usage
imgan<img>elementxthe distance along the x axis to begin croppingythe distance along the y axis to begin croppingwidththe width of the section you want to cropheightthe height of the section you want to cropscaleWidthscale the final image up/down to this width (optional - defaults towidth)scaleHeightscale the final image up/down to this height (optional - defaults toheight)
Returns a blob containing the cropped image.
Example
var img = document.querySelector('#img-to-crop')
var blob = cropImage(img, 20, 20, 40, 40)
upload(blob)Takes #img-to-crop and generates a blob that contains a 40x40 square of pixels 20 pixels into the image along each axis.