Snappy
Windows 7 で(src - http://www.codediesel.com/downloads/snappy ) とwkhtmltoimage
(src - http://code.google.com/p/wkhtmltopd ) を使用して URL から画像を取得しようとしましたが、毎回私は得る
エラー: エラーが含まれているため、画像を表示できません
コード:
<?php
require_once('Snappy/Media.php');
require_once('Snappy/Image.php');
/* 'wkhtmltoimage' executable is located in the current directory */
$snap = new Image('C://"Program Files"/wkhtmltopdf/wkhtmltopdf.exe');
/* Displays the bbc.com website index page screen-shot in the browser */
header("Content-Type: image/jpeg");
$snap->output('http://www.bbc.com bbc.jpg');
?>