imagecolorat() function in PHP

PHPz
Release: 2023-09-16 14:46:01
forward
1570 people have browsed it

imagecolorat() function in PHP

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

Syntax

imagecolorat( $img, $x, $y )
Copy after login

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);
?>
Copy after login

输出

以下是输出结果:

array(4) { ["red"]=> int(255) ["green"]=> int(255) ["blue"]=> int(255) ["alpha"]=> int(127) }
Copy after login

The above is the detailed content of imagecolorat() function in PHP. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!