📄 rect_filled.php
字号:
<html>
<body>
<?php
$img=ImageCreate(300,300);
$bgcolor=ImageColorAllocate($img,255,100,100);
$red=ImagecolorAllocate($img,255,0,0);
Imagefilledrectangle($img,50,170,150,270,$red);
ImagePNG($img,"pic.png");
ImageDestroy($img);
?>
<img src="pic.png" border=0>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -