crop-image
v0.1.5
Published
Takes an img tag and crops it according to the specified dimensions/offsets
Downloads
23
Readme
img-to-canvas
Convert an img tag into an (optionally cropped) blob (works only in browser).
Usage
img
an<img>
elementx
the distance along the x axis to begin croppingy
the distance along the y axis to begin croppingwidth
the width of the section you want to cropheight
the height of the section you want to cropscaleWidth
scale the final image up/down to this width (optional - defaults towidth
)scaleHeight
scale 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.