⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagecolorat.php3

📁 linux操作系统中 php 核心编程所有例程 都是一些很不错的案例
💻 PHP3
字号:
<HTML>
<HEAD>
<TITLE>imagecolorat</TITLE>
</HEAD>
<BODY>
<?
	header("Content-type: image/gif");
	$image = imagecreatefromgif("xitami1.gif");

	// get the color at (10,10) 
	$colorIndex = imagecolorat($image, 10, 10);

	// change that color to red 
	imagecolorset($image, $colorIndex, 255, 0, 0);

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

⌨️ 快捷键说明

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