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?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to delete an element from an array?

1151


What is full form of php? Who is the father or inventor of php?

1057


Is php easier than node?

994


Can you convert php to html?

1027


What are the different filter functions used to filter a variable?

1044


How is it possible to propagate a session id?

1069


What are php magic methods?

1047


How does html form submit work?

971


What is the use of imagetypes() method?

1028


Is null or empty c#?

969


What is composer install?

1115


What do you mean range() in php?

1151


Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?

1189


How does php and apache work?

1075


Where php basically used?

1059