<?php
// 画像を読み込みます
$im = imagecreatefromgif('phplogo.gif');
// 最も近い色を画像から取得します
$colors = array();
$colors[] = imagecolorresolvealpha($im, 255, 255, 255, 0);
$colors[] = imagecolorresolvealpha($im, 0, 0, 200, 127);
// 出力します
print_r($colors);
imagedestroy($im);
?>
Array
(
[0] => 89
[1] => 85
)