You can try changing the properties of the bounding box:
var bound = event.target.getBoundingRect();
And change the properties of the linked object, in your case there will be the size of the cropped image:
bound.width = 25;
bound.left = 32;
bound.top = 63;
bound.height = 3;
source
share