【发布时间】:2010-11-29 18:19:13
【问题描述】:
我的模型上有以下代码:
has_attached_file :photo, :styles => { :small => "150x150#" }, :storage => :s3, :s3_credentials => "#{RAILS_ROOT}/config/s3.yml", :path => "/photo/:id/:style/:filename", :s3_headers => { 'Cache-Control' => 'max-age=315576000', 'Expires' => 10.years.from_now.httpdate }
上传图片时,只保存原图,样式无效。没有生成小文件。
【问题讨论】:
-
假设你已经安装了 rmagick?
-
是的,ImageMagick 已安装,但可能没有正确配置?我可以从命令行使用它,而且我没有收到回形针的抱怨。
标签: ruby ruby-on-rails-3 imagemagick paperclip resize-image