ruby-on-rails – 剪纸可以从S3桶中读取照片几何吗?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 剪纸可以从S3桶中读取照片几何吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从我的S3容器中读取照片的几何图形.

当它在我的地方,这工作:

def photo_geometry(style = :original)
  @geometry ||= {}
  @geometry[style] ||= Paperclip::Geometry.from_file photo.path(style)
end

但是当我将模型切换到S3时,似乎不起作用.任何建议?

更大的故事是,我正在尝试编写一些代码,让我从S3中检索照片,允许用户裁剪它们,然后将其重新上传到仍然由paperclip分配的S3.

编辑:

这是返回的错误

Paperclip::NotIdentifiedByImageMagickError: photos/199/orig/greatReads.png is not recognized by the 'identify' command.
from /Users/daniellevine/Sites/hq_channel/vendor/gems/thoughtbot-paperclip-2.3.1/lib/paperclip/geometry.rb:24:in `from_file'
from /Users/daniellevine/Sites/hq_channel/app/models/photo.rb:68:in `photo_geometry'
from (irb):1

解决方法

如果您使用S3作为存储机制,则不能使用上述的几何方法(它假定为本地文件). PaperClip可以使用Paperclip :: Geometry.from_file将S3文件转换为本地TempFile:

这是我更新的代码

def photo_geometry(style = :original)
  @geometry ||= {}
  @geometry[style] ||= Paperclip::Geometry.from_file(photo.to_file(style))
end
原文链接:https://www.f2er.com/ruby/272346.html

猜你在找的Ruby相关文章