现在正在研究一个由url截取网站截图的小概念。通过引用很多使用wkhtmltoimage的网站。目前正在使用Mac。已成功安装wkhtmltoimage,也试过
wkhtmltoimage www.google.com ggss.png
在终端。它成功输出了网站的截图。但是当我尝试使用PHP执行上述命令时,我看不到输出图像或任何错误。以下是我试过的代码
<?php
$output = shell_exec('wkhtmltoimage http://www.bbc.com bbc.jpg');
?>
任何帮助将不胜感激
答案 0 :(得分: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" />
答案 1 :(得分:1)
尝试指定命令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');
?>
答案 2 :(得分:1)
好的,最后通过浏览器通过php执行了shell命令。所以我认为我可以分享可能对某人有用。所以真正的问题是许可。
所以当我在终端输出上使用whoami命令时是macuser。 但是当我尝试在php输出中使用shell_exec执行命令时没有人。因为apache没有得到许可。所以我通过PHP
执行以下命令来执行shell命令在/ etc中找到httpd.conf文件并找到
用户没人 小组nogroup
将nobody更改为您要设置为要执行的用户的用户名。对我来说,它的用户macuser
然后执行以下命令。 (为了确保我在终端中将它们作为su执行)
现在,当我执行以下代码时,它可以正常工作
<?php
$output = shell_exec('/usr/local/bin/wkhtmltoimage http://www.google.com /Applications/XAMPP/xamppfiles/htdocs/demotasks/google.jpg');
?>
感谢boulderapps!
答案 3 :(得分:0)
我建议使用诸如this one
之类的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);
查看the docs了解更多信息。