Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用附件,结合 Rails 上的 cloudinary - 有没有办法在上传之前限制上传的图像文件的大小(宽度和高度)?
您可以使用传入转换来限制上传图像的尺寸。较大的图像将按比例缩小,例如
<%= form.attachinary_file_field :image, cloudinary: { transformation: { width: 200, height: 200, crop: :limit } } %>