createjs 实现封装 drawImage

Fork Me On Github
zodream 游戏 TypeScript 2020年05月

问题

createjs 中,默认是没有封装 canvas 的 drawImage 方法,

想 添加图片到 canvas 上,只能使用

ts
   
const img: HTMLImageElement;
const box = new createjs.Shape();
box.graphics.beginBitmapFill(img).drawRect(0, 0, img.width, img.height);
123

如果想移动图片的位置,只能使用 box.xbox.y

而改变 drawRect 上的值,就是在图片上裁剪。默认 img 是无限重复的,

.drawRect(10, 10, img.width, img.height) 并不是移动到 10,10 再开始画整张图,而是先从 0,0 画,横向重复一次,纵向再重复一次,这是成 字排列四张图,然后 选取 10,10img.width + 10, img.height + 10 矩形区域显示

那么,想从 10,10 开始画整张图该怎么办?

解决方法

canvas 默认是有 drawImage 方法,调用就行了

ts
                   
class ImgFill {
    constructor(
        private img: HTMLImageElement,
        private x: number,
        private y: number,
        private width: number,
        private height: number
    ) {

    }

    public exec(ctx: CanvasRenderingContext2D) {
        ctx.save();
        ctx.drawImage(this.img, 0, 0, this.img.width, this.img.height, this.x, this.y, this.width, this.height);
        ctx.restore();
    }
}

box.graphics.append(new ImgFill(img, 10, 10, img.width, img.height));
12345678910111213141516171819

实现一个封装的对象,exec 方法是这个对象必须有的,有这个方法,才能被调用,实现绘制。

点击查看全文
标签: createjs
0 313 0
Tween._inited does not reset if scene is being destroyed or removed inside the game and rebuild
42.3 ms
系统信息
Execution time42.3 ms
CPU usage user + system61 % + 9 %
Peak of allocated memory7.16 MB
Included files227
Classes + interfaces + traits141 + 29 + 26
Your IP13.59.90.174
Server IP172.21.0.9
HTTP method / response codeGET / 200
PHP8.4.2
Zodream5.1.0
Servernginx/1.27.3
运行信息
start0.0 ms
match route14.7 ms
controller response3.7 ms
db engine init6.4 ms
db engine end0.7 ms
db init end0.0 ms
view render6.6 ms
end42.5 ms
Queries(13)
[0.32ms] SELECT * FROM `blog` WHERE id = ? LIMIT 1
[0.22ms] SELECT * FROM `blog_term`
[0.6ms] SELECT term_id,COUNT(*) as count FROM `blog` WHERE parent_id = ? GROUP BY term_id
[0.44ms] SELECT id,language FROM `blog` WHERE parent_id = ?
[0.18ms] SELECT `tag_id` FROM `blog_tag_relationship` WHERE blog_id = ?
[0.16ms] SELECT id,name FROM `blog_tag` WHERE id in (?)
[0.17ms] SELECT `blog_id` FROM `blog_tag_relationship` WHERE tag_id in (?) and blog_id <> ?
[0.27ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE publish_status = ? and id in (?, ?, ?) and language = ? ORDER BY created_at DESC LIMIT 5
[0.19ms] SELECT `content`,`name` FROM `blog_meta` WHERE blog_id = ?
[0.19ms] SELECT id,name,avatar FROM `user` WHERE id in (?)
[0.26ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE id < ? and language = ? and publish_status = ? ORDER BY id DESC LIMIT 1
[0.22ms] SELECT id,title,thumb,parent_id,language,description,created_at FROM `blog` WHERE id > ? and language = ? and publish_status = ? ORDER BY id ASC LIMIT 1
[0.21ms] SELECT * FROM `ad_position` WHERE code = ? and status = ? LIMIT 1
Views(5)
[Rendered] Module/Blog/UserInterface/layouts/header.php : 0.43ms
[Rendered] Module/Blog/UserInterface/Home/content.php : 3.13ms
[Rendered] Module/Blog/UserInterface/layouts/footer.php : 0.06ms
[Rendered] Module/Blog/UserInterface/Home/detail.php : 8.23ms
[Rendered] UserInterface/Home/layouts/main.php : 1.01ms