블로그 이미지
Rootrator
1개를 알면 모르는 10개가 튀어나온다..!

calendar

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 31

Notice

2013. 6. 19. 09:53 Scripts



Warning: imagepng()  [function.imagepng]: gd-png: fatal libpng error: zlib error in 파일명 on line XX





PHP4에서 사용하던 소스를 PHP5에서 운용하다보니 위와 같은 에러 발생


libpng나 gd 등 재설치도 소용이 없었는데.. 문제는 버전차이로 인한 변경점



imagepng($dst, $thumb_path.'/'.$list[$i][wr_id], $qulity);


제일 마지막 함수인데 PHP4에선 압축률을 0 - 100까지 지정할수 있으나 


PHP5에선 0 - 9로 변경되었다.


imagepng($dst, $thumb_path.'/'.$list[$i][wr_id], 9);


위와같이 변경하니 에러가 사라짐..

반응형
posted by Rootrator