回形针不会创建我指定的缩略图。我缺少什么?

发布于 2024-11-17 07:27:47 字数 681 浏览 2 评论 0原文

我正在使用 ruby​​ 1.9.2、rails 3.0.8、回形针 2.3.11。 我前段时间使用 macports 安装了 imagemagick。要查找我使用的版本:

convert -version
Version: ImageMagick 6.5.6-1 2009-10-01 Q8 OpenMP http://www.imagemagick.org
Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC

在我的模型中,我设置:

class Sketch < ActiveRecord::Base
  has_attached_file :image, :style => {:ipad => "786x1024>", :iphone => "320x480>"}, :default_style => :ipad, :whiny_thumbnails => true
  has_many :comments
end

当我上传图像时,会上传原始尺寸,但不会创建缩略图。即使我将 Whiny_thumbnails 设置为 true,我也没有看到任何错误输出。

我还需要做什么?

最终我想部署在Heroku上,所以我不喜欢使用任何与Heroku不兼容的配置方法。

I'm using ruby 1.9.2, rails 3.0.8, paperclip 2.3.11.
I installed imagemagick some time ago using macports. To find the version I used:

convert -version
Version: ImageMagick 6.5.6-1 2009-10-01 Q8 OpenMP http://www.imagemagick.org
Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC

In my model I'm setting:

class Sketch < ActiveRecord::Base
  has_attached_file :image, :style => {:ipad => "786x1024>", :iphone => "320x480>"}, :default_style => :ipad, :whiny_thumbnails => true
  has_many :comments
end

When I upload my image, the original size is uploaded but the thumbnails are never created. Even though I set whiny_thumbnails to true, I don't see any error output.

What else do I need to do?

Ultimately I want to deploy on Heroku, so I prefer not to use any configuration methods that are not compatible with Heroku.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

み青杉依旧 2024-11-24 07:27:47

的关键是 :styles 而不是 :style

has_attached_file :image, :styles => {:ipad => "786x1024>", :iphone => "320x480>"}, :default_style => :ipad, :whiny_thumbnails => true
                                ^

The key for is :styles not :style.

has_attached_file :image, :styles => {:ipad => "786x1024>", :iphone => "320x480>"}, :default_style => :ipad, :whiny_thumbnails => true
                                ^
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文