Recommend this page to a friend! |
Download .zip |
Info | Example | View files (6) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2024-01-09 (4 days ago) | Not yet rated by the users | Total: 2,026 | All time: 1,934 This week: 107 |
Version | License | PHP version | Categories | |||
webthumbnail 1.10 | BSD License | 5.3 | PHP 5, Web services, Geography |
Description | Author | ||||||||||||||||
This class can capture a screenshot of a page using WebThumbnail. Innovation Award
|
|
What is the best PHP html to image class?
HTML to image
What is the best PHP HTML text to image conversion class?
Convert HTML text to image
<?php |
_ _ _ _ _ _
__ _____| |__ | |_| |__ _ _ _ __ ___ | |__ _ __ __ _(_) |
\ \ /\ / / _ \ '_ \| __| '_ \| | | | '_ ` _ \| '_ \| '_ \ / _` | | |
\ V V / __/ |_) | |_| | | | |_| | | | | | | |_) | | | | (_| | | |
\_/\_/ \___|_.__/ \__|_| |_|\__,_|_| |_| |_|_.__/|_| |_|\__,_|_|_|
http://webthumbnail.org
The simplest way to get a website screenshot!
This repository contains legacy code and is no longer maintaned!
The Webthumbnail.org has recently been rebranded to Miniature.io.<br /> Visit Miniature.io for more information and new PHP client library.
1) What is webthumbnail.org? The webthumbnail.org is a free webapi for capturing website screenshots. Shortly speaking it is an web based application that you can simply integrate with your website and have thumbnails of any website on demand.
This project is a simple php client for using the api.webthumbnail.org directly from the php code. It can be used in any php application, distributed under the terms of the BSD license.
2) How to use the api? The simples case is to just call the api from pure html code.
<img src="http://api.webthumbnail.org?width=512&height=512&format=png&browser=firefox&url=http://webthumbnail.org" alt="Captured by webthumbnail.org" />
It will show a screenshot of http://webthumbnail.org directly on your website.
3) How to capture a website screenshot from php?
$thumb = new Webthumbnail("http://webthumbnail.org"); $thumb
->setWidth(512)
->setHeight(512)
->captureToOutput();
4) How to capture a website screenshot and save it to a disk file?
$thumb = new Webthumbnail("http://webthumbnail.org"); $thumb
->setWidth(512)
->setHeight(512)
->captureToFile($path);
5) Need more info? Visit http://webthumbnail.org
Feel free to test and use the application :)
Files |
File | Role | Description | ||
---|---|---|---|---|
examples (3 files) | ||||
.project | Data | Auxiliary data | ||
README.md | Doc. | Documentation | ||
webthumbnail.php | Class | The PHP wrapper class for http://webthumbnail.org |
Files | / | examples |
File | Role | Description |
---|---|---|
capture_to_browser.php | Example | Example, how to capture a website screenshot and send the image to the browser. |
capture_to_file.php | Example | Example, how to capture a website screenshot and save the image into a disk file. |
capture_without_delay.php | Example | Example script |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.