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.
..........
/* loads image passed thru script
ie: gd.php?img_name=zoom.jpg */
$src_img = imagecreatefromjpeg($img_name);
/* desired width of the thumbnail */
$picsize = 123;
/* grabs the height and width */
$new_w = imagesx($src_img);
$new_h = imagesy($src_img);
..........