如何限制/验证回形针以上传具有固定尺寸的图像。
我想上传具有固定尺寸的图片,否则它应显示错误,显示尺寸不合适并以固定尺寸上传
答案 0 :(得分:0)
要获得图像的大小,您可以在模型中执行:
def image_valid?
g = Paperclip::Geometry.from_file(photo.to_file(:original))
g.width < 500 && g.height < 700 #change these numbers
(假设您的模型中有has_attached_file :photo
。)