Closed Kresko2002 closed 4 years ago
Is there an option to keep the original size (for example original width) of the picture and just crop the aspect ratio no matter the size of the container?
vue-croppa.js
change var w = this.useAutoSizing ? this.realWidth : this.width; to var w = this.naturalWidth;
var w = this.useAutoSizing ? this.realWidth : this.width;
var w = this.naturalWidth;
Is there an option to keep the original size (for example original width) of the picture and just crop the aspect ratio no matter the size of the container?