--------------------------------------
그누보드4에서 모바일 파일첨부시 세로사진이 옆으로 누워버리길래..
찾다가 기존에 쓰는 방법인 imagerotate()함수가 php버전이 낮으면 작동이 안되고 찾을수 없다고 나온다..
그래서 열심히 구글링 후 다른 방법을 찾았기에.. 여기에 남김..
중복이면 죄송.
--------------------------------------
function rotateImage($img, $rotation) {
$width = imagesx($img);
$height = imagesy($img);
switch($rotation) {
case 90: $newimg= @imagecreatetruecolor($height , $width );break;
case 180: $newimg= @imagecreatetruecolor($width , $height );break;
case 270: $newimg= @imagecreatetruecolor($height , $width );break;
case 0: return $img;break;
case 360: return $img;break;
}
if($newimg) {
for($i = 0;$i < $width ; $i++) {
for($j = 0;$j < $height ; $j++) {
$reference = imagecolorat($img,$i,$j);
switch($rotation) {
case 90: if(!@imagesetpixel($newimg, $j, $width - $i, $reference )){return false;}break;
case 180: if(!@imagesetpixel($newimg, $width - $i, ($height - 1) - $j, $reference )){return false;}break;
case 270: if(!@imagesetpixel($newimg, ($height - 1) - $j, $i, $reference )){return false;}break;
}
}
} return $newimg;
}
return false;
}
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 230 | 20년 전 | 2071 | ||
| 229 | 20년 전 | 3145 | ||
| 228 | 20년 전 | 3327 | ||
| 227 | 20년 전 | 2404 | ||
| 226 | 20년 전 | 5490 | ||
| 225 | 20년 전 | 2527 | ||
| 224 | 20년 전 | 2971 | ||
| 223 | 20년 전 | 4209 | ||
| 222 | 20년 전 | 2610 | ||
| 221 | 20년 전 | 2294 | ||
| 220 | 20년 전 | 3681 | ||
| 219 | 20년 전 | 2080 | ||
| 218 | 20년 전 | 3569 | ||
| 217 | 20년 전 | 2488 | ||
| 216 | 20년 전 | 2922 | ||
| 215 | 20년 전 | 2230 | ||
| 214 | 20년 전 | 3340 | ||
| 213 | 20년 전 | 2922 | ||
| 212 | 20년 전 | 3055 | ||
| 211 | 20년 전 | 2150 | ||
| 210 | 20년 전 | 1904 | ||
| 209 | 20년 전 | 2363 | ||
| 208 | 20년 전 | 1983 | ||
| 207 | 20년 전 | 1682 | ||
| 206 | 20년 전 | 1857 | ||
| 205 | 20년 전 | 3953 | ||
| 204 | 20년 전 | 1679 | ||
| 203 | 20년 전 | 2016 | ||
| 202 | 20년 전 | 2360 | ||
| 201 | 20년 전 | 1830 | ||
| 200 | 20년 전 | 2962 | ||
| 199 | 20년 전 | 2006 | ||
| 198 | 20년 전 | 2091 | ||
| 197 | 20년 전 | 3656 | ||
| 196 | 20년 전 | 2991 | ||
| 195 | 20년 전 | 2099 | ||
| 194 | 20년 전 | 10256 | ||
| 193 | 20년 전 | 2250 | ||
| 192 | 20년 전 | 1609 | ||
| 191 | 20년 전 | 2673 | ||
| 190 | 20년 전 | 2297 | ||
| 189 | 20년 전 | 1692 | ||
| 188 | 20년 전 | 1490 | ||
| 187 | 20년 전 | 1914 | ||
| 186 | 20년 전 | 1738 | ||
| 185 | 20년 전 | 1777 | ||
| 184 | 20년 전 | 2367 | ||
| 183 | 20년 전 | 1570 | ||
| 182 | 20년 전 | 1489 | ||
| 181 | 20년 전 | 1629 | ||
| 180 | 20년 전 | 2729 | ||
| 179 | 20년 전 | 1812 | ||
| 178 | 20년 전 | 1863 | ||
| 177 | 20년 전 | 1988 | ||
| 176 | 20년 전 | 1809 | ||
| 175 | 20년 전 | 1876 | ||
| 174 | 20년 전 | 1694 | ||
| 173 | 20년 전 | 2061 | ||
| 172 | 20년 전 | 1790 | ||
| 171 | 20년 전 | 2571 | ||
| 170 | 20년 전 | 2279 | ||
| 169 | 20년 전 | 2557 | ||
| 168 | 20년 전 | 1492 | ||
| 167 | 20년 전 | 1582 | ||
| 166 | 20년 전 | 2163 | ||
| 165 | 20년 전 | 1640 | ||
| 164 | 20년 전 | 3776 | ||
| 163 | 20년 전 | 2672 | ||
| 162 | 20년 전 | 2094 | ||
| 161 | 20년 전 | 2800 | ||
| 160 | 20년 전 | 1739 | ||
| 159 | 20년 전 | 1620 | ||
| 158 | 20년 전 | 2570 | ||
| 157 | 20년 전 | 1491 | ||
| 156 | 20년 전 | 1745 | ||
| 155 | 20년 전 | 3235 | ||
| 154 | 20년 전 | 1905 | ||
| 153 | 20년 전 | 1630 | ||
| 152 | 20년 전 | 4959 | ||
| 151 | 20년 전 | 4583 | ||
| 150 | 20년 전 | 3520 | ||
| 149 | 20년 전 | 3806 | ||
| 148 | 20년 전 | 7083 | ||
| 147 | 20년 전 | 3558 | ||
| 146 | 20년 전 | 2631 | ||
| 145 | 20년 전 | 2626 | ||
| 144 | 20년 전 | 7172 | ||
| 143 | 20년 전 | 4607 | ||
| 142 | 20년 전 | 1904 | ||
| 141 | 20년 전 | 3254 | ||
| 140 | 20년 전 | 1965 | ||
| 139 | 20년 전 | 1589 | ||
| 138 | 20년 전 | 2314 | ||
| 137 | 20년 전 | 1785 | ||
| 136 | 20년 전 | 1461 | ||
| 135 | 20년 전 | 1792 | ||
| 134 | 20년 전 | 2972 | ||
| 133 | 20년 전 | 2456 | ||
| 132 | 20년 전 | 1709 | ||
| 131 | 20년 전 | 1650 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기