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__) 등을 활용해서 이 문제를 해결하고 있습니다.
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
17년 전 조회 2,981
17년 전 조회 1,885
17년 전 조회 2,081
17년 전 조회 3,485
17년 전 조회 2,463
17년 전 조회 4,044
17년 전 조회 1,902
17년 전 조회 2,509
17년 전 조회 2,348
17년 전 조회 1,850
17년 전 조회 2,369
17년 전 조회 2,167
17년 전 조회 2,200
17년 전 조회 3,324
17년 전 조회 2,386
17년 전 조회 1,668
17년 전 조회 1,688
17년 전 조회 2,349
17년 전 조회 3,438
17년 전 조회 2,369
17년 전 조회 1,776
17년 전 조회 4,462
17년 전 조회 2,267
17년 전 조회 3,692
17년 전 조회 6,267
17년 전 조회 1,719
17년 전 조회 1,868
17년 전 조회 1,459
17년 전 조회 1,560
17년 전 조회 3,112
17년 전 조회 2,132
17년 전 조회 2,822
17년 전 조회 1,513
17년 전 조회 3,418
17년 전 조회 2,403
17년 전 조회 2,838
17년 전 조회 1,636
17년 전 조회 1,987
17년 전 조회 1,362
17년 전 조회 1,420
17년 전 조회 2,003
17년 전 조회 1,430
17년 전 조회 4,525
17년 전 조회 1,748
17년 전 조회 2,215
17년 전 조회 7,336
17년 전 조회 1,591
17년 전 조회 2,129
17년 전 조회 3,377
17년 전 조회 1,424
17년 전 조회 2,206
17년 전 조회 1,361
17년 전 조회 2,054
17년 전 조회 2,387
17년 전 조회 3,202
17년 전 조회 1,462
17년 전 조회 1,529
17년 전 조회 1,784
17년 전 조회 1,449
17년 전 조회 4,584
17년 전 조회 4,125
17년 전 조회 3,028
17년 전 조회 1,799
17년 전 조회 1,538
17년 전 조회 1,840
17년 전 조회 2,760
17년 전 조회 1,954
17년 전 조회 2,233
17년 전 조회 1,516
17년 전 조회 1,264
17년 전 조회 1,335
17년 전 조회 3,144
17년 전 조회 2,695
17년 전 조회 2,259
17년 전 조회 2,282
17년 전 조회 2,017
17년 전 조회 2,454
17년 전 조회 2,237
17년 전 조회 2,188
17년 전 조회 2,094
17년 전 조회 1,401
17년 전 조회 2,044
17년 전 조회 2,448
17년 전 조회 2,537
17년 전 조회 1,849
17년 전 조회 1,702
17년 전 조회 1,579
17년 전 조회 2,796
17년 전 조회 2,877
17년 전 조회 2,286
17년 전 조회 2,639
17년 전 조회 2,944
17년 전 조회 1,534
17년 전 조회 1,387
17년 전 조회 6,561
17년 전 조회 1,386
17년 전 조회 1,844
17년 전 조회 1,997
17년 전 조회 1,313
17년 전 조회 1,384