如何保存图像 URL 的裁剪图像而不保存原始图像? (在 Rails 中使用 Paperclip 或其他插件)

发布于 2024-10-06 10:14:32 字数 551 浏览 4 评论 0原文

大家好
我现在有一个应用程序显示来自 URL 的照片,而不是来自我自己的数据库(文件系统)的照片。 例如,来自 Facebook 的照片:
http://sphotos.ak.fbcdn.net/hphotos -ak-snc1/hs085.snc1/5041_98423808305_40796308305_1960517_6704612_n.jpg

我添加了裁剪功能来获取照片的裁剪区域(x,y,w,h)。
现在我想从 URL 保存裁剪后的图像(即在裁剪之前将原始图像下载到我的数据库中)

这可能吗?
或者是否有办法将图像放入内存中进行处理而不将其保存到数据库?
我在这里搜索了一些问题,但它们都讨论了如何保存用户上传到数据库的图像裁剪。

预先非常感谢您。

Hi all
I have an app now showing photos from URL, not from my own database (file system).
For example, a photo from Facebook:
http://sphotos.ak.fbcdn.net/hphotos-ak-snc1/hs085.snc1/5041_98423808305_40796308305_1960517_6704612_n.jpg

I've added the crop function to get the cropping area (x,y,w,h) of the photo.
And now I'd like to save the cropped image from the URL (i.e. without downloading the original image to my database before cropping)

Is it even possible?
Or is there anyway to get the image into memory to process without saving it to database?
I've searched some questions here, but they all talk about how to save the crop of images which have been uploaded to the database by users.

Thank you very much in advance.

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

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

发布评论

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

评论(1

孤檠 2024-10-13 10:14:32

您如何想象在不访问原始图像的情况下进行裁剪的效果?过程如下:

  1. 将远程图像作为临时文件下载到 /tmp(提示:TempFile
  2. 从中裁剪出垃圾内容
  3. 用 Paperclip 将裁剪后的图像保存到数据库中
  4. 删除临时文件

How do you imagine cropping works without access to the original image? The process would be like this:

  1. Download the remote image to a /tmp as a temporary file (Tip: TempFile)
  2. Crop the crap out of it
  3. Save the cropped image with Paperclip to your DB
  4. Remove the temporary file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文