How can I find the colour of a pixel of an image?
You must pass as parameters the image resource, and the x and y co-ordinates you want to find the color of, for instance:
$rgb = imagecolorat($im, 5, 10);
Will get a reference to the colour used at 5,10 (X,Y) on the image.
Depending on the version of the GD library you are using and the type of image, you may experience different return values, for more information take a look at:
http://uk3.php.net/manual/en/function.imagecolorat.php
Comment on this Question and Answer >>>
ASK A QUESTION
More images PHP Questions
I recently updated from shared servers to virtual dedicated, I now cannot see any of the images I try to upload. The hosting company says that the script for the images are in the root directory but the images are not. The programmer said he didn't cHow to display multiple images in a form path came from database and images are store in Image folder(assume 10 images are uploded that i want to display)
How can I rotate an image?
how to rotate an image using php code?
How can I find the width and height of an image resource?
