doutangu4671 2013-09-20 06:14
浏览 28
已采纳

图像不是使用file_get_contents下载的

I am using the below mentioned code to download image.

$image_url='http://www.abcd.com/I_298f02_4766792.jpg';

$doc_root= $_SERVER['DOCUMENT_ROOT'];
$image_upload_path = $doc_root . '/';
$image_name2 = 'img-' . time() . '.jpg';

$destination  = $image_upload_path . $image_name2;

$data = file_get_contents($image_url);
$file = fopen($destination, "w+");
fputs($file, $data);
fclose($file);

The above mentioned code is working fine in development environment to download image from any website. The code also works in live site to download images from other website except only one site.

The image seems to be downloaded but whenever i am trying to open the image using any image viewer, an error message is being displayed which is given below.

Could not load image 'img-65456465.jpg'. Error interpreting JPEG image file (Not a JPEG file: starts with 0x3c 0x21)

I checked the error log as well but found no issue. I am not understanding why its image download functionality is not working with that particular website only.

Note: 1) I checked that the original image type hosted in that website is JPEG only.

EDIT: When i am trying to view the downloaded image using browser, i found the below mentioned error.

The image 'http://www.my-live-site.com/folder/img-65456465.jpg' can not be displayed because it contains error.

As per suggestion, i am providing the original website link. Website: http://www.funnyjunk.com/ Image: any image link from this website. For example http://static.fjcdn.com/pictures/The+smarterest.+Wow+a+description+I+could+say+anything+I_298f02_4766792.jpg

Any help on this will be appreciated.

  • 写回答

4条回答 默认 最新

  • dqwn64004 2013-09-20 06:26
    关注

    What if you change the fopen() to:

    $file = fopen($destination, "wb+"); // binary writing
    

    Let me know.

    EDIT

    Here's the code that will work:

    <?php
    error_reporting(E_ALL);
    ini_set('display_errors', 1);
    ini_set('log_errors', 0);
    
    $opts = array(
      'http'=>array(
        'method'=>"GET",
        'header'=>"Accept-language: en
    " .
            "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:23.0) Gecko/20100101 Firefox/23.0
    " . 
        "Referer: http://www.funnyjunk.com
    "
      )
    );
    
    $image_url = 'http://static.fjcdn.com/pictures/The+smarterest.+Wow+a+description+I+could+say+anything+I_298f02_4766792.jpg';
    
    $doc_root= $_SERVER['DOCUMENT_ROOT'];
    $image_upload_path = $doc_root . '/';
    $image_name2 = 'img-' . time() . '.jpg';
    
    $destination  = $image_upload_path . $image_name2;
    
    $data = file_get_contents($image_url, false, stream_context_create($opts));
    //$file = fopen($destination, "w+");
    //fputs($file, $data);
    //fclose($file);
    header("Content-type: image/jpeg");
    echo $data;
    ?>
    

    stream_context_create() with the referrer to the original site did the trick.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)
  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体