forked from IDragonfire/dzcp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thumbgen.php
30 lines (27 loc) · 1.05 KB
/
thumbgen.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
$size = getimagesize($_GET['img']);
$breite = $size[0];
$hoehe = $size[1];
$neueBreite = empty($_GET['width']) ? 100 : intval($_GET['width']);
$neueHoehe = intval($hoehe*$neueBreite/$breite);
$neuesBild = imagecreatetruecolor($neueBreite,$neueHoehe);
if($size[2] == 1)
{
header("Content-Type: image/gif");
$altesBild = imagecreatefromgif($_GET['img']);
imagecopyresampled($neuesBild,$altesBild,0,0,0,0,$neueBreite,$neueHoehe,$breite,$hoehe);
imagegif($neuesBild);
} elseif($size[2] == 2) {
header("Content-Type: image/jpeg");
$altesBild = imagecreatefromjpeg($_GET['img']);
imagecopyresampled($neuesBild,$altesBild,0,0,0,0,$neueBreite,$neueHoehe,$breite,$hoehe);
imagejpeg($neuesBild, '', 100);
} elseif($size[2] == 3) {
header("Content-Type: image/png");
$altesBild = imagecreatefrompng($_GET['img']);
imagecopyresampled($neuesBild,$altesBild,0,0,0,0,$neueBreite,$neueHoehe,$breite,$hoehe);
imagepng($neuesBild);
}
@imagedestroy($altesBild);
@imagedestroy($neuesBild);
?>