Сделал так
CropperJS.prototype.getSelectImage = function ( type ) {
//TODO save image
var img = new Image(),
select = this._select,
tempCanvas = document.createElement( "canvas" ),
ctx = tempCanvas.getContext( "2d" );
tempCanvas.width = select.width;
tempCanvas.height = select.height;
ctx.drawImage( this._image, select.x, select.y, select.width, select.height, 0, 0, select.width, select.height );
img.src = tempCanvas.toDataURL( "image/" + type );
return img;
};
Но неужели нет встроенного метода, которым это можно сделать?
Не могу найти