Rails 3.0.1和Paperclip - 图像没有调整大小

时间:2010-11-29 18:19:13

标签: ruby ruby-on-rails-3 imagemagick paperclip resize-image

我的模型上有以下代码:

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 }

上传图像时,仅保存原稿,样式不起作用。没有生成小文件。

2 个答案:

答案 0 :(得分:0)

假设您的S3凭据没问题,也许您应该尝试为小文件设置文件类型。类似于:styles => {:small => “150x150#”,:png}

答案 1 :(得分:0)

您只需将gem更新为最新且最好的