메뉴 건너뛰기

프로그램언어

?

단축키

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;
 }

  1. No Image 06Mar
    by
    2017/03/06 Views 17589 

    PHP 도메인 이름이나 웹문서 주소 알아내기

  2. No Image 12Jan
    by
    2023/01/12 Views 178 

    php 두날짜 사이의 모든날짜 배열 만들기

  3. No Image 12Jan
    by
    2023/01/12 Views 233 

    PHP 디렉토리안에 파일 리스트 가져오기

  4. No Image 27Oct
    by
    2018/10/27 Views 4121 

    PHP 랜덤 문자열 생성

  5. No Image 27Oct
    by
    2018/10/27 Views 4764 

    PHP 랜덤확률 구하기

  6. No Image 12Apr
    by
    2014/04/12 Views 22666 

    PHP 로그인후 현재 페이지로 돌아오기 처리

  7. No Image 06Mar
    by
    2017/03/06 Views 17063 

    PHP 만년달력 소스

  8. No Image 06Mar
    by
    2017/03/06 Views 15591 

    php 문자열관련 함수

  9. No Image 27Oct
    by
    2018/10/27 Views 3539 

    PHP 문자열에서 검색어를 기준으로 앞뒤로 일정 길이만큼 자르기

  10. No Image 07Feb
    by
    2024/02/07 Views 71 

    PHP 버전 숨기기 ( php version hide )

  11. No Image 31Dec
    by 조쉬
    2019/12/31 Views 649 

    PHP 버전이 낮아 imagerotate() 함수가 없을때 대신 사용하는 함수

  12. No Image 14Apr
    by
    2015/04/14 Views 26590 

    PHP 변수전달 GET, POST

  13. No Image 12Jan
    by
    2023/01/12 Views 253 

    PHP 브라우저 알아내기

  14. PHP 삼항연산자 ?

  15. No Image 07Mar
    by
    2017/03/07 Views 26325 

    php 세션 유지시간 늘리기

  16. No Image 26Mar
    by
    2014/03/26 Views 19490 

    PHP 세션에서 시작, 변수등록, 변수삭제, 부수기

  17. No Image 26Mar
    by
    2014/03/26 Views 20707 

    PHP 소스 : 이미지 리사이즈, 섬네일

  18. No Image 19Jul
    by
    2018/07/19 Views 6648 

    PHP 소스코드 인코딩(암호화)하기

  19. No Image 27Oct
    by
    2018/10/27 Views 3502 

    PHP 소켓을 이용하여 URL의 응답결과를 문자열로 받기

  20. No Image 06Mar
    by
    2017/03/06 Views 18306 

    PHP 속도 테스트 20 가지

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved