Playing around with the examples posted in PHP's imagecopyresampled manual I can't seem to muster a workable function for the task.
Is it even possible to resize remotely hosted images like this, that is...without ever storing/saving either the original or resized images to the server?
Something like...
<?php
$image = "http://some_remote_loacation.com/image.jpg";
$width = "144";
$height = "127";
?>
<img src ="<?php echo thumb_this($image,$width,$height); ?>" />