PHP制作3D扇形统计图以及对图片进行缩放操作实例

作者:hebedich 时间:2023-11-17 19:31:47 

1、利用php gd库的函数绘制3D扇形统计图

<?php
header("content-type","text/html;charset=utf-8");
/*扇形统计图*/
$image = imagecreatetruecolor(100, 100);    /*创建画布*/
/*设置画布需要的颜色*/
$white = imagecolorallocate($image,0xff,0xff,0xff);
$gray = imagecolorallocate($image, 0xc0, 0xc0, 0xc0);
$darkgray = imagecolorallocate($image, 0x90, 0x90, 0x90);
$navy = imagecolorallocate($image, 0x00, 0x00, 0x80);
$darknavy = imagecolorallocate($image, 0x00, 0x00, 0x50);
$red = imagecolorallocate($image, 0xff, 0x00, 0x00);
$darkred = imagecolorallocate($image, 0x90, 0x00, 0x00);
/*填充背景色*/
imagefill($image, 0, 0, $white);
/*3D制作*/
for($i = 60; $i > 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);
?>

效果:

PHP制作3D扇形统计图以及对图片进行缩放操作实例

2、对图片进行缩放

<div>
<h4>原图大小</h4>
<img src="1.png">
</div>
<?php
header("content-type","text/html;charset=utf-8");
/*
*图片缩放
*@param string $filename   图片的url
*@param int    $width      设置图片缩放的最大宽度
*@param int    $height     设置图片缩放的最大高度
*/
function thumb($filename,$width=130,$height=130)
{
/*获取原图的大小*/
list($width_orig,$height_orig) = getimagesize($filename);
/*根据参数$width和$height,换算出等比例的高度和宽度*/
if($width && ($width_orig < $height_orig))
{
$width = ($height / $height_orig) * $width_orig;
}
else
{
$height = ($width / $width_orig) * $height_orig;
}
/*以新的大小创建画布*/
$image_p = imagecreatetruecolor($width, $height);
/*获取图像资源*/
$image = imagecreatefrompng($filename);
/*使用imagecopyresampled缩放*/
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
/*保存缩放后的图片和命名*/
imagepng($image_p,'test.png');
/*释放资源*/
imagedestroy($image_p);
imagedestroy($image);
}
/*调用函数*/
thumb('1.png');
?>
<div>
<h4>缩放后的大小</h4>
<img src="test.png">
</div>

效果:

PHP制作3D扇形统计图以及对图片进行缩放操作实例

标签:PHP,3D扇形,统计图,缩放
0
投稿

猜你喜欢

  • Python使用numpy模块实现矩阵和列表的连接操作方法

    2023-02-17 21:05:41
  • Python将列表中的元素转化为数字并排序的示例

    2023-07-06 11:16:11
  • Python+OpenCV让电脑帮你玩微信跳一跳

    2021-12-16 10:31:17
  • Python中利用ItsDangerous快捷实现数据加密

    2022-06-09 23:24:41
  • 利用sql函数生成不重复的订单号的代码

    2012-01-05 19:02:55
  • Python 自动化表单提交实例代码

    2022-12-20 06:16:14
  • Vue实现自定义字段导出EXCEL的示例代码

    2024-04-27 16:12:09
  • Python实现淘宝秒杀功能的示例代码

    2021-05-26 09:41:49
  • Vue数据增删改查与表单验证的实现流程介绍

    2024-05-28 15:42:51
  • JS获取鼠标位置距浏览器窗口距离的方法示例

    2024-04-19 10:06:14
  • asp分类算法要解决的问题

    2009-09-10 16:49:00
  • Python OpenCV读取显示视频的方法示例

    2023-07-02 16:13:42
  • vue简单的二维数组循环嵌套方式

    2024-04-27 16:09:56
  • python模块中pip命令的基本使用

    2023-09-28 22:44:20
  • Python Decorator装饰器的创建方法及常用场景分析

    2022-05-05 03:34:11
  • [翻译]标记语言和样式手册 Chapter 2 标题

    2008-01-16 11:56:00
  • Python实现socket非阻塞通讯功能示例

    2022-05-16 03:18:25
  • 创建IE各版本专属CSS方法

    2007-09-27 12:16:00
  • 在Python中利用pickle保存变量的实例

    2021-05-04 04:25:50
  • 用python写爬虫简单吗

    2024-01-02 08:03:26
  • asp之家 网络编程 m.aspxhome.com