回形针不会创建我指定的缩略图。我缺少什么?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
的关键是
:styles
而不是:style
。The key for is
:styles
not:style
.