image/png
[paperclip] An error was received while processing: #<Paperclip::NotIdentifiedByImageMagickError: /var/folders/0f/hgplttnd7dg6q9m62qtbnpn00000gn/T/stream20120120-99159-ji1e70.png is not recognized by the 'identify' command.>
这是Uploads
的模型
class Upload < ActiveRecord::Base
acts_as_voteable
has_attached_file :image, :styles => { :thumb => "64x64" },
:storage => :s3,
:s3_credentials => "#{::Rails.root.to_s}/config/s3.yml",
:path => "/:style/:id/:filename"
validates :stage_id, :presence => true
validates :name, :presence => true
validates_attachment_presence :image
validates_attachment_size :image, :less_than => 10.megabytes
validates_attachment_content_type :image, :content_type => ['image/jpeg', 'image/png', 'image/gif', 'image/jpg', 'image/JPG']
我听说如果我删除:styles
它会起作用,但这违背了使用回形针的目的。我需要能够在每个图像上传时创建大小的缩略图。
谢谢。
确切发生在我身上,检查在 Rails 3 中使用回形针安装 RMagick 时出现问题
需要安装图像魔术(建议使用自制软件(,然后包含宝石"rmagick"。