BK.Image 图片

方法

打开图片 loadImage(path, format)

参数 类型 名称 备注
path string 图片文件路径
format number RGB格式(可选)

返回值:

类型 名称 备注
Object BK.Image对象

例子:

  1. var image = BK.Image.loadImage("GameRes://resource/texture/icon.png");

保存图片 saveImage(buffer, width, height, path, type)

参数 类型 名称 备注
Object BK.Buffer对象 图片缓存
width number 图片宽
height number 图片高
path string 图片名
type string 图片后缀

返回值:

类型 名称 备注
boolean 写成功与否

例子:

var succ = BK.Image.saveImage(buff, this.size.width, this.size.height, path, type);

原文: https://hudong.qq.com/docs/engine/api/BK.Image.html