메뉴 건너뛰기

프로그램언어

?

단축키

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 파일을 변수에 담기(ob_start를 이용한 방법) 2021.03.26 676
79 13자리 timestamp 생성하기 file 2020.09.28 649
» PHP 버전이 낮아 imagerotate() 함수가 없을때 대신 사용하는 함수 2019.12.31 644
77 while, for, foreach 속도 비교 2021.03.26 623
76 파일 다운로드 함수(멀티 이어받기/속도제한) 2020.06.19 618
75 다중 파일을 zip으로 묶어받기 2020.06.19 617
74 알파벳 순서대로 출력하기 ord(), chr() 2021.03.26 583
73 substr(), mb_substr(), iconv_substr() 2021.03.26 564
72 csv파일 다루기. fputcsv(), fgetcsv() 2021.03.26 558
71 서브도메인 세션 공유 2021.03.26 543
70 Javascript 두 좌표 사이의 거리 구하기, 두 좌표의 중앙 좌표 구하기 file 2020.09.23 535
69 네이버 지도 API를 이용한 주소를 좌표로 변환하기 (PHP) 2020.09.22 495
68 CodeIgniter - DB오류체크, 디버깅 여부 설정 2021.03.29 494
67 사업자등록번호 유효성 체크 2020.08.24 470
66 PHP 쉘 스크립트 2021.03.26 457
65 배열 더하기 (+ 를 이용한 배열 합치기 ) 2021.03.26 451
64 멀티 파일다운로드 꽁수로 구현하기 2020.06.19 437
63 주차 , 요일, 해당주의 시작일, 해당주의 종료일 date() 2021.07.08 432
62 DAUM 지도 API 좌표→주소(주소->좌표) 변환 2020.10.05 431
61 경로 제외한 파일 이름만 선택하는 방법, Basename() 2020.11.23 429
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved