Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$test_directory = 'test';
$command = "convert -background lightblue -fill blue -font 'Arial' -pointsize 72 label:'Testing' $test_directory/mytest.gif";
$test_image = system($command, $returnVal);
if ($returnVal > 1) echo "ERROR";
else echo "<img src=\"$test_directory/mytest.gif\">";
$test_directory = 'test';
$path_to_imagemagick = '/usr/bin/convert';
$command = "convert -background lightblue -fill blue -font 'Arial' -pointsize 72 label:'Testing' $test_directory/mytest.gif";
passthru("\"$path_to_imagemagick\" $command", $returnVal);
if ($returnVal > 1) echo "ERROR";
else echo "<img src=\"$test_directory/mytest.gif\">";