Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 655 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 655 Bytes

iCropper

iCropper is an image cropper written in pure javascript without any library dependency. It aims to be simple, fast and easy to use.

DEMO: http://supnate.github.io/icropper/demo.html

alt tag

Browser support

IE 7+, Chrome, Firefox, Opera, Safari

Usage

var ic = new ICropper(
	'cropperContainer'    //Container id
	,{
		ratio: 1    //Set aspect ratio of the cropping area
		,image: 'demo.png'
		,preview: [
				'previewSmall'  //Preview node id
		]
	}
);
//use bindPreview to dynamically add preview nodes
ic.bindPreview('previewBig');

License

MIT