Cropper js反应固定的裁剪尺寸

时间:2017-04-23 07:22:19

标签: reactjs cropperjs

我使用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)} />

结果为空屏幕,没有任何错误。

3 个答案:

答案 0 :(得分:0)

也许您应该尝试这个软件包,它没有依赖关系,并且都适用于Web和移动客户端。

react-avatar-image-cropper:https://www.npmjs.com/package/react-avatar-image-cropper

答案 1 :(得分:0)

您需要更正引用,例如下面的地雷代码。

ref={cropper=>this.cropper = cropper}

答案 2 :(得分:0)

这个问题的答案是 ref is not a string ,使用

 let cropperRef=React.useRef();
 
 ref={cropperRef}