writePicture
Code:
function writePicture($image, $maxwidth, $maxheight)
{
if($image !== "")
{
list($width, $height, $type, $attr) = getimagesize($image);
if($width > $maxwidth)
{
$constant = $maxwidth/$width;
$width = $constant * $width;
$height = $constant * $height;
}
if($height > $height)
{
$constant = $maxheight/$height;
$width = $constant * $width;
$height = $constant * $height;
}
echo"
}
else
{
if($maxwidth < 1){ $maxwidth = 100; } if($maxheight < 1) { $maxheight = 100;}
echo"

}
}
No comments:
Post a Comment