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边缘检测等等一些和领域相关的算法,都可以通过卷积算法实现.只不过由于这些算法的卷 ...
随机推荐
- xss和实体编码的一点小思考
首先,浏览器渲染分以下几步: 解析HTML生成DOM树. 解析CSS生成CSSOM规则树. 将DOM树与CSSOM规则树合并在一起生成渲染树. 遍历渲染树开始布局,计算每个节点的位置大小信息. 将渲染 ...
- ZooKeeper 基本概念并介绍RPC中Netty和Zookeeper的使用
前言 ZooKeeper 是一个分布式协调服务,可用于服务发现,分布式锁,分布式领导选举,配置管理等.Zookeeper提供一个类似Linux文件系统的属性结构,每个节点可存储少量的内存文件,并提供每 ...
- go beego框架与python实现数据交互
目标:将go中一个二维数组传到pythone中处理并返回.难点在于数据格式的转换. go代码如下: package main import ( "os/exec" "sy ...
- cadence Virtuoso ADE原理图AnalogLib库中的switch使用
Symbol: switch A,B:等效于一个电阻; C,D:等效于控制开关(CD间的控制电压控制AB的断开或闭合); open switch resistance:开关断开状态下的等效电阻(AB之 ...
- RabbitMQ 入门 (Go) - 3. 模拟传感器,生成数据并发布
现在,我们需要模拟传感器,生成数据,并发布到 RabbitMQ. 建立传感器项目 在 GOPATH src 下建立文件夹 sensors,使用 go mod init 初始化,并创建 main.go. ...
- Centos7安装maven详情以及配置
一.maven安装: 1.获取maven下载地址: 查询maven最新版本地址:https://maven.apache.org/download.cgi 当前最新版本为maven 3.6.3 ...
- 高精度加法(c++)
为什么要用高精度? 有时我们要进行精度较高的运算时,就要使用高精度来进行运算: 就如例题: 大整数加法 时间限制: 1000 ms 内存限制: 65536 KB 提交数: 21965 通过数: 634 ...
- maven setting.xml 阿里云镜像 没有一句废话
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Soft ...
- 【解决】Could not GET 'https://maven.google.com
现象 解决方案 1. 由于Google被墙导致的问题 参考 配置阿里云源修改maven的源地址. 2. 由于错误配置代理导致的问题(提示400) 查看工程目录下的gradle.properties和C ...
- [面试仓库]CSS面试题汇总-定位篇
一,relative.absolute 的区别 我们还是来说常见的地方.首先就是relative,absolute的区别: relative是依据自身来定位的 absolute则是依据离其最近一层 ...