Home  >  Article  >  Backend Development  >  How to use PHP to take screenshots of web pages by executing the CutyCapt command

How to use PHP to take screenshots of web pages by executing the CutyCapt command

高洛峰
高洛峰Original
2016-12-21 10:31:551384browse

The example in this article describes how to use PHP to capture web pages by executing the CutyCapt command. Share it with everyone for your reference, the details are as follows:

Use php to execute commands using exec

PS. By default, the exec function is disabled. Open php.ini to check whether disable_function contains this or not. If so, remove it

exec('xvfb-run --server-args="-screen 0, 1024x768x24" CutyCapt --url=http://www.jb51.net --out=2.jpg');

This One problem is that my picture only has the first screen, so I crop the picture

yum install ImageMagick

Use convert -crop to crop

convert -crop 1024x768+0+0 2.jpg 22.jpg

Use convert -resize to zoom the picture

convert -resize 15%x15% 22.jpg 22.jpg

I hope this article will be helpful to everyone in PHP program design .

For more related articles on how to use PHP to realize web page screenshots by executing the CutyCapt command, please pay attention to the PHP Chinese website!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn