从 Python 的输入流加载图像

发布于 2024-12-25 10:49:50 字数 260 浏览 0 评论 0原文

我正在使用 Python 成像库进行一些处理,并且我想通过管道向我的脚本提供数据,而不是将文件名作为参数传递。

我已经看到 Image.open 可以接受除字符串之外的任何类似文件的对象作为参数。我尝试过直接传递 sys.stdin ,但似乎在 seek 方面存在一些问题(逻辑上)。

那么,如何将流包装到提供所有文件操作的缓冲区中? (或其他任何合适的解决方案直接从 stdin 读取图像)。

I am using Python Imaging Library to do some processing, and I'd like to feed my script with data through a pipe rather than passing a file name as an argument.

I've seen that Image.open can accept any file-like object besides a string as parameter. I've tried passing sys.stdin directly, but it seems that it is having some problems with seek (logically).

So, how can I wrap the stream into a buffer that provides all the file operations? (or other any suitable solution to read the image directly from stdin).

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

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

发布评论

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

评论(1

聆听风音 2025-01-01 10:49:50

使用 StringIO

import StringIO
import sys

filelike = StringIO.StringIO(sys.stdin.read())

# Now use `filelike` as a regular open file, e.g.:
filelike.seek(2)
print filelike.read()

Use StringIO.

import StringIO
import sys

filelike = StringIO.StringIO(sys.stdin.read())

# Now use `filelike` as a regular open file, e.g.:
filelike.seek(2)
print filelike.read()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文