码迷,mamicode.com
首页 >  
搜索关键字:gd    ( 776个结果
php常用函数之Math、GD篇
floatabs(float);用途:求绝对值>>例子:$abs=abs(-4.5);=>输出:4.5;floatround(float,intn);用途:对浮点数四舍五入n位>>例子:echoround(1.955555,2);=>输出:1.96;intceil(float);用途:进一法取整>>...
分类:Web程序   时间:2014-10-10 02:23:25    阅读次数:202
PHP图像操作:3D图、缩放、旋转、裁剪、添加水印(一)
来源:http://www.ido321.com/875.html1、利用php gd库的函数绘制3D扇形统计图 1: 50; $i--) 20: { 21: imagefilledarc($image, 50, $i, 100, 50, -160, 40, $darknavy, ...
分类:Web程序   时间:2014-10-03 03:04:24    阅读次数:162
PHP图像操作:3D图、缩放、旋转、裁剪、添加水印(一)
1、利用php gd库的函数绘制3D扇形统计图 1: <?php 2: header("content-type","text/html;charset=utf-8"); 3: /*扇形统计图*/ 4: $image = imagecreatetruecolor(100, 100); /*创建画布*/ 5: 6: /*设置画布需要的颜色*/ 7: $white = imagecolorallocate($image,0xff,0xff,0xff)...
分类:Web程序   时间:2014-10-03 02:49:34    阅读次数:315
GDIPlus非典型误用一例
// ** 初始化GDI+Gdiplus::GdiplusStartupInput gdiplusStartupInput;// ** 该成员变量用来保存GDI+被初始化后在应用程序中的GDI+标识。ULONG_PTR gdiplusToken;Gdiplus::GdiplusStartup(&gd...
分类:其他好文   时间:2014-10-01 02:25:20    阅读次数:191
vim+gdb+ddd+xxgdb精彩的程序调试
//------------------------------------------------------------------------------------------------------------------------------------------------图形GD...
分类:数据库   时间:2014-09-30 15:35:09    阅读次数:281
http_load测试Web引擎性能
1:下载http_load#wget -c http://soft.kwx.gd/tools/http_load-12mar2006.tar.gz 2:解压并编译http_loadtar xzvf http_load-12mar2006.tar.gz #解压http_load压缩包cd htt...
分类:Web程序   时间:2014-09-26 01:12:47    阅读次数:423
PHP用GD库绘制图片,制作验证码浏览器不能输出
1,代码如下:<?php functionfillRandomString(){ //生成验证码 $char=array_merge(range(0,9),range("a","z"),range("A","Z")); //讲字符串$char打乱 $luan=str_shuffle(implode("",$char)); //从字符串中随机取四位 returnsubstr($luan,0,4); } //创建画布 header..
分类:Web程序   时间:2014-09-24 16:34:59    阅读次数:199
编译php提示configure: error: GD build test failed错误
在编译完gd库等相应文件后,编译php文件的过程中提示一下错误;configure:error:GDbuildtestfailed.Pleasechecktheconfig.logfordetails.解决方法:把php的编译参数:--with-gd修改为:--with-gd=/usr/local/gd/再次对php进行编译./configure...
分类:Web程序   时间:2014-09-18 19:10:24    阅读次数:193
用apt-get方法安装mysql5 + Apache2 + PHP5+Phpmyadmin
安装上mysql5sudoapt-getinstallmysql-server安装apache2sudoapt-getinstallapache2安装php5sudoapt-getinstallphp5安装php的mysql模块sudoapt-getinstallphp5-mysql安装GD库sudoapt-getinstallphp5-gd安装phpmyadminsudoapt-getinstallphpmyadmin==============..
分类:数据库   时间:2014-09-17 15:27:12    阅读次数:268
mysql-cluster集群
实验环境:CentOSrelease5.5(三台)mysql软件:http://dev.mysql.com/get/Downloads/MySQL-Cluster-7.1/mysql-cluster-gpl-7.1.4b-linux-i686-glibc23.tar.gz/from/http://gd.tuwien.ac.at/db/mysql/管理节点:192.168.1.22数据节点:192.168.1.23数据节点:192.168.1.24sql节..
分类:数据库   时间:2014-09-16 16:06:01    阅读次数:268
776条   上一页 1 ... 69 70 71 72 73 ... 78 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!