웹마스터 팁
page_full_width">
에서
회원 프로필 사진 리사이징될때 ratio가 아닌 crop으로 처리하기
2014.09.19 15:43
(XE 폴더)/modules/member/member.controller.php 를 열어주신 다음에
726 | if ( $width > $max_width || $height > $max_height || $type !=1) FileHandler::createImageFile( $target_file , $target_filename , $max_width , $max_height , $ext ); |
726 | if ( $width > $max_width || $height > $max_height || $type !=1) FileHandler::createImageFile( $target_file , $target_filename , $max_width , $max_height , $ext , 'crop' ); |
으로 바꾸어줍니다.