Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
function thumbnail($imgfile,$thumbsize) {
list($width,$height) = getimagesize("images/$imgfile");
$imgratio = $width / $height;
if($imgratio > 1) {
$newwidth = $thumbsize;
$newheight = $thumbsize / $imgratio;
}
else if($imgratio < 1) {
$newheight = $thumbsize;
$newwidth = $thumbsize * $imgratio;
}
else {
$newheight = $thumbsize;
$newwidth = $thumbsize;
}
$thumb = "images/th_$imgfile";
$img = "images/$imgfile";
$thumbnail = system("convert $img -coalesce -resize $newwidth x $newheight -deconstruct $thumb");
}
?>