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