
gd库 图片处理
昊喵喵博士
相互沟通是走向巅峰的一种捷径
展开
-
php 图片合成
/*背景合成*/ //$back_img http链接 //$wx_code http链接 $dir_root = './uploads/uid2'; $first_dir = 'wechatcode/recruit_agent'; USER_ID = 1; $image_1 = imagecreatefrompng($back_img); $img_type = getimagesi.原创 2021-10-09 10:28:52 · 740 阅读 · 0 评论 -
php读取微信头像很慢的解决方法
$ch = curl_init($url); //$url是微信的图像地址curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);$content = curl_exec($ch); $time=time().'.jpg';file_put_contents('../public/uploads/img/'.$time,$content);return '/uploads/img/'.$time;原创 2021-10-09 09:49:39 · 216 阅读 · 0 评论 -
gd库处理图片(将正方形转换圆形) (调整 头像大小)(文字图片合并)(创建画布)
/* 正方形转换圆形图片 * $url 小图 (绝对路径) * $background 背景图 (绝对路径) * */function circular($url,$background){ $w = $h = 56;/* 头像大小 */ $c = imagecolorallocate($url, 255, 0, 0); imagearc($url, $w/2...原创 2018-10-30 09:43:37 · 2166 阅读 · 0 评论