企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## Canvas图形画刷 ~~~ var img = new Image(); img.src = "logo.png"; img.onload = function() { //4种模式 norepeat repeat-x repeat-y repeat //创建图形画刷 var pattern = ctx.createPattern(img, "repeat"); ctx.fillStyle = pattern; ctx.fillRect(0, 0, canvas.width, canvas.height); } ~~~ > 已经学习的fillStyle三种模式 > 1. 纯颜色 > 2. 渐变 > 3. 图形