어디서 주워온 함수인데요...
적용시켰는데 잘 되서 쓸려구 하는데 페이지 불러올대마다 재 생성 하는것같습니다.
좀 도와주세요;;
////////////////////////////////////
<?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__) 등을 활용해서 이 문제를 해결하고 있습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 68 | ||
| 8229 | 9년 전 | 68 | ||
| 8228 |
커네드커네드
|
9년 전 | 112 | |
| 8227 | 9년 전 | 121 | ||
| 8226 | 9년 전 | 158 | ||
| 8225 | 9년 전 | 147 | ||
| 8224 | 9년 전 | 144 | ||
| 8223 | 9년 전 | 111 | ||
| 8222 |
|
9년 전 | 181 | |
| 8221 | 9년 전 | 87 | ||
| 8220 | 9년 전 | 100 | ||
| 8219 | 9년 전 | 97 | ||
| 8218 | 9년 전 | 135 | ||
| 8217 |
star3840
|
9년 전 | 109 | |
| 8216 | 9년 전 | 158 | ||
| 8215 | 9년 전 | 105 | ||
| 8214 | 9년 전 | 221 | ||
| 8213 | 9년 전 | 155 | ||
| 8212 | 9년 전 | 81 | ||
| 8211 | 9년 전 | 241 | ||
| 8210 | 9년 전 | 240 | ||
| 8209 | 9년 전 | 333 | ||
| 8208 | 9년 전 | 214 | ||
| 8207 | 9년 전 | 223 | ||
| 8206 |
|
9년 전 | 185 | |
| 8205 | 9년 전 | 168 | ||
| 8204 | 9년 전 | 129 | ||
| 8203 | 9년 전 | 230 | ||
| 8202 | 9년 전 | 137 | ||
| 8201 | 9년 전 | 177 | ||
| 8200 | 9년 전 | 157 | ||
| 8199 | 9년 전 | 210 | ||
| 8198 | 9년 전 | 172 | ||
| 8197 | 9년 전 | 162 | ||
| 8196 | 9년 전 | 551 | ||
| 8195 | 9년 전 | 154 | ||
| 8194 | 9년 전 | 280 | ||
| 8193 | 9년 전 | 153 | ||
| 8192 | 9년 전 | 183 | ||
| 8191 | 9년 전 | 135 | ||
| 8190 | 9년 전 | 126 | ||
| 8189 | 9년 전 | 188 | ||
| 8188 | 9년 전 | 125 | ||
| 8187 | 9년 전 | 139 | ||
| 8186 | 9년 전 | 139 | ||
| 8185 | 9년 전 | 306 | ||
| 8184 | 9년 전 | 106 | ||
| 8183 | 9년 전 | 322 | ||
| 8182 | 9년 전 | 165 | ||
| 8181 | 9년 전 | 127 | ||
| 8180 | 9년 전 | 690 | ||
| 8179 | 9년 전 | 480 | ||
| 8178 | 9년 전 | 309 | ||
| 8177 |
kiplayer
|
9년 전 | 310 | |
| 8176 | 9년 전 | 347 | ||
| 8175 | 9년 전 | 218 | ||
| 8174 | 9년 전 | 240 | ||
| 8173 | 9년 전 | 341 | ||
| 8172 | 9년 전 | 192 | ||
| 8171 | 9년 전 | 181 | ||
| 8170 | 9년 전 | 294 | ||
| 8169 |
커네드커네드
|
9년 전 | 256 | |
| 8168 | 9년 전 | 315 | ||
| 8167 | 9년 전 | 319 | ||
| 8166 | 9년 전 | 234 | ||
| 8165 | 9년 전 | 161 | ||
| 8164 | 9년 전 | 299 | ||
| 8163 | 9년 전 | 279 | ||
| 8162 | 9년 전 | 294 | ||
| 8161 | 9년 전 | 292 | ||
| 8160 |
|
9년 전 | 485 | |
| 8159 | 9년 전 | 424 | ||
| 8158 | 9년 전 | 246 | ||
| 8157 | 9년 전 | 371 | ||
| 8156 | 9년 전 | 273 | ||
| 8155 | 9년 전 | 249 | ||
| 8154 |
00년생용띠
|
9년 전 | 598 | |
| 8153 | 9년 전 | 227 | ||
| 8152 |
|
9년 전 | 402 | |
| 8151 | 9년 전 | 405 | ||
| 8150 | 9년 전 | 497 | ||
| 8149 |
Jangfolk
|
9년 전 | 346 | |
| 8148 | 9년 전 | 163 | ||
| 8147 | 9년 전 | 372 | ||
| 8146 | 9년 전 | 432 | ||
| 8145 | 9년 전 | 377 | ||
| 8144 | 9년 전 | 345 | ||
| 8143 | 9년 전 | 189 | ||
| 8142 | 9년 전 | 425 | ||
| 8141 | 9년 전 | 379 | ||
| 8140 | 9년 전 | 927 | ||
| 8139 | 9년 전 | 255 | ||
| 8138 |
전갈자리남자
|
9년 전 | 385 | |
| 8137 | 9년 전 | 393 | ||
| 8136 | 9년 전 | 743 | ||
| 8135 |
|
9년 전 | 791 | |
| 8134 |
PlayPixel
|
9년 전 | 508 | |
| 8133 |
|
9년 전 | 432 | |
| 8132 | 9년 전 | 444 | ||
| 8131 | 9년 전 | 808 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기