<?PHP
function createthumb($name,$filename,$new_w,$new_h){
//if (preg_match('/jpg|jpeg/',$system[1])){
//}
//if (preg_match('/png/',$system[1])){
// $src_img=imagecreatefrompng($name);
//}
if ($old_x > $old_y) {
$thumb_w=$new_w;
$thumb_h=$old_y*($new_h/$old_x);
}
if ($old_x < $old_y) {
$thumb_w=$old_x*($new_w/$old_y);
$thumb_h=$new_h;
}
if ($old_x == $old_y) {
$thumb_w=$new_w;
$thumb_h=$new_h;
}
//if (preg_match("/png/",$system[1]))
//{
// imagepng($dst_img,$filename);
//} else {
//}
}
?>