I want to be able to retrieve a remote image from a webserver, resample it, and then serve it up to the browser AND save it to a file. Here is what I have so far:
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "$rURL");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
$out = curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
$imgRes = imagecreatefromstring($out);
imagejpeg($imgRes, $filename, 70);
header("Content-Type: image/jpg");
imagejpeg($imgRes, NULL, 70);
exit();
Update
Updated to reflect correct answer based on discussion below
You can fetch the file into a GD resource using
imagecreatefromstring():from there, it’s pretty straightforward using imagecopyresampled().
Output it using imagejpeg() or whichever output format suits you best.
Make one output with a file name:
then send the same resource to the browser:
depending on the image’s format, you may want to use the imagepng() or imagegif() functions instead.
You may want to work with different output formats depending on the input file type. You can fetch the input file type using getimagesize().
Remember that you can adjust the resulting JPEG image’s quality using the
$qualityparameter. Default is 75% which can look pretty crappy.