views:

268

answers:

3

I am using php and I want to take a snapshot of my web page using php. Something similar to this

http://www.moneycontrol.com/gd/mail%5Findices.php

How can i do that?

+1  A: 

You can use Imagemagick.

Linus Sjögren
+1  A: 

Theres is a comprehensive summary of image creation option in Php here. The other option not already mentioned is Cairo.

whatnick
+1  A: 

The fastest and surest way in PHP to create images is to look at the GD Library. They have tons of functions to help you create your image easily.

Should you need a font that is available in Windows Font but not in PHP font, you can use this tool to convert it: http://www.wedwick.com/wftopf.exe

thephpdeveloper