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