function createUvumiCropper(cropMinWidth, cropMinHeight) {
    return new uvumiCropper('myImage', {
        keepRatio:true,
        //            coordinates:true,
        mini:{
            x:cropMinWidth,
            y:cropMinHeight
        },
        handles:[
            ['top','left'],
            ['top','right'],
            ['bottom','left'],
            ['bottom','right']
        ]
    });
}
;
