我收到此错误:
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