wilson's story

이미지 사이즈 수정하기 본문

PHP

이미지 사이즈 수정하기

wilson 2008. 7. 14. 16:12
반응형
width 값을 max값을 600px으로 하고, width값에 맞춰서 height 값을 유동적으로 변경 되도록 한다.



if ($content[file_name]>0) {            
            
            $arr_filesize = getimagesize("폴더/파일이름");    //실제 저장된 경로와 파일명
            $width  = $arr_filesize[0];
            $height = $arr_filesize[1];
            if ($arr_filesize[0]>600) $width  = "600";
            //if ($arr_filesize[1]>600) $height = "600";
            $str_filename  = '';
        }


반응형