首页
关于
推荐
易改下载地址
Search
1
炫舞时代代码
38 阅读
2
欢迎使用 Typecho
30 阅读
3
群信息生成图片php
20 阅读
4
go 编译缺 cannot find package “golang.org/x/
16 阅读
默认分类
程序工具
代码
登录
Search
标签搜索
炫舞时代
炫舞时代代码
炫舞2
新易改
golang
php
成精的宅货ゝ
累计撰写
4
篇文章
累计收到
6
条评论
首页
栏目
默认分类
程序工具
代码
页面
关于
推荐
易改下载地址
搜索到
2
篇与
的结果
2024-11-02
群信息生成图片php
用php生成图片代码:function 信息($昵称, $QQ, $进群, $退群, $到期){ $图片 = imagecreatetruecolor(250, 380); //创建图片 $头像=imagecreatefromstring(file_get_contents("https://q2.qlogo.cn/headimg_dl?dst_uin={$QQ}&spec=640")); $颜色 = [imagecolorallocate($图片, 255, 255, 255),imagecolorallocate($图片, 17, 142, 255),imagecolorallocate($图片, 255, 50, 50) ]; imagefill($图片, 0, 0, $颜色[0]); $字体 = realpath("simsun.ttc"); imagecopyresized($图片,$头像,5,5,0,0,240,240,imagesx($头像),imagesy($头像)); imagettftext($图片,12,0, 10 ,270,$颜色[1],$字体,"{$昵称} [{$QQ}]"); imagettftext($图片,12,0, 10 ,290,$颜色[1],$字体,'进群时间:'.$进群); imagettftext($图片,12,0, 10 ,310,$颜色[1],$字体,'退群时间:'.$退群); imagettftext($图片,12,0, 10 ,330,$颜色[1],$字体,'到期时间:'.$到期); imagettftext($图片,12,0, 10 ,370,$颜色[2],$字体,'到期时间仅是易改到期!'); //直接输出图片 //header("Content-Type:image/png"); //imagepng($图片); //写出文件 $图片名 = date("Y-m-d-H-i-s") . '.png'; imagepng($图片,"files/".$图片名); //销毁... imagedestroy($图片); imagedestroy($头像); return "https://www.lxinyu.cn/files/".$图片名; }
2024年11月02日
20 阅读
0 评论
0 点赞
2024-11-02
go 编译缺 cannot find package “golang.org/x/
提示 cannot find package “golang.org/x”尝试执行下面的命令go get golang.org/x/net go get golang.org/x/text// 拉取不到就直接从GitHub镜像库拉 go get google.golang.org/x/net(无法使用,用如下命令代替) git clone https://github.com/golang/net.git $GOPATH/src/golang.org/x/net git clone https://github.com/golang/text.git $GOPATH/src/golang.org/x/text cd $GOPATH/src/ go install google.golang.org/x额mkdir -p $GOPATH/src/golang.org/x cd $GOPATH/src/golang.org/x git clone https://github.com/golang/net.git git clone https://github.com/golang/text.githttps://github.com/golang/net对应: https://golang.org/x/net
2024年11月02日
16 阅读
0 评论
4 点赞