0

现在正在研究一个通过 url 截取网站截图的小概念。通过引用很多网站使用 wkhtmltoimage。目前使用 Mac。成功安装wkhtmltoimage,也试过了

wkhtmltoimage www.google.com ggss.png

在终端。它成功输出了网站的截图。但是当我尝试使用 PHP 执行上述命令时,我看不到输出图像或任何错误。下面是我试过的代码

<?php
$output = shell_exec('wkhtmltoimage http://www.bbc.com bbc.jpg');
?>

任何帮助,将不胜感激

4

4 回答 4

2

另一种使用 PHP 截取屏幕截图而不需要任何额外服务器资源的方法是使用 Google 的PageSpeed Insights API,它不需要任何类型的任何身份验证。它现在是免费且开放的,所以请利用它。

相同的实现细节在这里:Generating Screenshots of URLs using Google's secret magic API

源代码

<?php
  // Creating a proxy to use GET request to hit the Google Page Speed API and receive a screenshot.
  // Check if the URL parameter for our proxy is set.
  if (!empty($_GET['url'])) {
    // Make sure the given value is a URL.
    if (filter_var($_GET['url'], FILTER_VALIDATE_URL)) {
      // Hit the Google PageSpeed Insights API.
      // Catch: Your server needs to allow file_get_contents() to make this run. Or you need to use cURL.
      $googlePagespeedResponse = file_get_contents("https://www.googleapis.com/pagespeedonline/v2/runPagespeed?screenshot=true&url={$_GET['url']}");

      // Convert the JSON response into an array.
      $googlePagespeedObject = json_decode($googlePagespeedResponse, true);

      // Grab the Screenshot data.
      $screenshot = $googlePagespeedObject['screenshot']['data'];
      // Replace Google's anamolies.
      $screenshot = str_replace(array('_','-'), array('/','+'), $screenshot);

      // Build the Data URI scheme and spit out an <img /> Tag.
      echo "<img src=\"data:image/jpeg;base64,{$screenshot}\" alt=\"Screenshot\" />";
    } else {
      // If not a valid URL.
      echo "Given URL is not valid.";
    }
  } else {
    // URL not set.
    echo "You need to specify the URL.";
  }
?>

您也可以使用客户端执行此操作:

$(function () {
  // Get the URL.
  var url = "https://praveen.science/";
  // Prepare the URL.
  url = encodeURIComponent(url);
  // Hit the Google Page Speed API.
  $.get("https://www.googleapis.com/pagespeedonline/v1/runPagespeed?screenshot=true&strategy=mobile&url=" + url, function (data) {
    // Get the screenshot data.
    var screenshot = data.screenshot;
    // Convert the Google's Data to Data URI scheme.
    var imageData = screenshot.data.replace(/_/g, "/").replace(/-/g, "+");
    // Build the Data URI.
    var dataURI = "data:" + screenshot.mime_type + ";base64," + imageData;
    // Set the image's source.
    $("img").attr("src", dataURI);
  });
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h1>Hard Coded Screenshot of my Website:</h1>
<img src="//placehold.it/300x50?text=Loading+Screenshot..." alt="Screenshot" />

于 2018-07-16T13:02:43.883 回答
1

尝试指定 command 的完整路径wkhtmltoimage

编辑

要获取命令wkhtmltoimage完整路径,请运行以下命令:whereis wkhtmltoimage

所以你必须喜欢:

<?php
$output = shell_exec('/full_path_to_wkhtmltoimage_here/wkhtmltoimage http://www.bbc.com /full_path_to_img_here/bbc.jpg');
?>
于 2015-02-04T09:47:27.287 回答
1

好的,最后通过浏览器通过php执行了shell命令。所以我想我可以分享可能对某人有用。所以真正的问题是许可。

所以当我在终端输出上使用 whoami 命令时是 macuser。但是当我尝试在 php 输出中使用 shell_exec 执行命令时,没有人。这是因为apache没有权限。所以我做了以下通过PHP执行shell命令

在 /etc 中找到 httpd.conf 文件并找到

用户nobody 组nogroup

将nobody 更改为您要设置为您要执行的用户的用户名。对我来说它的用户 macuser

然后执行以下命令。(以确保我在终端中将它们作为 su 执行)

  • cd /directory/of/htdocs(对我来说 cd /Applications/XAMPP/xamppfiles/htdocs)
  • 寻找 。-exec chown macuser:macuser {} \;
  • 光盘..
  • chown macuser htdocs

现在当我执行以下代码时它可以工作

<?php
$output = shell_exec('/usr/local/bin/wkhtmltoimage http://www.google.com /Applications/XAMPP/xamppfiles/htdocs/demotasks/google.jpg');
?>

感谢 boulderapps

于 2015-02-05T05:40:46.487 回答
0

我建议使用这样的API

例如,如果您创建一个帐户,您可以调用 API。

// The parameters.
$token = 'YOUR_TOKEN';
$url = urlencode('https://github.com');
$width = 1920;
$height = 1080;
$output = 'image';

// Create the query URL.
$query = "https://screenshotapi.net/api/v1/screenshot";
$query .= "?token=$token&url=$url&width=$width&height=$height&output=$output";

// Call the API.
$image = file_get_contents($query);

// Store the screenshot image.
file_put_contents('./screenshot.png', $image);

查看文档以获取更多信息。

于 2019-10-28T21:58:40.407 回答