PHP实现的功能是显示8条基色色带
作者:bea
由于PHP的本色表参数只能支持256,为了能实现显示8色或更多的色带,我使用了参数传递的方法来实现。具体实现的代码如下:1、生成色带图形的程序transition.php<?php/**功能:生成色带图形*程序员:wlxz* 日期:2002-00-00*/Header("Content-type: image/Png");$im = ImageCreate(255,50);$bgcolor = ImageColorAllocate($im, 0, 0, 0);$x =
由于PHP的本色表参数只能支持256,为了能实现显示8色或更多的色带,我使用了参数传递的方法来实现。具体实现的代码如下:
1、生成色带图形的程序
transition.php
<?php
/*
* 功能:生成色带图形
* 程序员:wlxz
* 日期:2002-00-00
*/
Header("Content-type: image/Png");
$im = ImageCreate(255,50);
$bgcolor = ImageColorAllocate($im, 0, 0, 0);
$x = trim($_GET['x']);
$y = trim($_GET['y']);
$z = trim($_GET['z']);
for($i=0;$i<255;$i++){
$fontcol = ImageColorAllocate($im, $i*$x, $i*$y, $i*$z);
ImageLine($im, $i, 0, $i, 50, $fontcol);
}
ImagePng($im);
ImageDestroy($im);
?>
2、调用生成多个不同的图形
view_color.php
<?php
/*
* 功能:
* 程序员:向黎
* 日期:2002-00-00
*/
?>
<html>
<head>
<title> </title>
<meta name="Author" content="XIANG Li">
</head>
<body>
<table>
<tr>
<td><!--色带1-->
<input type="image" src="./transition.php?x=0&y=0&z=0">
</td>
</tr>
<tr>
<td><!--色带2-->
<input type="image" src="./transition.php?x=0&y=0&z=1">
</td>
</tr>
<tr>
<td><!--色带3-->
<input type="image" src="./transition.php?x=0&y=1&z=0">
</td>
</tr>
<tr>
<td><!--色带4-->
<input type="image" src="./transition.php?x=0&y=1&z=1">
</td>
</tr>
<tr>
<td><!--色带5-->
<input type="image" src="./transition.php?x=1&y=0&z=0">
</td>
</tr>
<tr>
<td><!--色带6-->
<input type="image" src="./transition.php?x=1&y=0&z=1">
</td>
</tr>
<tr>
<td><!--色带7-->
<input type="image" src="./transition.php?x=1&y=1&z=0">
</td>
</tr>
<tr>
<td><!--色带8-->
<input type="image" src="./transition.php?x=1&y=1&z=1">
</td>
</tr>
</table>
</body>
</html>
有用 | 无用
1、生成色带图形的程序
transition.php
<?php
/*
* 功能:生成色带图形
* 程序员:wlxz
* 日期:2002-00-00
*/
Header("Content-type: image/Png");
$im = ImageCreate(255,50);
$bgcolor = ImageColorAllocate($im, 0, 0, 0);
$x = trim($_GET['x']);
$y = trim($_GET['y']);
$z = trim($_GET['z']);
for($i=0;$i<255;$i++){
$fontcol = ImageColorAllocate($im, $i*$x, $i*$y, $i*$z);
ImageLine($im, $i, 0, $i, 50, $fontcol);
}
ImagePng($im);
ImageDestroy($im);
?>
2、调用生成多个不同的图形
view_color.php
<?php
/*
* 功能:
* 程序员:向黎
* 日期:2002-00-00
*/
?>
<html>
<head>
<title> </title>
<meta name="Author" content="XIANG Li">
</head>
<body>
<table>
<tr>
<td><!--色带1-->
<input type="image" src="./transition.php?x=0&y=0&z=0">
</td>
</tr>
<tr>
<td><!--色带2-->
<input type="image" src="./transition.php?x=0&y=0&z=1">
</td>
</tr>
<tr>
<td><!--色带3-->
<input type="image" src="./transition.php?x=0&y=1&z=0">
</td>
</tr>
<tr>
<td><!--色带4-->
<input type="image" src="./transition.php?x=0&y=1&z=1">
</td>
</tr>
<tr>
<td><!--色带5-->
<input type="image" src="./transition.php?x=1&y=0&z=0">
</td>
</tr>
<tr>
<td><!--色带6-->
<input type="image" src="./transition.php?x=1&y=0&z=1">
</td>
</tr>
<tr>
<td><!--色带7-->
<input type="image" src="./transition.php?x=1&y=1&z=0">
</td>
</tr>
<tr>
<td><!--色带8-->
<input type="image" src="./transition.php?x=1&y=1&z=1">
</td>
</tr>
</table>
</body>
</html>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 使用无限生命期Session的方法
- 图象函数中的中文显示
- 使用php+xslt在windows平台上
- 配置PHP使之能同时支持GIF和JPEG
- PHP输出控制功能在简繁体转换中的应用
- PHP 增加了对 .ZIP 文件的读取功能
- 如何去掉文章里的 html 语法
- 如何分别全角和半角以避免乱码
- 玩转虚拟域名◎+ .
- 桌面中心(四)数据显示
- 桌面中心(一)创建数据库
- 桌面中心(二)数据库写入
- 桌面中心(三)修改数据库
- 如何对PHP程序中的常见漏洞进行攻击(上)
- PHP4在WinXP下IIS和Apache2服务器上的安装实例
- PHP 和 MySQL 开发的 8 个技巧
- 用PHP连接Oracle数据库
- PHP面向对象编程快速入门
- PHP模拟SQL Server的两个日期处理函数