0
私は、ユーザがアップロードした画像を切り抜くためにjavascript cropperjsを使用しています。クロップ表示では、クロップボックスの外側の画像は表示されません。下の画像に示されているのサンプル -CropperJS:画像の外枠のクロップボックスが表示されない
私クロッパーconfigがある -
var cropper_opts = {
aspectRatio: 1/1,
viewMode: 0,
crop: function(e){}, //to show the crop box manually
minCanvasWidth: 0,
minCanvasHeight: 0,
minCropBoxWidth: 0,
minCropBoxHeight: 0,
minContainerWidth: 860, //decides the size of image
minContainerHeight: 355, //decides the size of image
autoCropArea: 1,
modal: true, // Show the black modal
guides: true, // Show the dashed lines for guiding
center: true, // Show the center indicator for guiding
highlight: true, // Show the white modal to highlight the crop box
background: true, // Show the grid background
}
はこれを解決するために私を助けてください。