<?php
// 画像をオープンします
$im = imagecreatefrompng('nexen.png');
// 色を取得します
$start_x = 40;
$start_y = 50;
$color_index = imagecolorat($im, $start_x, $start_y);
// 可読形式にします
$color_tran = imagecolorsforindex($im, $color_index);
// どんな内容でしょう?
print_r($color_tran);
?>
Array
(
[red] => 226
[green] => 222
[blue] => 252
[alpha] => 0
)