├── .gitignore ├── LICENSE.md ├── README.md ├── autoload.php ├── bin ├── LICENSE.BSD ├── README.md ├── phantomjs └── phantomjs.exe ├── composer.json ├── composer.lock ├── demo ├── README.md ├── clean-jobs.php ├── index.html └── shot.php ├── jobs └── .gitkeep ├── scripts ├── facebook-hide-cookies-policy.js ├── facebook-hide-login.js ├── facebook-hide-signup.js └── facebook-hide-top-bar.js ├── src ├── Capture.php ├── CookieJar.php ├── Exceptions │ ├── FileNotFoundException.php │ ├── InvalidArgumentException.php │ ├── InvalidUrlException.php │ ├── PhantomJsException.php │ ├── ScreenException.php │ └── TemplateNotFoundException.php ├── Image │ ├── Types.php │ └── Types │ │ ├── Jpg.php │ │ ├── Pdf.php │ │ ├── Png.php │ │ └── Type.php ├── Injection │ ├── LocalPath.php │ ├── Scripts │ │ ├── FacebookHideCookiesPolicy.php │ │ ├── FacebookHideLogin.php │ │ ├── FacebookHideSignUp.php │ │ └── FacebookHideTopBar.php │ └── Url.php └── Location │ ├── Jobs.php │ ├── Location.php │ └── Output.php └── templates └── screen-capture.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/README.md -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/autoload.php -------------------------------------------------------------------------------- /bin/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/bin/LICENSE.BSD -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/phantomjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/bin/phantomjs -------------------------------------------------------------------------------- /bin/phantomjs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/bin/phantomjs.exe -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/composer.lock -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/clean-jobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/demo/clean-jobs.php -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/shot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/demo/shot.php -------------------------------------------------------------------------------- /jobs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/facebook-hide-cookies-policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/scripts/facebook-hide-cookies-policy.js -------------------------------------------------------------------------------- /scripts/facebook-hide-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/scripts/facebook-hide-login.js -------------------------------------------------------------------------------- /scripts/facebook-hide-signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/scripts/facebook-hide-signup.js -------------------------------------------------------------------------------- /scripts/facebook-hide-top-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/scripts/facebook-hide-top-bar.js -------------------------------------------------------------------------------- /src/Capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Capture.php -------------------------------------------------------------------------------- /src/CookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/CookieJar.php -------------------------------------------------------------------------------- /src/Exceptions/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Exceptions/FileNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Exceptions/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidUrlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Exceptions/InvalidUrlException.php -------------------------------------------------------------------------------- /src/Exceptions/PhantomJsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Exceptions/PhantomJsException.php -------------------------------------------------------------------------------- /src/Exceptions/ScreenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Exceptions/ScreenException.php -------------------------------------------------------------------------------- /src/Exceptions/TemplateNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Exceptions/TemplateNotFoundException.php -------------------------------------------------------------------------------- /src/Image/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Image/Types.php -------------------------------------------------------------------------------- /src/Image/Types/Jpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Image/Types/Jpg.php -------------------------------------------------------------------------------- /src/Image/Types/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Image/Types/Pdf.php -------------------------------------------------------------------------------- /src/Image/Types/Png.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Image/Types/Png.php -------------------------------------------------------------------------------- /src/Image/Types/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Image/Types/Type.php -------------------------------------------------------------------------------- /src/Injection/LocalPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Injection/LocalPath.php -------------------------------------------------------------------------------- /src/Injection/Scripts/FacebookHideCookiesPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Injection/Scripts/FacebookHideCookiesPolicy.php -------------------------------------------------------------------------------- /src/Injection/Scripts/FacebookHideLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Injection/Scripts/FacebookHideLogin.php -------------------------------------------------------------------------------- /src/Injection/Scripts/FacebookHideSignUp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Injection/Scripts/FacebookHideSignUp.php -------------------------------------------------------------------------------- /src/Injection/Scripts/FacebookHideTopBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Injection/Scripts/FacebookHideTopBar.php -------------------------------------------------------------------------------- /src/Injection/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Injection/Url.php -------------------------------------------------------------------------------- /src/Location/Jobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Location/Jobs.php -------------------------------------------------------------------------------- /src/Location/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Location/Location.php -------------------------------------------------------------------------------- /src/Location/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/src/Location/Output.php -------------------------------------------------------------------------------- /templates/screen-capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microweber-dev/screen/HEAD/templates/screen-capture.php --------------------------------------------------------------------------------