메뉴 건너뛰기

프로그램언어

?

단축키

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
번호 제목 날짜 조회 수
80 stripcslashes — addcslashes()로 인용한 문자열을 되돌림 2016.12.23 20460
79 quotemeta 모든 메타 문자앞에 역슬래쉬를 붙인 문자열을 반환 2016.12.23 20465
78 stripslashes — 따옴표 처리한 문자열을 풉니다 2016.12.23 20490
77 문자열 치환하기 2015.04.14 20501
76 [PHP] 한글명 파일 다운로드받기 2014.03.26 20554
75 HTTP Protocol의 data method - GET / POST 2016.04.22 20638
74 PHP 소스 : 이미지 리사이즈, 섬네일 2014.03.26 20708
73 템플릿 관련 정보 2016.08.22 20732
72 array_slice 배열의 일부를 추출 2016.12.23 20777
71 검색어 처리 루틴 2015.04.14 20779
70 preg_match (정규표현식 매치를 수행합니다) 2016.12.23 20856
69 PHP error 메시지 출력 file 2015.04.14 20926
68 PHP switch 문 file 2015.04.14 20994
67 Ajax로 구연한 실시간 서버시간출력 file 2017.03.06 21034
66 RSSReader Class 제작 및 Reader 만들기 file 2016.08.22 21044
65 FPDF - PHP로 PDF 만들기 2014.02.27 21088
64 PHP continue 문 file 2015.04.14 21097
63 체크박스, post 로 넘기고 받아서 다시 체크하기, checkbox 2017.03.07 21136
62 POST값 통째로 인코딩하기 1 2015.04.06 21177
61 DB 내용을 화면에 출력(이중 for 문) 2015.04.14 21249
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved