回形针 - 从裁剪中排除 zip、rar

发布于 2024-10-20 17:54:16 字数 174 浏览 0 评论 0原文

我有一个 Attachment 模型,它使用 Paperclip 来处理上传的文件。该文件可以是任何图像、txt、doc、pdf、rar、zip、tar 等
我只想在上传的文件是图像时创建缩略图。
如何根据文件 content_type 有条件地在回形针中创建缩略图

I have an Attachment model, which is using Paperclip to handle uploaded files. The file can be anything an image, a txt, doc, pdf, rar, zip, tar etc.
I want to create thumbnails only if the file uploaded is an image.
How to create thumbnails in Paperclip conditionally based upon file content_type

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

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

发布评论

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

评论(1

白馒头 2024-10-27 17:54:16

这是一个很好的解决方案:

before_post_process :image?
def image?
  !(data_content_type =~ /^image.*/).nil?
end

您也可以使用图像吗?视图中的方法来渲染 image_tag 或其他内容......

This is a nice solution:

before_post_process :image?
def image?
  !(data_content_type =~ /^image.*/).nil?
end

You can also use the image? method in your views to either render an image_tag, or something else...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文