k

썸네일 생성 함수인데요.. 페이지 불러올때마다 새로 만들어지는것 같은데;;

어디서 주워온 함수인데요...
적용시켰는데 잘 되서 쓸려구 하는데 페이지 불러올대마다 재 생성 하는것같습니다.

좀 도와주세요;;

////////////////////////////////////

<?php
class thumbnails {
function ResizeImage($image, $newimage, $newwidth=0, $newheight=0) {
if (!function_exists('ImageTypes'))
return false;
list($width,$height,$type) = GetImageSize($image);
if ($im = self::ReadImageFromFile($image, $type)) {
if ($newwidth==0)
$newwidth = ($newheight / $height) * $width;
else if ($newheight==0)
$newheight = ($newwidth / $width) * $height;
elseif ($newheight && ($width < $height))
$newwidth = ($newheight / $height) * $width;
else
$newheight = ($newwidth / $width) * $height;

if (function_exists('ImageCreateTrueColor'))
$im2 = ImageCreateTrueColor($newwidth,$newheight);
else
$im2 = ImageCreate($newwidth,$newheight);

if (function_exists('imagealphablending'))
imagealphablending($im2, false);
if (function_exists('imagesavealpha'))
imagesavealpha ($im2 , true);

if (function_exists('ImageCopyResampled'))
ImageCopyResampled($im2,$im,0,0,0,0,$newwidth,$newheight,$width,$height);
else
ImageCopyResized($im2,$im,0,0,0,0,$newwidth,$newheight,$width,$height);

if (self::WriteImageToFile($im2, $newimage, $type))
return true;
}
return false;
}
private function ReadImageFromFile($filename, $type) {
$imagetypes = ImageTypes();
switch ($type) {
case 1 :
if ($imagetypes & IMG_GIF)
return $im = ImageCreateFromGIF($filename);
break;
case 2 :
if ($imagetypes & IMG_JPEG)
return ImageCreateFromJPEG($filename);
break;
case 3 :
if ($imagetypes & IMG_PNG)
return ImageCreateFromPNG($filename);
break;
default:
return 0;
}
}
private function WriteImageToFile($im, $filename, $type) {
switch ($type) {
case 1 :
return ImageGIF($im, $filename);
case 2 :
return ImageJpeg($im, $filename, 85);
case 3 :
return ImagePNG($im, $filename);
default:
return false;
}
}

}


//thumbnails::ResizeImage("00_folder.jpg", "mini/test.jpg", 150)

?>


////////////////////

불러오는 리스트 페이지에

if ($row["image1"] != "") {
thumbnails::ResizeImage("uploads/images/$row[image1]", "uploads/images/mini/$row[image1]", 150);
print("<td width=10><IMG src=uploads/images/mini/$row[image1]></td>");
}

//////////////////////////////

이렇게 했습니다.

이거 적용하는데 일주일 걸렸습니다 ,, 제발 좀 도와주세요 ㅠㅠ
|

댓글 3개

출력부분에

$thumb = "uploads/images/mini/$row[image1]";
// 썸네일 이미지가 존재하지 않는다면
if (!file_exists($thumb)) {
thumbnails::ResizeImage("uploads/images/$row[image1]", "uploads/images/mini/$row[image1]", 150);
}
else if (file_exists($thumb)) {
$img = "<img src='$thumb' height=54 border=0 style='border:1px solid #a1a1a1;margin-right:10px;'>";
}
else {
$img = "<img src='images/t.gif' border=0>";
}

print("<td width=10>$img</td>");

눈치껏 해봤는데 이건 틀린듯한데 어떻게 해야하나요?
댓글로 작성하신 걸 기준으로 말씀드리면...

$thumb는 HTTP로 접근할 때의 경로가 됩니다. 즉, file_exists로는 검사할 수가 없죠.

file_exists("/home/mysite/www/" + $thumb) 같은 식으로 절대 경로를 앞에 추가하면 어떨까요?
P.S.

많은 PHP 프로그램들이 절대 경로를 넣은 변수 또는 define을 사용하거나,

dirname(__FILE__) 등을 활용해서 이 문제를 해결하고 있습니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 3,084
17년 전 조회 2,012
17년 전 조회 2,194
17년 전 조회 3,608
17년 전 조회 2,601
17년 전 조회 4,162
17년 전 조회 2,010
17년 전 조회 2,606
17년 전 조회 2,446
17년 전 조회 1,965
17년 전 조회 2,468
17년 전 조회 2,286
17년 전 조회 2,319
17년 전 조회 3,434
17년 전 조회 2,500
17년 전 조회 1,780
17년 전 조회 1,802
17년 전 조회 2,466
17년 전 조회 3,550
17년 전 조회 2,467
17년 전 조회 1,887
17년 전 조회 4,590
17년 전 조회 2,374
17년 전 조회 3,810
17년 전 조회 6,381
17년 전 조회 1,838
17년 전 조회 2,001
17년 전 조회 1,572
17년 전 조회 1,693
17년 전 조회 3,218
17년 전 조회 2,263
17년 전 조회 2,916
17년 전 조회 1,635
17년 전 조회 3,527
17년 전 조회 2,502
17년 전 조회 2,948
17년 전 조회 1,754
17년 전 조회 2,103
17년 전 조회 1,483
17년 전 조회 1,531
17년 전 조회 2,121
17년 전 조회 1,540
17년 전 조회 4,637
17년 전 조회 1,850
17년 전 조회 2,336
17년 전 조회 7,437
17년 전 조회 1,704
17년 전 조회 2,245
17년 전 조회 3,480
17년 전 조회 1,544
17년 전 조회 2,313
17년 전 조회 1,466
17년 전 조회 2,160
17년 전 조회 2,495
17년 전 조회 3,298
17년 전 조회 1,578
17년 전 조회 1,653
17년 전 조회 1,887
17년 전 조회 1,557
17년 전 조회 4,696
17년 전 조회 4,227
17년 전 조회 3,145
17년 전 조회 1,920
17년 전 조회 1,661
17년 전 조회 1,925
17년 전 조회 2,857
17년 전 조회 2,061
17년 전 조회 2,332
17년 전 조회 1,638
17년 전 조회 1,371
17년 전 조회 1,453
17년 전 조회 3,225
17년 전 조회 2,796
17년 전 조회 2,364
17년 전 조회 2,380
17년 전 조회 2,127
17년 전 조회 2,569
17년 전 조회 2,357
17년 전 조회 2,295
17년 전 조회 2,209
17년 전 조회 1,515
17년 전 조회 2,143
17년 전 조회 2,571
17년 전 조회 2,645
17년 전 조회 1,970
17년 전 조회 1,814
17년 전 조회 1,689
17년 전 조회 2,911
17년 전 조회 2,994
17년 전 조회 2,395
17년 전 조회 2,744
17년 전 조회 3,053
17년 전 조회 1,647
17년 전 조회 1,479
17년 전 조회 6,671
17년 전 조회 1,499
17년 전 조회 1,950
17년 전 조회 2,101
17년 전 조회 1,419
17년 전 조회 1,507