我正在使用react-cropper并且需要固定的裁剪大小。尝试按如下方式进行:
<Cropper
ref='cropper'
src='babyanimal_open.jpg'
style={{height: 400, width: '100%'}}
// Cropper.js options
ready={this._ready.bind(this)}
cropBoxResizable={false}
cropBoxData={{ width: 100, height: 50 }}
guides={false}
crop={this._crop.bind(this)} />
结果是一个没有任何错误的空屏幕。