if you want to redirect all google images traffic you could do something like this ( add this to the first line of index.php )
Code:
$ref = $HTTP_REFERER ;
if (preg_match ("/google/", $ref)) {
echo "<script>top.location=\"http://redirect.com\";</script>";
}