如何限制可裁剪区域的宽度和高度以输出相同尺寸的图像?

时间:2018-08-24 21:18:29

标签: jquery cropperjs

美好的一天-

我正在寻找使用jQuery Cropper.js插件来创建一个Web表单,该表单具有一个字段,用户可以在该字段中上传图片然后进行裁剪。

我希望输出的图像始终为580 x 580。

我想这样做,以便用户无法更改裁剪区域的大小。我希望它始终为580 x 580。

我还看到当我想要放大/缩小时,我看到了宽度和高度的变化。

我还看到其他人说我可以在服务器上调整图像的大小,但是如果图像被裁剪并且非常小,我就看不到它如何工作。放大图像将是一个问题。

这是我设置裁纸器的方式。

jQuery( image ).cropper({
  preview: '.img-preview',
  aspectRatio: 1 / 1,
  responsive: true,
  restore: true,
  modal: true,
  guides: false,
  center: true,
  dragMode: 'crop',
  movable: true,
  ready: function (event) { 
    jQuery(this).cropper('setData', { 
      width:  580,
      height: 580
    });
  },
  crop: function(event) {
        jQuery('#height').val(Math.round(event.detail.height));
        jQuery('#width').val(Math.round(event.detail.width));
        jQuery('#x').val(Math.round(event.detail.x));
        jQuery('#y').val(Math.round(event.detail.y));
        jQuery('#angle').val(Math.round(event.detail.rotate)); 
  }
});

我还有其他工作。我正在裁剪图像,将原始图像保存到服务器,裁剪图像,将裁剪后的图像转换为Blob,然后将其发送到服务器并让Imagick处理图像。

谢谢!

1 个答案:

答案 0 :(得分:0)

这是我最终用于jquery.cropper的设置:

jQuery( image ).cropper({
  preview: '.img-preview',
  viewMode:3,
  aspectRatio: 1 / 1,
  strict: true,
  guides: false,
  dragMode: 'move',
  movable: true,
  highlight: true,
  dragCrop: false,
  cropBoxResizable: true,
  data: { width: 580, height: 580 },
  autoCropArea: 0,
  minWidth: 580,
  minHeight: 580,
  maxWidth: 2400,
  maxHeight: 2400,
  ready: function (event) {

     jQuery(this).cropper('setData', { 
       width:  580,
      height: 580
     });

  },
  crop: function(event) {
        jQuery('#height').val(Math.round(event.detail.height));
        jQuery('#width').val(Math.round(event.detail.width));
        jQuery('#x').val(Math.round(event.detail.x));
        jQuery('#y').val(Math.round(event.detail.y));
        jQuery('#angle').val(Math.round(event.detail.rotate));
        jQuery('#scalex').val(Math.round(event.detail.scaleX)); 
        jQuery('#scaley').val(Math.round(event.detail.scaleY)); 
  }
});

在裁剪按钮上,我必须添加此按钮,这会将裁剪区域的大小设置为580x580。我正在使用它向用户显示确切的预览。

$('#btnCrop').click(function() {

  var croppedImageDataURL = image.cropper('getCroppedCanvas', {width:580, height:580}).toDataURL("image/jpg");
  result.append( jQuery('<img>').attr('src', croppedImageDataURL) );

});

我对appendFileandSubmit()动作有另一个功能。我在那添加了同样的东西,将图像缩小到580x580。

// click function to handle the image
function appendFileAndSubmit(){

  var form = document.getElementById("cropperform");

  var croppedImageDataURL = image.cropper('getCroppedCanvas', {width:580, height:580}).toDataURL("image/jpg");

  // Split the base64 string in data and contentType
  var block = croppedImageDataURL.split(";");
  // Get the content type of the image
  var contentType = block[0].split(":")[1];// In this case "image/gif"
  // get the real base64 content of the file
  var realData = block[1].split(",")[1];// In this case "R0lGODlhPQBEAPeoAJosM...."

  // Convert it to a blob to upload
  var blob = b64toBlob(realData, contentType);

  // Create a FormData and append the file with "image" as parameter name
  var formDataToUpload = new FormData(form);
  formDataToUpload.append("image", blob);



  /**
 * The following code should send 2 post parameters:
 * filename: providen by the text input
 * image: a file, dinamically added from a base64 string using javascript
 *
 * Is up to you how to receive the file in the Server side.
 */
  jQuery.ajax({
      url:"finish-image.php",
      data: formDataToUpload,// Add as Data the Previously create formData
      type:"POST",
      contentType:false,
      processData:false,
      cache:false,
      dataType:"json", // Change this according to your response from the server.
      error:function(err){
          console.error(err);
      },
      success:function(data){
          console.log(data);

          jQuery('#FinalStep .outputMsg').html('<p>Success!</p>');
      },
      complete:function(){
          console.log("Request finished.");
      }
  });

}

这会将580x580的图像提交到脚本进行处理。