imagecopyresized.php3
来自「linux操作系统中 php 核心编程所有例程 都是一些很不错的案例」· PHP3 代码 · 共 24 行
PHP3
24 行
<HTML>
<HEAD>
<TITLE>imagecopyresized</TITLE>
</HEAD>
<BODY>
<?
header("Content-type: image/gif");
$image = imagecreate(200,200);
$image2 = imagecreatefromgif("xitami1.gif");
$image2x = imagesx($image2);
$image2y = imagesy($image2);
// flood square with red
$colorRed = imagecolorallocate($image, 255, 0, 0);
imagefill($image, 0, 0, $colorRed);
// drop image2 into image, and stretch it
imagecopyresized($image, $image2, 10, 10, 0, 0,
180, 180, $image2x, $image2y);
imagegif($image);
?>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?