今天教大家用.5快速生成设计图!直接打开网站(还没有账号的同学,文末有送),把以下话术发给。
就会生成对应的图片代码
Canvas 示例 canvas {
border: 1px solid black;
}
// 获取画布元素和上下文
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
// 设置画布尺寸
const width = 1440;
const height = 1080;
canvas.width = width;
canvas.height = height;
// 设置背景颜色
ctx.fillStyle = "#FFA07A";
ctx.fillRect(0, 0, width, height);
// 绘制文本
ctx.fillStyle = "white";
ctx.font = "bold 60px Arial";
ctx.textAlign = "center";
ctx.fillText("ChatGPT设计图必学技巧", width / 2, height * 0.2);
ctx.font = "30px Arial";
ctx.fillText("作者:小意", width / 2, height * 0.25);
ctx.font = "bold 120px Arial";
ctx.fillText("如何从零学习ChatGPT?", width / 2, height * 0.4);
ctx.font = "70px Arial";
ctx.fillText("原来普通人也能逆袭", width / 2, height * 0.5);
ctx.font = "40px Arial";
ctx.fillText("Excel AI之家", width / 2, height * 0.95);
把代码粘贴到生成图片的工具里,图片就生成啦
(此工具已分享到手册,不在手册的同学可以通过txt文本修改后缀位html的方式实现)
如果对生成的图片不是很满意,直接在这个代码框里修改,右下角就会实时生成对应的图片,直到满意为止。
对于需要批量制作类似图片的同学来说,非常高效!
以上,如果需要官方账号和更多教程,欢迎加入我的AI手册↓免费送!
我的微信,欢迎交流学习
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...