From c27f846d641d8eeafdd1c67706a6e24202890f8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lucas?= Date: Sun, 15 Dec 2013 14:26:50 +0100 Subject: [PATCH] Forgot to remove the commented out code. re #127 --- fetch.php | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) diff --git a/fetch.php b/fetch.php index afc509e..b45f0d7 100644 --- a/fetch.php +++ b/fetch.php @@ -67,58 +67,6 @@ function notFound () { // The cover had to be resized return; } - // if (isset($_GET["width"])) - // { - // $file = $book->getFilePath ($type); - // // get image size - // if ($size = GetImageSize($file)) { - // $w = $size[0]; - // $h = $size[1]; - // //set new size - // $nw = $_GET["width"]; - // if ($nw > $w) { break; } - // $nh = ($nw*$h)/$w; - // } - // else{ - // //set new size - // $nw = "160"; - // $nh = "120"; - // } - // //draw the image - // $src_img = imagecreatefromjpeg($file); - // $dst_img = imagecreatetruecolor($nw,$nh); - // imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $nw, $nh, $w, $h);//resizing the image - // imagejpeg($dst_img,null,80); - // imagedestroy($src_img); - // imagedestroy($dst_img); - // return; - // } - // if (isset($_GET["height"])) - // { - // $file = $book->getFilePath ($type); - // // get image size - // if ($size = GetImageSize($file)) { - // $w = $size[0]; - // $h = $size[1]; - // //set new size - // $nh = $_GET["height"]; - // if ($nh > $h) { break; } - // $nw = ($nh*$w)/$h; - // } - // else{ - // //set new size - // $nw = "160"; - // $nh = "120"; - // } - // //draw the image - // $src_img = imagecreatefromjpeg($file); - // $dst_img = imagecreatetruecolor($nw,$nh); - // imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $nw, $nh, $w, $h);//resizing the image - // imagejpeg($dst_img,null,80); - // imagedestroy($src_img); - // imagedestroy($dst_img); - // return; - // } break; default: header("Content-Type: " . Data::$mimetypes[$type]);