使用 Lua io.read('*a') 从图像文件获取所有数据时出现问题

发布于 2024-11-26 03:30:01 字数 286 浏览 0 评论 0原文

我试图使用 Lua 的 io.read() 函数从图像文件(jpg/jpeg/gif/png/bmp 等)获取所有数据,但我没有太多运气,因为它似乎只读取了一小部分的数据。

作为旁注,所有纯文本文件都可以正常读取,所以我假设问题出在字符编码或类似的事情上。

例子:

local data
local fileHandle

fileHandle = io.open ( 'pic.jpg')
data = fileHandle:read('*a')

print(data)

I'm trying to get all the data from image file (jpg/jpeg/gif/png/bmp etc.) use Lua's io.read() function, but I'm not having much luck as it only seems to read a small piece of the data.

As a side note all plain text files are being read just fine, so I'm assuming that the problem is with character encoding or some such thing.

Example:

local data
local fileHandle

fileHandle = io.open ( 'pic.jpg')
data = fileHandle:read('*a')

print(data)

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

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

发布评论

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

评论(1

仙女山的月亮 2024-12-03 03:30:01

如果您使用的是 Windows,请以二进制形式打开文件:io.open('pic.jpg', 'rb')

另外,将 io.open() 包装在 assert() 中以捕获错误(当然,或者以其他方式处理错误)也是一个好主意。

If you're on Windows, open file as binary: io.open('pic.jpg', 'rb').

Also it is a good idea to wrap io.open() in assert() to catch errors (or do handle them otherwise, of course).

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