Boost::GIL 从内存中读取图像
我需要能够从 Boost::Gil 框架的内存中加载图像(jpeg、png 等)。 有办法做到这一点吗?
感谢您的回答!
I need to be able to load images (jpeg, png etc.) from the memory in Boost::Gil framework.
Is there a way to do that?
Thanky for your answers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据文档 读取/转换函数< /a> 只接受文件名作为输入,而不接受一般的流或指针,所以这似乎是不可能的。
头文件上的 Grep 似乎也同意:
并且搜索
void *
或char *
也不会返回任何相关结果。The according to the documentation the read/convert functions only accept filenames as input, not general streams or pointers, so this seems to not be possible.
Grep on the header files seems to agree too:
and searches for
void *
orchar *
don't return any relevant results either.请参阅此处的解决方案:
http://boost.2283326.n4.nabble.com/gil-io-new-review-Reading-images-from-in-memory-sources-td3073639.html
欢呼
See a solution here:
http://boost.2283326.n4.nabble.com/gil-io-new-review-Reading-images-from-in-memory-sources-td3073639.html
cheers