函数:imageBase64 图片 base64 编码
函数名称:图片 base64 编码
函数功能:将图片进行 base64 编码
TSLib 版本:仅支持 v1.3.5 及其以上版本
函数方法
str = imageBase64(path)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
path | string | 是 | 需要进行编码的图片 |
参数 | 类型 | 说明 |
---|---|---|
str | string | 编码后的数据 |
函数用例
require("TSLib")
path = userPath().."/res/test.png"
snapshot(path,0,0,200,200)
--需要下载 ts.so
str = imageBase64(path)
nLog(str)
注意事项
编码后的数据不推荐使用 dialog 进行打印。
此函数使用的是 lua 函数效率可能会比较低,推荐使用函数:base64_encode BASE64 编码。
生成的数据不能直接使用,需要使用函数:base64_encode BASE64 编码进行转码后再调用。