스마트에디터5 이미지 (png 압축 수준)

스마트에디터5 이미지 (png 압축 수준)

QA

스마트에디터5 이미지 (png 압축 수준)

본문

사이트 특성상 png파일들이 많이 올라올 것 같은데 압축률을 9로 설정해도 파일용량은 크게 줄어들지를 않네요.

 

png파일의 압축률을 9 이상으로 더 압축하는 방법이 있을까요? 이게 불가능하다면 png파일은 jpg파일로 변경하여 더 적은 용량을 갖도록 하는 방법이 있을까요?

이 질문에 댓글 쓰기 :

답변 1


/**
 * 
 *  string $importPath
 *  string $exportPath
 *  int $quality       0 = low / smaller file, 100 = better / bigger file 
 * @throws Exception
 *  boolean
 */
function png2jpg($importPath, $exportPath = null, $quality = 50) {
    $rtn = true;
 
    try {
        $arr = [];
 
        $image = imagecreatefrompng($importPath);
        $bg = imagecreatetruecolor(imagesx($image), imagesy($image));
 
        $arr[] = $image;
        $arr[] = $bg;
        $arr[] = imagefill($bg, 0, 0, imagecolorallocate($bg, 255, 255, 255));
        $arr[] = imagealphablending($bg, TRUE);
        $arr[] = imagecopy($bg, $image, 0, 0, 0, 0, imagesx($image), imagesy($image));
        $arr[] = imagedestroy($image);
 
        $result = $importPath . '.jpg';
        if (empty($exportPath) == true) {
            $result = $exportPath;
        }
        $arr[] = imagejpeg($bg, $result, $quality);
        $arr[] = imagedestroy($bg);
 
        foreach ($arr as $v) {
            if ($v === false) {
                $rtn = false;
                break;
            }
        }
    } catch (Exception $err) {
        $rtn = false;
        throw $err;
    }
 
    return $rtn;
}
답변을 작성하시기 전에 로그인 해주세요.
전체 7
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT