답변 2개
8년 전
몇몇 우분투 서버에는 메모리 이슈 때문에GD가 있어도 imagerotate 함수가 빠져있다고 합니다.
서버의 PHP와 GD버전을 올리시던가 아니면 아래 대체 함수를 소스에 따로 추가하세요.
대체 함수: http://stackoverflow.com/questions/5406771/call-to-undefined-function-imagerotate">http://stackoverflow.com/questions/5406771/call-to-undefined-function-imagerotate
제 경우에는 PHP 5.2 에 포함된 GD 인데 위 소스를 추가하고 아래 부분을 주석처리까지 해야 세로로 찍은 JPG 사진이 리사이즈가 잘되었습니다.
</p><p>if(0) {</p><p> if ($ignore_transparent == 0) {</p><p> imagefill($destimg, 0, 0, imagecolorallocatealpha($destimg, 255,255, 255, 127));</p><p> imagesavealpha($destimg, true);</p><p> }</p><p>}</p><p>
로그인 후 평가할 수 있습니다
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인