8.PHP图像处理
PHP图像处理
GD2
Jpgraph
创建一个画布:
<?php
header('content-type:image/gif');
//echo "你好";
$im = imagecreate(200,60);
$white = imagecolorallocate($im ,225 ,66 ,159);
imagegif($im);
?>
显示一张图片
<?php
function LoadPNG($imgname)
{
/* Attempt to open */
$im = @imagecreatefromjpeg($imgname);
/* See if it failed */
if(!$im){
echo "aaa";
/* Create a blank image */
$im = imagecreatetruecolor(150,40);
$bgc = imagecolorallocate($im, 255, 255, 255);
$tc = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 150, 40, $bgc);
/* Output an error message */
imagestring($im, 1, 5, 5, 'bb ' . $imgname, $tc);
}
return $im;
}
header('Content-Type: image/jpeg');
$img = LoadPNG('p.jpg');
imagepng($img);
imagedestroy($img);
?>
随机生成验证码:
<?php
session_start();
header('Content-Type: image/png');
$image_width = 70;
$image_height = 18;
srand(microtime()*100000);
$new_number = '';
for($i = 0 ;$i < 4 ;$i ++){
$new_number.=dechex(rand(0 ,15));
}
$_SESSION['check_checks'] = $new_number;
$num_image = imagecreate($image_width ,$image_height);
imagecolorallocate($num_image ,255 ,255 ,255);
for($i = 0 ;$i < strlen($_SESSION['check_checks']) ;$i ++){
$font = mt_rand(3 ,5);
$x = mt_rand(1 ,8) + $image_width * $i / 4;
$y = mt_rand(1 ,$image_height / 4);
$color = imagecolorallocate($num_image ,mt_rand(0,100) ,mt_rand(0 ,150) ,mt_rand(0 ,200));
imagestring($num_image ,$font ,$x ,$y,$_SESSION['check_checks'][$i] ,$color);
}
imagepng($num_image);
imagedestroy($num_image);
?>
创建一个柱形图
<?php
include ("src/jpgraph.php");
include ("src/jpgraph_bar.php");
$datay = array(160 ,180 ,203 ,289 ,405 ,488 ,489 ,408 ,299 ,166 ,187 ,205);
$graph = new Graph(600 ,300 ,"auto");
$graph -> SetScale("textlin");
$graph -> yaxis -> scale -> SetGrace(20);
$graph -> SetShadow();
$graph -> img -> SetMargin(40 ,30 ,30 ,40);
$bplot = new BarPlot($datay);
$bplot -> SetFillColor('orange');
$bplot -> value -> Show();
$bplot -> value -> SetFormat('%d');
$graph -> Add($bplot);
$graph -> SetMarginColor("lightblue");
$graph -> title -> Set("tit");
$a = array(1 ,2 ,3 ,4 ,5 ,6 ,7 ,8 ,9 ,10 ,11 ,12);
$graph -> xaxis -> SetTickLabels($a);
$graph -> title -> SetFont(FF_SIMSUN);
$graph -> xaxis -> SetFont(FF_SIMSUN);
$graph -> Stroke();
?>
绘制折线图
<?php
include ("src/jpgraph.php");
include ("src/jpgraph_line.php");
$datay = array(160 ,180 ,203 ,289 ,405 ,488 ,489 ,408 ,299 ,166 ,187 ,500);
$graph = new Graph(600 ,300 ,"auto");
$graph -> img -> SetMargin(50 ,40 ,30 ,40);
$graph -> img -> SetAntiAliasing();
$graph -> SetScale("textlin");
$graph -> SetShadow();
$graph -> title -> Set("tit");
$graph -> title -> SetFont(FF_SIMSUN ,FS_BOLD);
$graph -> SetMarginColor("lightblue");
$graph -> yaxis ->title -> SetFont(FF_SIMSUN);
$graph -> xaxis -> SetPos("min");
$graph -> yaxis -> HideZeroLabel();
$graph -> ygrid -> SetFill(true ,'#EFEFEF@0.5' ,'#BBCCFF@0.5');
$a = array(1 ,2 ,3 ,4 ,5 ,6 ,7 ,8 ,9 ,10 ,11 ,12);
$graph -> xaxis -> SetTickLabels($a);
$graph -> xaxis -> SetFont(FF_SIMSUN);
$graph -> yscale -> SetGrace(20);
$p1 = new LinePlot($datay);
$p1 -> mark -> SetType(MARK_FILLEDCIRCLE);
$p1 -> mark ->SetFillColor('red');
$p1 -> mark ->SetWidth(4);
$p1 -> SetColor('blue');
$p1 -> SetCenter();
$graph -> Add($p1);
$graph -> Stroke();
?>
3D饼状图
<?php
include ("src/jpgraph.php");
include ("src/jpgraph_pie.php");
include ("src/jpgraph_pie3d.php");
$data = array(160 ,180 ,203 ,289 ,405 ,500 );
$graph = new PieGraph(540 ,260 ,"auto");
$graph -> SetShadow();
$graph -> title -> Set("tit");
$graph -> title -> SetFont(FF_SIMSUN ,FS_BOLD);
$graph -> legend -> SetFont(FF_SIMSUN ,FS_NORMAL);
$p1 = new PiePlot3D($data);
$p1 -> SetLegends(array('11','22','33','44','55','66'));
$targ = array("pie3d_csimex1.php?v=1","pie3d_csimex1.php?v=2","pie3d_csimex1.php?v=3","pie3d_csimex1.php?v=4","pie3d_csimex1.php?v=5","pie3d_csimex1.php?v=6");
$alts = array("val=%d" ,"val=%d" ,"val=%d" ,"val=%d" ,"val=%d" ,"val=%d");
$p1 -> SetCSIMTargets($targ ,$alts);
$p1 -> SetCenter(0.4 ,0.5);
$graph -> Add($p1);
$graph -> StrokeCSIM();
?>
8.PHP图像处理的更多相关文章
- Atitit 图像处理和计算机视觉的分类 三部分 图像处理 图像分析 计算机视觉
Atitit 图像处理和计算机视觉的分类 三部分 图像处理 图像分析 计算机视觉 1.1. 按照当前流行的分类方法,可以分为以下三部分:三部分 图像处理 图像分析 计算机视觉1 1.2. 图像处理需要 ...
- Atitit 图像处理的摩西五经attilax总结
Atitit 图像处理的摩西五经attilax总结 1. 数字图像处理(第三版)1 2. 图像处理基础(第2版)(世界著名计算机教材精选)1 3. 计算机视觉特征提取与图像处理(第三版)2 4. Op ...
- Atitit 图像处理的心得与疑惑 attilax总结
Atitit 图像处理的心得与疑惑 attilax总结 1.1. 使用类库好不好??还是自己实现算法1 1.2. 但是,如果遇到类库体积太大,后者没有合适的算法,那就只能自己开发算法了1 1.3. 如 ...
- Atitit 图像处理 调用opencv 通过java api attilax总结
Atitit 图像处理 调用opencv 通过java api attilax总结 1.1. Opencv java api的支持 opencv2.4.2 就有了对java api的支持1 1. ...
- Atitit MATLAB 图像处理 经典书籍attilax总结
Atitit MATLAB 图像处理 经典书籍attilax总结 1.1. MATLAB数字图像处理1 1.2. <MATLAB实用教程(第二版)>((美)穆尔 著)[简介_书评_在线阅读 ...
- Atitit 图像处理类库大总结attilax qc20
Atitit 图像处理类库大总结attilax qc20 1.1. 选择与组合不同的图像处理类库1 1.2. Halcon 貌似商业工具,功能强大.1 1.3. Openvc Openvc功能也是比 ...
- Atitit MATLAB 图像处理attilax总结
Atitit MATLAB 图像处理attilax总结 1.1. 下载 Matlab7.0官方下载_Matlab2012 v7.0 官方简体中文版-办公软件-系统大全.html1 1.2. Matla ...
- 使用MATLAB对图像处理的几种方法(下)
试验报告 一.试验原理: 图像点处理是图像处理系列的基础,主要用于让我们熟悉Matlab图像处理的编程环境.灰度线性变换和灰度拉伸是对像素灰度值的变换操作,直方图是对像素灰度值的统计,直方图均衡是对 ...
- 使用MATLAB对图像处理的几种方法(上)
实验一图像的滤波处理 一.实验目的 使用MATLAB处理图像,掌握均值滤波器和加权均值滤波器的使用,对比两种滤波器对图像处理结果及系统自带函数和自定义函数性能的比较,体会不同大小的掩模对图像细节的影响 ...
- 图像处理中任意核卷积(matlab中conv2函数)的快速实现。
卷积其实是图像处理中最基本的操作,我们常见的一些算法比如:均值模糊.高斯模糊.锐化.Sobel.拉普拉斯.prewitt边缘检测等等一些和领域相关的算法,都可以通过卷积算法实现.只不过由于这些算法的卷 ...
随机推荐
- 『笔记』2-SAT
前置 \(SAT\) 是适定性( \(Satisfiability\) )问题的简称.一般形式为 \(k \ -\) 适定性问题,简称 \(k-SAT\) .而当 \(k>2\) 时该问题为 \ ...
- The Red Button
The Red Button 问题 问题描述 Piegirl终于发现了红色按钮,你现在还剩最后一个机会去改变这个结局.这个按钮下面的电路由n个从0到n-1编号节点组成.为了关闭这个按钮,这n个节点必须 ...
- 如何选择 WebClient,HttpClient,HttpWebRequest
当我们在用 .NET 调用 RestAPI 时通常有三种选择,分别为:WebClient, HttpWebRequest,HttpClient,这篇文章我们将会讨论如何使用这三种方式去调用 RestA ...
- 商品购买 & 收银台订单优化测试点疑问归纳梳理
摘要 更新内容 更新人 更新时间 初版内容 Young 2020.11.20 16:40 贾轩审查确认 Harry 2020.11.20 17:00 和林森沟通问题答疑 参与人:林森.Harry. ...
- Hibernate在oracle中ID增长的方式(续)
引用链接:http://blog.csdn.net/w183705952/article/details/7367272 第二种:设置ID的增长策略是native,但是需要创建一个名字为hiberna ...
- 为什么是InfluxDB | 写在《InfluxDB原理和实战》出版之际
1年前写的一篇旧文,文中的分析,以及探讨的问题和观点,至今仍有意义. 从2016年起,笔者在腾讯公司负责QQ后台的海量服务分布式组件的架构设计和研发工作,例如微服务开发框架SPP.名字路由CMLB.名 ...
- 新元科技签订5.8亿元IPFS合同,IPFS国家认可吗?IPFS挖矿是不是合法的?
就在昨天,也就是 3 月 15 日,FIL 又有一波较大的涨幅,现流通市值排名第 15,总市值预计 6818.16 亿.FIL 见涨,一些公司也按耐不住了.也是在3月15日,A 股上市公司新元科技签订 ...
- C# AppDomain.CurrentDomain.BaseDirectory
AppDomain.CurrentDomain.BaseDirectory 是获取基目录,它由程序集冲突解决程序用来探测程序集.由显示的路径可以看出,它代表的是程序集所在的目录,它具有读取和写入的 ...
- PTA 输出数组元素
7-3 输出数组元素 (15 分) 本题要求编写程序,对顺序读入的n个整数,顺次计算后项减前项之差,并按每行三个元素的格式输出结果. 输入格式: 输入的第一行给出正整数n(1).随后一行给出n个整 ...
- 8、MyBatis之使用注解开发
9.使用注解开发 mybatis最初配置信息是基于 XML ,映射语句(SQL)也是定义在 XML 中的.而到MyBatis 3提供了新的基于注解的配置.不幸的是,Java 注解的的表达力和灵活性十分 ...