卓越飞翔博客卓越飞翔博客

卓越飞翔 - 您值得收藏的技术分享站
技术文章20412本站已运行347

在PHP中的imagecolorat()函数

<?xml encoding="utf-8" ?>

在PHP中的imagecolorat()函数

The imagecolorat() function gets the index of the color of the pixel.

Syntax

imagecolorat( $img, $x, $y )

Parameters

  • img: Create an image with imagecreatetruecolor() function.

  • x: The x-coordinate of the point.

  • y: The y-coordinate of the point.

Return

The imagecolorat() function returns the color index or FALSE on failure.

Example

The following is an example:

 Live Demo

<?php
   $img = imagecreatefrompng("http://www.tutorialspoint.com/images/tp-logo-diamond.png");
   $rgb = imagecolorat($img, 15, 25);
   $colors = imagecolorsforindex($img, $rgb);
   var_dump($colors);
?>

输出

以下是输出结果:

array(4) { ["red"]=> int(255) ["green"]=> int(255) ["blue"]=> int(255) ["alpha"]=> int(127) }
卓越飞翔博客
上一篇: 检查N个骰子的可见面的最大和是否至少为X
下一篇: 返回列表
留言与评论(共有 0 条评论)
   
验证码:
隐藏边栏