Skip to content

Instantly share code, notes, and snippets.

@alrnz
Created June 9, 2019 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alrnz/50df6b6f4dbaf17817dd88b527f1f223 to your computer and use it in GitHub Desktop.
Save alrnz/50df6b6f4dbaf17817dd88b527f1f223 to your computer and use it in GitHub Desktop.
Check for image tools on server
<?php
echo "<h4>GhostScript-Version is: </h4>"
. shell_exec("gs --version") . '<br><br>';
echo "<h4>ImageMagick-Version is: </h4>"
. shell_exec("convert --version") . '<br><br>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment