어디서 주워온 함수인데요...
적용시켰는데 잘 되서 쓸려구 하는데 페이지 불러올대마다 재 생성 하는것같습니다.
좀 도와주세요;;
////////////////////////////////////
<?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>");
}
//////////////////////////////
이렇게 했습니다.
이거 적용하는데 일주일 걸렸습니다 ,, 제발 좀 도와주세요 ㅠㅠ
적용시켰는데 잘 되서 쓸려구 하는데 페이지 불러올대마다 재 생성 하는것같습니다.
좀 도와주세요;;
////////////////////////////////////
<?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개
17년 전
출력부분에
$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 = "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>");
눈치껏 해봤는데 이건 틀린듯한데 어떻게 해야하나요?
17년 전
댓글로 작성하신 걸 기준으로 말씀드리면...
$thumb는 HTTP로 접근할 때의 경로가 됩니다. 즉, file_exists로는 검사할 수가 없죠.
file_exists("/home/mysite/www/" + $thumb) 같은 식으로 절대 경로를 앞에 추가하면 어떨까요?
$thumb는 HTTP로 접근할 때의 경로가 됩니다. 즉, file_exists로는 검사할 수가 없죠.
file_exists("/home/mysite/www/" + $thumb) 같은 식으로 절대 경로를 앞에 추가하면 어떨까요?
17년 전
P.S.
많은 PHP 프로그램들이 절대 경로를 넣은 변수 또는 define을 사용하거나,
dirname(__FILE__) 등을 활용해서 이 문제를 해결하고 있습니다.
많은 PHP 프로그램들이 절대 경로를 넣은 변수 또는 define을 사용하거나,
dirname(__FILE__) 등을 활용해서 이 문제를 해결하고 있습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 587 | ||
| 8129 |
|
9년 전 | 705 | |
| 8128 | 9년 전 | 555 | ||
| 8127 |
|
9년 전 | 601 | |
| 8126 | 9년 전 | 536 | ||
| 8125 | 9년 전 | 786 | ||
| 8124 |
|
9년 전 | 547 | |
| 8123 | 9년 전 | 535 | ||
| 8122 | 9년 전 | 461 | ||
| 8121 | 9년 전 | 574 | ||
| 8120 | 9년 전 | 487 | ||
| 8119 | 9년 전 | 577 | ||
| 8118 |
|
9년 전 | 654 | |
| 8117 |
|
9년 전 | 419 | |
| 8116 |
PASKRAN
|
9년 전 | 481 | |
| 8115 | 9년 전 | 481 | ||
| 8114 |
kiplayer
|
9년 전 | 621 | |
| 8113 | 9년 전 | 476 | ||
| 8112 |
|
9년 전 | 586 | |
| 8111 | 9년 전 | 420 | ||
| 8110 | 9년 전 | 465 | ||
| 8109 | 9년 전 | 392 | ||
| 8108 |
|
9년 전 | 570 | |
| 8107 |
|
9년 전 | 458 | |
| 8106 |
|
9년 전 | 459 | |
| 8105 | 9년 전 | 492 | ||
| 8104 |
|
9년 전 | 455 | |
| 8103 |
|
9년 전 | 458 | |
| 8102 |
|
9년 전 | 429 | |
| 8101 |
snshero
|
9년 전 | 819 | |
| 8100 | 9년 전 | 860 | ||
| 8099 | 9년 전 | 839 | ||
| 8098 | 9년 전 | 743 | ||
| 8097 | 9년 전 | 548 | ||
| 8096 | 9년 전 | 751 | ||
| 8095 | 9년 전 | 888 | ||
| 8094 | 9년 전 | 561 | ||
| 8093 | 9년 전 | 840 | ||
| 8092 | 9년 전 | 782 | ||
| 8091 | 9년 전 | 1168 | ||
| 8090 | 9년 전 | 795 | ||
| 8089 | 9년 전 | 1005 | ||
| 8088 | 9년 전 | 668 | ||
| 8087 | 9년 전 | 792 | ||
| 8086 | 9년 전 | 542 | ||
| 8085 | 9년 전 | 508 | ||
| 8084 | 9년 전 | 631 | ||
| 8083 | 9년 전 | 600 | ||
| 8082 | 9년 전 | 791 | ||
| 8081 | 9년 전 | 500 | ||
| 8080 | 9년 전 | 599 | ||
| 8079 | 9년 전 | 556 | ||
| 8078 | 9년 전 | 474 | ||
| 8077 | 9년 전 | 561 | ||
| 8076 | 9년 전 | 431 | ||
| 8075 | 9년 전 | 464 | ||
| 8074 | 9년 전 | 435 | ||
| 8073 | 9년 전 | 488 | ||
| 8072 | 9년 전 | 478 | ||
| 8071 |
o1o111
|
9년 전 | 929 | |
| 8070 | 9년 전 | 435 | ||
| 8069 | 9년 전 | 375 | ||
| 8068 | 9년 전 | 625 | ||
| 8067 | 9년 전 | 421 | ||
| 8066 | 9년 전 | 448 | ||
| 8065 | 9년 전 | 409 | ||
| 8064 | 9년 전 | 403 | ||
| 8063 | 9년 전 | 372 | ||
| 8062 | 9년 전 | 340 | ||
| 8061 | 9년 전 | 378 | ||
| 8060 | 9년 전 | 419 | ||
| 8059 | 9년 전 | 357 | ||
| 8058 | 9년 전 | 294 | ||
| 8057 | 9년 전 | 419 | ||
| 8056 | 9년 전 | 340 | ||
| 8055 | 9년 전 | 390 | ||
| 8054 | 9년 전 | 393 | ||
| 8053 | 9년 전 | 444 | ||
| 8052 | 9년 전 | 315 | ||
| 8051 | 9년 전 | 361 | ||
| 8050 | 9년 전 | 420 | ||
| 8049 | 9년 전 | 352 | ||
| 8048 | 9년 전 | 455 | ||
| 8047 | 9년 전 | 394 | ||
| 8046 | 9년 전 | 339 | ||
| 8045 | 9년 전 | 287 | ||
| 8044 | 9년 전 | 380 | ||
| 8043 | 9년 전 | 334 | ||
| 8042 | 9년 전 | 326 | ||
| 8041 | 9년 전 | 386 | ||
| 8040 | 9년 전 | 302 | ||
| 8039 | 9년 전 | 348 | ||
| 8038 | 9년 전 | 286 | ||
| 8037 | 9년 전 | 431 | ||
| 8036 | 9년 전 | 521 | ||
| 8035 | 9년 전 | 456 | ||
| 8034 | 9년 전 | 412 | ||
| 8033 | 9년 전 | 376 | ||
| 8032 | 9년 전 | 484 | ||
| 8031 | 9년 전 | 375 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기