메뉴 건너뛰기

프로그램언어

?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
unction 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, ($height - 1) - $j, $i, $reference )){return false;}break;
 }
 }
 } return $newimg;
 }
 return false;
 }

List of Articles
번호 제목 날짜 조회 수
280 DB 내용을 화면에 출력(이중 for 문) 2015.04.14 21254
279 POST값 통째로 인코딩하기 1 2015.04.06 21179
278 체크박스, post 로 넘기고 받아서 다시 체크하기, checkbox 2017.03.07 21141
277 PHP continue 문 file 2015.04.14 21098
276 FPDF - PHP로 PDF 만들기 2014.02.27 21089
275 RSSReader Class 제작 및 Reader 만들기 file 2016.08.22 21046
274 Ajax로 구연한 실시간 서버시간출력 file 2017.03.06 21041
273 PHP switch 문 file 2015.04.14 20996
272 PHP error 메시지 출력 file 2015.04.14 20930
271 preg_match (정규표현식 매치를 수행합니다) 2016.12.23 20857
270 array_slice 배열의 일부를 추출 2016.12.23 20781
269 검색어 처리 루틴 2015.04.14 20780
268 템플릿 관련 정보 2016.08.22 20739
267 PHP 소스 : 이미지 리사이즈, 섬네일 2014.03.26 20709
266 HTTP Protocol의 data method - GET / POST 2016.04.22 20642
265 [PHP] 한글명 파일 다운로드받기 2014.03.26 20561
264 문자열 치환하기 2015.04.14 20508
263 stripslashes — 따옴표 처리한 문자열을 풉니다 2016.12.23 20490
262 quotemeta 모든 메타 문자앞에 역슬래쉬를 붙인 문자열을 반환 2016.12.23 20466
261 stripcslashes — addcslashes()로 인용한 문자열을 되돌림 2016.12.23 20465
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved