通过'样式裁剪图像时出错?用Paperclip

时间:2016-01-21 16:21:41

标签: ruby-on-rails ruby paperclip

我收到此错误:

Image Paperclip::Errors::NotIdentifiedByImageMagickError 

...在我的模型中使用Paperclip styles选项裁剪图像时,Windows 10中的Ruby on Rails。

class Post < ActiveRecord::Base
  has_attached_file :img, styles: { large: "600x600>", medium: "300x300>", thumb: "100x100>" }
  validates_attachment_content_type :img, content_type: /\Aimage\/.*\Z/
end

但是,如果删除样式属性,它可以正常工作,即:

class Post < ActiveRecord::Base
  has_attached_file :img
  validates_attachment_content_type :img, content_type: /\Aimage\/.*\Z/
end

0 个答案:

没有答案