<?php
// 連結到這頁的圖片語法:<img src="share_resize.php?cn=$imgfile" alt="點選圖片看大圖" border="0">
$filename =htmlspecialchars($HTTP_GET_VARS['cn']);
//echo $filename;
//echo exit;
$subname = substr($filename, strrpos($filename, ".")+1); //讀取附檔名
//echo $subname;
//echo exit;
$photo_path = "../../../upload/o/o05/".$filename; // 相片檔案的存放路徑
//echo $photo_path;
//echo exit;
// 依副檔名來判斷相片的圖形格式
switch ( strtoupper($subname) ) {
case "JPEG":
$img_Type = "JPEG";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromJPEG($photo_path); // 視原圖的格式,用不同的方法讀取原圖
// 定義一個新的圖檔
// 將縮圖的尺寸設為原圖的 20%
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImageJPEG($dst_img); // 視原圖的格式,用不同的方法將所建立的新圖檔輸出
break;
case "jpeg":
$img_Type = "JPEG";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromJPEG($photo_path); // 視原圖的格式,用不同的方法讀取原圖
// 定義一個新的圖檔
// 將縮圖的尺寸設為原圖的 20%
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImageJPEG($dst_img); // 視原圖的格式,用不同的方法將所建立的新圖檔輸出
break;
case "JPG":
$img_Type = "JPEG";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromJPEG($photo_path);
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImageJPEG($dst_img);
break;
case "jpg":
$img_Type = "JPEG";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromJPEG($photo_path);
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImageJPEG($dst_img);
break;
case "JPE":
$img_Type = "JPEG";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromJPEG($photo_path);
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImageJPEG($dst_img);
break;
case "GIF":
$img_Type = "GIF";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromGIF($photo_path);
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImageGIF($dst_img);
break;
case "PNG":
$img_Type = "PNG";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromPNG($photo_path);
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImagePNG($dst_img);
break;
case "png":
$img_Type = "PNG";
header("Content-type: image/" . $img_Type); // 傳 Header 給瀏覽器,告知圖檔格式
$src_img = ImageCreateFromPNG($photo_path);
$new_W = ImageSX($src_img) * 0.2; //取得圖形的寬度
$new_H = ImageSY($src_img) * 0.2; //取得圖形的高度
if ( $new_W > 150 ) { // 不讓縮圖的寬度多於 150,以免相片太大
$new_H = ( 150 / $new_W ) * $new_H;
$new_W = 150;
}
//2.0xx版使用
$dst_img = imagecreatetruecolor($new_W, $new_H);
//舊版使用
//$dst_img = ImageCreate($new_W, $new_H);
// 將原圖複製、調整尺寸,再貼在新圖上
//2.0xx版使用
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
//舊版使用
//ImageCopyResized($dst_img, $src_img, 0, 0, 0, 0, $new_W, $new_H, ImageSX($src_img), ImageSY($src_img));
ImagePNG($dst_img);
break;
}
// 分別釋放 $dst_img 與 $src_img 所佔用的儲存空間
ImageDestroy($dst_img);
ImageDestroy($src_img);
?>