函数:setRotation270 顺时针旋转图片 270 度
函数分类:tsimg.so
函数功能:将图片对象顺时针旋转 270 度
引擎版本:iOS 专业版,Android v3.0.1 以上
函数方法
newImage2,msg = image.setRotation270(newImage1)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
newImage1 | usedata | 是 | 需要进行操作的对象 |
返回值 | 类型 | 说明 |
---|---|---|
newImage2 | usedata/nil | 旋转 270 度后的图片对象,失败显示空 |
msg | nil/string | 成功返回空,失败返回失败原因 |
函数用例
local image = require("tsimg")
snapshot("setRotation2701.png", 0, 0, 100, 100)
--将文件转换为图片对象
local newImage1,msg = image.loadFile(userPath() .. "/res/setRotation2701.png")
if image.is(newImage1) then
--将图片对象顺时针旋转 270 度
local newImage2,msg = image.setRotation270(newImage1);
if image.is(newImage2) then
--将图片对象转换为图片
local boo,msg = image.saveToPngFile(newImage2,userPath() .. "/res/setRotation2702.png")
dialog(boo and "保存成功" or "保存失败 : " .. msg)
else
dialog(msg,3)
end
else
dialog(msg,3)
end
注意事项
Android 仅支持引擎版本 v3.0.1 及其以上,支持标准版、旗舰版、小精灵、企业版。
安卓普通版需要登录账号、购买 VIP 并且在调用过程中账号需要保持登录状态否则会导致调用失效。
iOS 支持专业版、企业版、小精灵。
Android 真机与模拟器 tsimg.so 文件不同,需要按照设备类型进行下载。
点击 使用方法、tsimg.so 下载 查看使用方法及下载地址。