📄 imagegif.php3
字号:
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -