imagefilltoborder.php3

来自「linux操作系统中 php 核心编程所有例程 都是一些很不错的案例」· PHP3 代码 · 共 31 行

PHP3
31
字号
<HTML>
<HEAD>
<TITLE>imagefilltoborder</TITLE>
</HEAD>
<BODY>
<?
	// cut out a circular view of an image 
	header("Content-type: image/gif");
	$image = imagecreatefromgif("xitami1.gif");

	$colorMagenta = 
		imagecolorallocate($image, 255, 0, 255);

	// draw a circle 
	imagearc($image, 
		100, 100, 
		50, 50, 
		0, 360, 
		$colorMagenta);

	// fill outside of circle 
	imagefilltoborder($image, 0, 0, 
		$colorMagenta, $colorMagenta);

	// turn magenta transparent 
		imagecolortransparent($image, $colorMagenta);

	imagegif($image);
?>
</BODY>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?