如何保存图像 URL 的裁剪图像而不保存原始图像? (在 Rails 中使用 Paperclip 或其他插件)
大家好
我现在有一个应用程序显示来自 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您如何想象在不访问原始图像的情况下进行裁剪的效果?过程如下:
TempFile
)How do you imagine cropping works without access to the original image? The process would be like this:
TempFile
)