函数:image.setColor 设置某点的颜色值
优质
小牛编辑
128浏览
2023-12-01
函数功能:设置图片对象指定坐标点的颜色值
函数方法
newimg = image.setColor(oldimg,x,y,color)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
oldimg | userdata | 是 | 需要操作的图片对象 |
x | number | 是 | 需要设置颜色值的图片对象的横坐标 |
y | number | 是 | 需要设置颜色值的图片对象的纵坐标 |
color | number | 是 | 需要设置的十六进制颜色值 |
返回值 | 类型 | 说明 |
---|---|---|
newimg | userdata/nil | 设置后的图片对象,,失败返回 nil |
函数用例
path = "/sdcard/LuaBox/Projects/1/1.png"
flag = file.isExist(path)
if flag then
img,msg = image.load(path)
if img ~= nil then
--将 20,20 点颜色值设置为 0xff00ff
newimg = image.setColor(img,20,20,0xff00ff)
if newimg ~= nil then
dialog("成功")
--获取颜色值
color = image.getColor(newimg,20,20)
--转成十进制
dialog(string.format("20,20 颜色值为:0x%X",color),5000)
dialog(color)
else
dialog("失败")
end
else
dialog("转换失败:"..msg,5000)
end
else
dialog("图片不存在",5000)
end
注意事项
- 目前积木编程函数和触动精灵函数不通用,请仔细查看本手册,此手册中函数仅支持积木编程,不支持触动精灵,同理请勿将触动精灵函数在积木编程运行。