<?php
// File and rotation
$filename = 'IMG_9801.jpg'; // $filename 은 테스트 환경에 맞는 다른 파일로 대체하여 사용
$degrees = 180;
// Content type
header('Content-type: image/jpeg');
// Load
$source = imagecreatefromjpeg($filename);
// Rotate
$rotate = imagerotate($source, $degrees, 0);
// Output
imagejpeg($rotate);
// Free the memory
imagedestroy($source);
imagedestroy($rotate);
?>
'Works > PHP' 카테고리의 다른 글
PHP 언어셋 컨버팅 (0) | 2015.12.16 |
---|---|
계정별 php 파일 업로드 용량 및 최대 업로드 갯수 설정 (0) | 2015.11.24 |
php 파일 암호화 php_screw-1.5 (0) | 2015.10.30 |
모바일페이지 자동 리다이렉션 스크립트 (0) | 2015.10.30 |
php 실행시 Extension \'경로' not present. 에러 메시지 뜰 경우 (0) | 2015.10.28 |