Grabbing image with cURL php

14,466

I test your script it work fine for me, just remove the useless double quote and dot for $image.

<?
$image ="http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=5";
$rename="123";

$ch = curl_init($image);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$rawdata=curl_exec ($ch);
curl_close ($ch);

$fp = fopen("$rename.jpg",'w');
fwrite($fp, $rawdata); 
fclose($fp);
?>
Share:
14,466
David Morin
Author by

David Morin

Updated on June 29, 2022

Comments

  • David Morin
    David Morin almost 2 years

    Trying to save image to my server using cURL. The image appears to download. It shows the correct bytes but when i link image does not work. I then DL to see and nope its a blank image.

    here is my code... whats the issue with it?

    $ch = curl_init("'. $image .'");
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
    $rawdata=curl_exec ($ch);
    curl_close ($ch);
    
    $fp = fopen("$rename.jpg",'w');
    fwrite($fp, $rawdata); 
    fclose($fp);