回形针 - 从裁剪中排除 zip、rar
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个很好的解决方案:
您也可以使用图像吗?视图中的方法来渲染 image_tag 或其他内容......
This is a nice solution:
You can also use the image? method in your views to either render an image_tag, or something else...