개발 꿀팁/PHP

네이티브 PHP에서 네이티브 GD 라이브러리를 호출하여 포스터를 생성합니다

Jammie 2022. 9. 20. 14:47
반응형
      $config=['background'=>'포스터배경도',
            'image'=>[
                ['src' => '그림 주소 1', 'left' => '왼쪽 거리', 'top' => '위 여백', 'opacity' => '투명도 0.1-1', 'width' =>'너비', 'height' => '높이']
                ,
                ['src' => '그림 주소 2', 'left' => '왼쪽 거리', 'top' => '위 여백', 'opacity' => '투명도 0.1-1', 'width' =>'너비', 'height' => '높이']

            ],
            'text'=>[
                ['text'=>'텍스트 내용 1', 'left' => '왼쪽 거리', 'top' => '위 여백','fontSize'=>'자호','transform'=>'글꼴 각도','fontPath'=>'텍스트 글꼴 경로'],
                ['text'=>'텍스트 내용 2', 'left' => '왼쪽 거리', 'top' => '위 여백','fontColor'=>'글꼴 색상','transform'=>'글꼴 각도','fontPath'=>'텍스트 글꼴 경로]']
            ]];

             /**
     * 포스터 만들기
     * @param array $config 포스터 생성 설정
     * @param string $filename 생성 후 주소 저장
     * @return bool|string
     */
    function createPoster($config = array(), $filename = "")
    {
        //만약 신문이 무슨 잘못을 저질렀는지 보려면, 먼저 이 header를 주석하여 설명하면 된다
        ini_set('default_socket_timeout', 1);
        if (empty($filename)) header("content-type: image/png");
        $imageDefault = [
            'left' => 0,
            'top' => 0,
            'right' => 0,
            'bottom' => 0,
            'width' => 100,
            'height' => 100,
            'opacity' => 100
        ];
        $textDefault = [
            'text' => '',
            'left' => 0,
            'top' => 0,
            'fontSize' => 32,       //상호
            'fontColor' => '255,255,255', //글꼴 색상
            'angle' => 0,
        ];
  
        $background = $config['background'];//포스터의 맨 아래 배경
        //배경 방법
        $backgroundInfo = getimagesize($background);
        $backgroundFun = 'imagecreatefrom' . image_type_to_extension($backgroundInfo[2], false);
        $background = $backgroundFun($background);
        $backgroundWidth = $backgroundInfo[0];  //배경 폭
        $backgroundHeight = $backgroundInfo[1];  //배경 높이
        $imageRes = imageCreatetruecolor($backgroundWidth, $backgroundHeight);
        $color = imagecolorallocate($imageRes, 0, 0, 0);
        //imageColorTransparent($imageRes, $color);  //색을 투명하다
        imagefill($imageRes, 0, 0, $color);
        imagecopyresampled($imageRes, $background, 0, 0, 0, 0, $backgroundInfo[0], $backgroundInfo[1], imagesx($background), imagesy($background));
        //그림을 처리했습니다
        if (!empty($config['image'])) {
            foreach ($config['image'] as $key => $val) {
                $val = array_merge($imageDefault, $val);
                if (strpos($val['src'], 'http://thirdwx.qlogo.cn') === false) {
                    $info = getimagesize($val['src']);
                    $function = 'imagecreatefrom' . image_type_to_extension($info[2], false);
                    if (!empty($val['stream'])) {   //문자열 그림 스트림이 전송된 경우
                        $info = getimagesizefromstring($val['src']);
                        $function = 'imagecreatefromstring';
                    }

                    $res = $function($val['src']);
                    $resWidth = $info[0];
                    $resHeight = $info[1];
                    //그림판을 만들고 그림을 지정된 크기로 확대/ 축소합니다
                    $canvas = imagecreatetruecolor($val['width'], $val['height']);
                    imageColorTransparent($canvas, $color);
                    imagefill($canvas, 0, 0, $color);
                    //키 함수, 파라미터 (대상 자원, 소스, 대상 자원의 시작 좌표 x, y, 소스 자원의 시작 좌표 x, y, 대상 자원의 너비 w, h, 소스 자원의 너비 w, h)

                    imagecopyresampled($canvas, $res, 0, 0, 0, 0, $val['width'], $val['height'], $resWidth, $resHeight);
                } else {
                    $res = imagecreatefromjpeg($val['src']);
                    $resWidth = 132;
                    $resHeight = 132;
                    $canvas = imagecreatetruecolor($val['width'], $val['height']);
                    imageColorTransparent($canvas, $color);
                    imagefill($canvas, 0, 0, $color);
                    //키 함수, 파라미터 (대상 자원, 소스, 대상 자원의 시작 좌표 x, y, 소스 자원의 시작 좌표 x, y, 대상 자원의 너비 w, h, 소스 자원의 너비 w, h)
                    imagecopyresampled($canvas, $res, 0, 0, 0, 0, $val['width'], $val['height'], $resWidth, $resHeight);
                }
                $val['left'] = $val['left'] < 0 ? $backgroundWidth - abs($val['left']) - $val['width'] : $val['left'];
                $val['top'] = $val['top'] < 0 ? $backgroundHeight - abs($val['top']) - $val['height'] : $val['top'];
                //그림 그리기
                imagecopymerge($imageRes, $canvas, $val['left'], $val['top'], 0, 0, $val['width'], $val['height'], $val['opacity'] * 100);//左,上,右,下,宽度,高度,透明度
            }
        }
        //문자를 처리하다
        if (!empty($config['text'])) {
            foreach ($config['text'] as $key => $val) {
                $val['fontPath'] = '/static/index/simhei.ttf';
                $val = array_merge($textDefault, $val);
                if (strpos('rgb', $val['color']) === false) {
                    $rgb = self::hex2rgb($val['color']);
                    $fontColor = imagecolorallocate($imageRes, $rgb['r'], $rgb['g'], $rgb['b']);
                } else {
                    $val['color'] = str_replace('rgb(', '', $val['color']);
                    $val['color'] = str_replace(')', '', $val['color']);
                    list($R, $G, $B) = explode(',', $val['color']);
                    $fontColor = imagecolorallocate($imageRes, $R, $G, $B);
                }
                $val['left'] = $val['left'] < 0 ? $backgroundWidth - abs($val['left']) : $val['left'];
                $val['top'] = $val['top'] < 0 ? $backgroundHeight - abs($val['top']) : $val['top'];
                imagettftext($imageRes, $val['font_size'], -$val['transform'], $val['left'], $val['top'] + $val['font_size'], $fontColor, $val['fontPath'], $val['text']);
            }
        }
        //그림을 생성하다
        if (!empty($filename)) {
            $res = imagepng($imageRes, $filename); //로컬로 저장
            imagedestroy($imageRes);
            if (!$res) return false;
            return $filename;
        } else {
            imagepng($imageRes);     //브라우저에 보이기
            imagedestroy($imageRes);
        }
    }
    //직접 호출하면 바로 사용할 수 있습니다
    createPoster($config,'파일 저장 주소');

 

반응형