Ben, bir web sunucusu uzak bir görüntü almak onu yeniden örneklemek, ve sonra tarayıcıya kadar hizmet ve bir dosyaya kaydetmek mümkün olmak istiyorum. İşte ben bugüne kadar ne var:
$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
Aşağıdaki tartışma dayalı doğru cevabı yansıtacak şekilde güncellendi