如何限制图片上传高度& Rails文件_field助手上的宽度?

时间:2017-05-30 17:49:14

标签: ruby-on-rails image file-upload upload height

目前我有以下内容上传图片:

<%= file_field "form_x", "image", accept: 'image/png,image/gif,image/jpeg' %>

在我的方法中,我可以使用此

访问图像
params[:form_x][:image]

通过size阅读,访问图片的params[:form_x][:image].size。但是如何按像素检查图像的高度和宽度?我希望能够按尺寸以及高度和宽度限制图像。

1 个答案:

答案 0 :(得分:0)

正确的方法是在客户端进行。你需要一些javascript,这是一个例子。

您无法从参数获取图像宽度和高度。

<子> 在服务器上执行此操作的唯一方法是使用carrierwave for example进行一些预处理,但更好的是在客户端限制图像而不上传

html

<input id="image" name="img" type="file" />
/*  */
<img src="#" alt="This image is going to load" id="image_on_load" />
<p id='image_info_width'>    </p>
<p id='image_info_heigth'>    </p>

js代码:

// The upload listner function
$('#image').on('change', function() {
  var img = document.getElementById('image_on_load');
  var reader = new FileReader();
  // add uploaded image to the img element
  reader.onloadend = function() {
    $('#image_on_load').prop('src', reader.result)
  }
  reader.readAsDataURL(this.files[0]);
  // listen onload event and get dimension
  img.onload = function(image) {

    $('#image_info_width').text('Width: ' + image.target.width)
    $('#image_info_heigth').text('Height: ' + image.target.height)
    // here you able to upload or reject
    // file accourding to dimension
  }
});

在此示例中,图片已上传,您可以获得宽度和高度。

JSFIDDLE

阅读Rails中JS的工作原理 7 Must-Reads about JavaScript with Ruby on Rails