PHP实现绘制3D扇形统计图及图片缩放实例_php实例
程序员文章站
2022-06-03 12:12:09
...
1、利用php gd库的函数绘制3D扇形统计图
50; $i--) { imagefilledarc($image, 50, $i, 100, 50, -160, 40, $darknavy, IMG_ARC_PIE); imagefilledarc($image, 50, $i, 100, 50, 40, 75, $darkgray, IMG_ARC_PIE); imagefilledarc($image, 50, $i, 100, 50, 75, 200, $darkred, IMG_ARC_PIE); } /*画椭圆弧并填充*/ imagefilledarc($image, 50, 50, 100, 50, -160, 40, $darknavy, IMG_ARC_PIE); imagefilledarc($image, 50, 50, 100, 50, 40, 75, $darkgray, IMG_ARC_PIE); imagefilledarc($image, 50, 50, 100, 50, 75, 200, $darkred, IMG_ARC_PIE); /*画字符串*/ imagestring($image, 3, 15, 55, "30%", $white); imagestring($image, 3, 45, 35, "60%", $white); imagestring($image, 3, 60, 60, "10%", $white); /*输出图像*/ header("content-type:image/png"); imagepng($image); /*释放资源*/ imagedestroy($image); ?>
效果:
2、对图片进行缩放
原图大小
缩放后的大小
效果:
上一篇: PHP获取网址的PR值