imagegif.php3
来自「linux操作系统中 php 核心编程所有例程 都是一些很不错的案例」· PHP3 代码 · 共 19 行
PHP3
19 行
<HTML>
<HEAD>
<TITLE>imagegif</TITLE>
</HEAD>
<BODY>
<?
// create a blue square
$image = imagecreate(100, 100);
$colorBlue = imagecolorallocate($image, 0, 0, 255);
imagefill($image, 0, 0, $colorBlue);
// write it to a file
imagegif($image, "blue_square.gif");
// print image tag that show it
print("<IMG SRC=\"blue_square.gif\">");
?>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?