函数名称:从文件创建图片
函数功能: 将图片转成图片对象
函数方法
img = image.load(path)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
path | string | 是 | 图片路径 |
返回值 | 类型 | 说明 |
---|---|---|
img | usedata/nil | 图片对象,失败显示空 |
函数用例
path = "/sdcard/LuaBox/Projects/1/1.png"
flag = file.isExist(path)
if flag then
img= image.load(path)
if img ~= nil then
dialog("转换成功",5000)
else
dialog("转换失败",5000)
end
else
dialog("图片不存在",5000)
end
注意事项