duan2891 2011-01-30 20:10
浏览 65
已采纳

使用PHP从URL创建缩略图

I want to generate thumbnails of websites. I found a few sites that handle it with an API, such as http://www.websnapr.com/

How can this be done with PHP so I can handle all of the requests on my server?

  • 写回答

4条回答 默认 最新

  • doumao8803 2011-01-30 20:29
    关注

    PHP can't do this on it's own as it does not include an HTML rendering library.

    You can find an external method of capturing the screenshots and communicate with that method using PHP, though.

    First you'll need a system set up to take screenshots. Look into IECapt (http://iecapt.sourceforge.net/), CutyCapt (http://cutycapt.sourceforge.net/) or khtml2png (http://khtml2png.sourceforge.net/) and configure one of those on a system.

    Then set up a PHP script that will exec() the screenshot taking application and return the data to the browser.

    For example:

    <?php
    $in_url = 'http://' . $_REQUEST['url']; // !!INSECURE!! In production, make sure to sanitize this input!
    $filename = '/var/cutycapt/images/' . $_REQUEST['url'] . '.png'; // Will probably need to normalize filename too, this is just an illustration
    
    // First check the file does not exist, if it does exist skip generation and reuse the file
    // This is a super simple caching system that will help to reduce the resource requirements
    if(!file_exists($filename)) {
      exec('/usr/local/bin/CutyCapt --url="' . $_REQUEST['url'] . '" --out="' . $filename . '"');
    }
    
    // Second check if the file exists, either from a previous run or from the above generation routine
    if(file_exists($filename)) {
      header('Content-type: image/png');
      print file_get_contents($filename);
    } else {
      header('Status: 500 Internal Server Error');
    }
    ?>
    

    You can then call the script in the following way:

    http://localhost/screenshot.php?url=www.google.com
    

    Building the screenshots is going to be CPU intensive so I'd strongly recommend building in some kind of file caching (ie. save the results of the output and check to see if you already have a screenshot somewhere), perhaps even a queuing system so your screenshot server does not get overwhelmed.

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

报告相同问题?

悬赏问题

  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥15 Oracle触发器记录修改前后的字段值
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 stm32开发clion时遇到的编译问题