Imagick 和 GridFS

发布于 2024-12-24 20:00:05 字数 296 浏览 0 评论 0原文

我将图像存储在 MongoDB 的 GridFS 中。当我拉出图像时,我想调整它的大小,然后将其存储回数据库中。我尝试了这个:

$image = $grid_collection ->findOne(array('_id' => new MongoID($id)));
new Imagick($image -> getBytes());

但这会在 Imagick 中引发错误。现在我可以将其临时写入磁盘并让 Imagick 读取该文件,但这似乎还有很长的路要走。关于更好的方法有什么建议吗?

I have images stored in GridFS for MongoDB. When I pull the image out, I want to resize it and then store it back into the database. I tried this:

$image = $grid_collection ->findOne(array('_id' => new MongoID($id)));
new Imagick($image -> getBytes());

But that throws an error in Imagick. Now I can write it out to file temporarily to disk and have Imagick read the file, but that seems the long way around. Any suggestions on a better way to do this?

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

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

发布评论

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

评论(2

一场春暖 2024-12-31 20:00:05

是的:

$data = $grid->findOne(array('_id' => new MongoID($id)));

$img = new Imagick();
$img->readImageBlob($data->getBytes());

Yes:

$data = $grid->findOne(array('_id' => new MongoID($id)));

$img = new Imagick();
$img->readImageBlob($data->getBytes());
指尖上的星空 2024-12-31 20:00:05

您不能将图像存储在规范中。你是什​​么意思

我在 GridFS 中存储了图像

GridFS 是一个规范。

You can't store images in a specefication. What do you mean by

I have images stored in GridFS

GridFS is a spec.

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