使用 Lua io.read('*a') 从图像文件获取所有数据时出现问题
我试图使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 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()
inassert()
to catch errors (or do handle them otherwise, of course).