动漫头像生成如此简单,教你如何快速制作动漫头像!
想生成这样的动漫头像吗?
告诉你,很简单!这里以nodejs作为示例:
第一步,引入腾讯人脸转换sdk
npm install tencentcloud-sdk-nodejs-ft --save
第二步,编写代码,几行代码搞定
const tencentcloud = require("tencentcloud-sdk-nodejs-ft");var res={};const FtClient = tencentcloud.ft.v20200304.Client;const clientConfig = {credential: {secretId: "你的secretId",secretKey: "你的secretKey",},region: "ap-shanghai",profile: {httpProfile: {endpoint: "ft.tencentcloudapi.com",},},};const client = new FtClient(clientConfig);const params = {//"Image": event.image,"Url":event.url,//图片链接"RspImgType": "url","DisableGlobalEffect": "false"};try{var result=await client.FaceCartoonPic(params);res=result;}catch(e){}return res;
第三步,写页面,以微信小程序为例
大家有问题可以留言讨论哦!
需要源码,可以评论!