How to save webpage as a image file using PHP?

前端 未结 4 1370
醉酒成梦
醉酒成梦 2020-11-30 10:53

I want to save webpage as image file or i want to take snapshot of an webpage using PHP. Just like firefox extension Fireshot doing.

4条回答
  •  眼角桃花
    2020-11-30 11:27

    You'll need to render the page with something. If you really want to only use php, i suggest you HTMLTOPS, wich render the page and output it in a ps file (ghostscript), then, convert it in a .jpg, .png, .pdf.. can be little slower with complex pages (and dont support all the CSS).

    Else, you can use wkhtmltopdf to output a html page in pdf, jpg, whaterver.. Accept CSS2.0, use the webkit (safari's wrapper) to render the page.. so should be fine. You have to install it on your server, as well..

    Source: Website screenshots using PHP

提交回复
热议问题