Skip to content

Convert HTML document to PNG in PHP

rest7 edited this page Jun 13, 2017 · 2 revisions

Converting HTML webpages to PNG in PHP using free API:

<?php
$url = 'http://rest7.com/html_to_image';
$data = json_decode(file_get_contents('http://api.rest7.com/v1/html_to_image.php?url=' . $url . '&format=png'));

if (@$data->success !== 1)
{
    die('Failed');
}
$image = file_get_contents($data->file);
file_put_contents('rendered_page.png', $image);
Clone this wiki locally