Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- tw_cli
- vsftpd
- Linux
- 라라벨
- ubuntu
- Subversion
- Fedora
- VMware
- 명령어
- AIR
- redmine
- Laravel
- httpd.conf
- GlusterFS
- php5
- VirtualBox
- JavaScript
- APM
- exception
- CentOS
- fstab
- MySQL
- php
- BIND
- Network
- ftp
- MOUNT
- nateon
- xampp
- Trac
Archives
- Today
- Total
어제와 똑같이 살면서 다른 미래를 기대하지 말자
PHP – imagecreatefromjpeg() recoverable error: Premature end of JPEG file 본문
IT관심분야/PHP
PHP – imagecreatefromjpeg() recoverable error: Premature end of JPEG file
플랜액터 2011. 4. 18. 16:52GD 처리 중 imagecreatefromjpeg 함수 사용 시 특정 jpeg 파일에 대해
imagecreatefromjpeg() : gd-jpeg, libjpeg: recoverable error: Premature end of JPEG...
에러가 발생.. 구굴링 결과..
1. php 5.0 ~ 5.1.2에서는 최신버전으로 php 업데이트..
2. php 5.1.3 이상일 경우 gd.jpeg_ignore_warning 설정을 해제한다.
php.ini 에서 설정 변경
- php 코드상 ini_set 설정
imagecreatefromjpeg() : gd-jpeg, libjpeg: recoverable error: Premature end of JPEG...
에러가 발생.. 구굴링 결과..
1. php 5.0 ~ 5.1.2에서는 최신버전으로 php 업데이트..
2. php 5.1.3 이상일 경우 gd.jpeg_ignore_warning 설정을 해제한다.
php.ini 에서 설정 변경
[gd]
; Tell the jpeg decode to ignore warnings and try to create
; a gd image. The warning will then be displayed as notices
; disabled by default
; http://www.php.net/manual/en/image.configuration.php#ini.image.jpeg-ignore-warning
gd.jpeg_ignore_warning = 1
; Tell the jpeg decode to ignore warnings and try to create
; a gd image. The warning will then be displayed as notices
; disabled by default
; http://www.php.net/manual/en/image.configuration.php#ini.image.jpeg-ignore-warning
gd.jpeg_ignore_warning = 1
- php 코드상 ini_set 설정
ini_set('gd.jpeg_ignore_warning', 1);
'IT관심분야 > PHP' 카테고리의 다른 글
[PHP] 실시간 화면 출력 flush, ob_flush... (0) | 2011.10.12 |
---|---|
[Zend Framework] Soap 사용하기 (0) | 2011.09.19 |
[PHP]FILES array가 20개로 제한되는 경우.. (0) | 2010.11.16 |
[PHP] 소스가 그대로 노출되는 현상 (short_open_tag = On) (1) | 2010.11.12 |
layout 렌더링 경로지정 (0) | 2008.09.24 |
Comments