메뉴 건너뛰기

프로그램언어

조회 수 2088 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

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

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
<?php
/**
* @description 스마트폰, 카메라 등에서 사진 jpg 저장시에 
회전값이 들어갈 수 있다. 그럴 경우 변환해 주는 소스 이다.
*/
if(!function_exists('exif_read_data')){
    echo 'not defined exif_read_data. requires exif module';
    exit;
}
if(!function_exists('imagecreatefromjpeg')){
    echo 'not defined imagecreatefromjpeg.';
    exit;
}
if(!function_exists('imagerotate')){
    echo 'not defined imagerotate.';
    exit;
}


$source_path = "shot.jpg";
$temp_ext = strrchr($source_path, ".");
$temp_ext = strtolower($temp_ext);// 확장자
if(preg_match('/(jpg|jpeg)$/i',$temp_ext)
    && function_exists('exif_read_data')
    && function_exists('imagecreatefromjpeg')
    && function_exists('imagerotate')
    )
{
    $exif = exif_read_data($source_path);//<get exif data. jpeg 나 tiff 의 경우에만 갖고 있음
    $source = imagecreatefromjpeg($source_path);//<임시 리소스 생성

    //값에 따라 회전
    switch($exif['Orientation']){
        case 8 : $source = imagerotate($source,90,0); break;
        case 3 : $source = imagerotate($source,180,0); break;
        case 6 : $source = imagerotate($source,-90,0); break;
    }

    //결과 처리
    header('Content-Type: image/jpeg');
    imagejpeg($source);
    imagedestroy($source);
}
?>

List of Articles
번호 제목 날짜 조회 수
100 애니메이션 gif 와 일반 gif 구분 하기 2019.01.15 2645
99 dddotag - 허용하지 않는 태그 걸러내기 2019.01.15 3174
98 input 자동완성기능 끄기 2019.02.19 2524
97 PHP http 를 https 로 전환(redirect), http->https 2019.02.19 3403
96 PHP 가변변수 $$ file 2019.02.19 2725
95 PHP에서 UTF와 EUC-KR 변환 2019.02.19 2789
94 PHP $_SERVER 함수 2019.02.25 2731
93 utf-8 문자열을 주어진 바이트로 자르기 2019.04.29 2635
92 주간단위 시작일에서 종료일을 셀렉트박스로 만들기. file 2019.04.29 2924
91 PHP 외부 XML 파싱 하기 2019.06.24 3296
90 PHP 버전이 낮아 imagerotate() 함수가 없을때 대신 사용하는 함수 2019.12.31 1918
» 사진이 회전되서 올라갈 경우 2020.05.25 2088
88 다중 파일을 zip으로 묶어받기 2020.06.18 1928
87 파일 다운로드 함수(멀티 이어받기/속도제한) 2020.06.18 5141
86 멀티 파일다운로드 꽁수로 구현하기 2020.06.18 1888
85 사업자등록번호 유효성 체크 2020.08.24 1834
84 네이버 지도 API를 이용한 주소를 좌표로 변환하기 (PHP) 2020.09.21 1915
83 Javascript 두 좌표 사이의 거리 구하기, 두 좌표의 중앙 좌표 구하기 file 2020.09.23 2037
82 cUrl를 이용한 json 데이타 주고 받기 2020.09.28 2492
81 13자리 timestamp 생성하기 file 2020.09.28 2036
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17

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

© k2s0o1d4e0s2i1g5n. All Rights Reserved