You should use FQL and query the photo table https://developers.facebook.com/docs/reference/fql/photo or link_stat table https://developers.facebook.com/docs/reference/fql/link_stat..
You can see how it delivers the results here: http://developers.facebook.com/tools/explorer?fql=SELECT%20url%2C%20normalized_url%2C%20share_count%2C%20like_count%2C%20comment_count%2C%20total_count%2C%0Acommentsbox_count%2C%20comments_fbid%2C%20click_count%20FROM%20link_stat%20WHERE%20url%3D%22http%3A%2F%2Fwww.facebook.com%2Fphoto.php%3Ffbid%3D364861533533284%22
And here is how you can use the FQL calls to get the result:
<?php
$img_url='http://www.facebook.com/photo.php?fbid=364861533533284';
$query_url="https://api.facebook.com/method/fql.query?query=
select%20total_count,share_count,like_count,comment_count,
commentsbox_count%20from%20link_stat%20where%20
url='" . $directory_url . "'&format=json";
$response = file_get_contents($query_url);
$response_array = json_decode($response, true);
$params=$response_array[0];
$total_count=$params['total_count'];
$like_count=$params['like_count'];
$comment_count=$params['comment_count'];
$share_count=$params['share_count'];
?>