Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can I find the colour of a pixel of an image?

Answers were Sorted based on User's Feedback



How can I find the colour of a pixel of an image? ..

Answer / laxmikant

<?php
$im = imagecreatefrompng("php.png");
$rgb = imagecolorat($im, 10, 15);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;

var_dump($r, $g, $b);
?>

Is This Answer Correct ?    1 Yes 0 No

How can I find the colour of a pixel of an image? ..

Answer / jude jeevanraj.p

This is easily done through using the imagecolorat function.

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

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

Is it necessary to use closing tag in php?sometime without closing tag things work.why?

2 Answers   ShopRite,


What is a stored procedure in mysql?

0 Answers  


What is the meaning of "enctype= multipart/form-data" ?

0 Answers  


How to remove the new line character from the end of a text line in php?

0 Answers  


how to open & closing opening period in fico

0 Answers   NS,


How do you identify independent and dependent variables in research?

0 Answers  


What is .htaccessfile and use of this file

5 Answers  


How can I display text with a php script?

0 Answers  


What is difference between include and include_once in php?

0 Answers  


What is magic quotes?

0 Answers  


How data or variable can be receive or send from PHP to HTML page??

3 Answers   TCS,


Which php global variable is used for uploading a file?

0 Answers  


Categories