본문 바로가기
Develop/PHP

[PHP]Warning:imagepng(): gd-png error: compression level must be 0 through 9

by bellsilver7 2016. 8. 12.
728x90

imagepng(): gd-png error: compression level must be 0 through 9

이미지 업로드 중 이러한 경고가 뜨면서 

업로드는 되지만 이미지를 출력하지 못하는 경우가 발생했다.



이미지 업로드 처리해주는 부분에 빨간색 부분을 추가해줬다.


if ( $img_ext == 'png' ) {

$q=9/100;

$picture_quality*=$q;

Imagepng($thumb,"$img_name_new",$picture_quality);

}


이미지 품질 관련 문제라고 생각된다.

728x90

댓글