ubuntu 查看php是否运行,php5-GD安装后的运行测试

GD是linux中功能非常强大的图像生产模块,一般配合php语言使用。在debian或ubuntu下面安装方法:apt-get install php5-gd 即可

如果安装成功,可以通过建立testphp.php测试页来检查是否正常:

vim testphp.php

phpinfo();

?>

保存退出,后通过浏览器运行它看到如下信息:

index.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42

PHP Version 5.3.2-1ubuntu4.5

System

Linux netren 2.6.32-24-generic-pae #43-Ubuntu SMP Thu Sep 16 15:30:27 UTC 2010 i686

Build Date

Sep 17 2010 13:32:04

Server API

Apache 2.0 Handler

Virtual Directory Support

disabled

Configuration File (php.ini) Path

/etc/php5/apache2

........省略

GD Support

enabled

GD Version

2.0

FreeType Support

enabled

FreeType Linkage

with freetype

FreeType Version

2.3.11

T1Lib Support

enabled

GIF Read Support

enabled

GIF Create Support

enabled

JPEG Support

enabled

libJPEG Version

6b

PNG Support

enabled

libPNG Version

1.2.42

WBMP Support

enabled

即为安装正常。

同样可以建立一个小的测试文件来显示它生成图片的效果,如testpic.php

vim testpic.php

$string = '1 2 3 4 5 6 7 8 9 ABCDEF G' ;

$font_size = 5 ;

$width = p_w_picpathfontwidth ( $font_size )* strlen ( $string );

$height = p_w_picpathfontheight ( $font_size )* 2 ;

$img = p_w_picpathcreate ( $width , $height );

$bg = p_w_picpathcolorallocate ( $img , 225 , 225 , 225 );

$black = p_w_picpathcolorallocate ( $img , 0 , 0 , 0 );

$len = strlen ( $string );

for( $i = 0 ; $i < $len ; $i ++)

{

$xpos = $i * p_w_picpathfontwidth ( $font_size );

$ypos = rand ( 0 , p_w_picpathfontheight ( $font_size ));

p_w_picpathchar ( $img , $font_size , $xpos , $ypos , $string , $black );

$string = substr ( $string , 1 );

}

header ( "Content-Type: p_w_picpath/gif" );

p_w_picpathgif ( $img );

p_w_picpathdestroy ( $img );

?>

保存退出,并通过浏览器查看。即可看到:

cc.gif

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值