Re: [PHP] Create image from HTML

2009-01-10 Thread tedd
At 11:29 AM -0500 1/9/09, Christoph Boget wrote: Does anyone know if it's possible, using PHP, to take HTML (either as an input or from a URL) and generate an image (essentially, create a screenshot) of that HTML/page? I've looked around but was unable to find anything and I'm just not sure if i

Re: [PHP] Create image from HTML

2009-01-09 Thread ceo
I know there was an OSS package that took any URL and made a screenshot of it... Thumbnailer or somesuch?... Commercial folks do it. http://browsercam.com/ Compare cost to dev costs for roll your own... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

Re: [PHP] Create Image From HTML

2005-12-09 Thread tg-php
As Jochem mentioned, you can use the 'onclick' event to trigger some JS when a user clicks on something. I wanted to add that you may be able to use the 'innerHTML' property to get the HTML contained within the area clicked too. It sounds like you're saying that the user clicks on a table and t

Re: [PHP] Create Image From HTML

2005-12-09 Thread Jochem Maas
Shaun wrote: Hi, I am trying to create a Content Management System where users can click on various parts of a page and the content is displayed in a JavaScript text editor. For each tag I intend to wrap a link () around it. This works fine for tags but I cant put a link around a tag becaus