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 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog