PHP 홍보 포스터 생 성 방법 상세 설명

7777 단어 PHP포스터 생 성
본 고 는 PHP 가 홍보 포스터 를 만 드 는 방법 을 실례 로 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
항상 이런 수요 가 있 습 니 다.홍보 포스터 를 만 들 고 지정 한 QR 코드 를 포함 하 며 다른 사람 이 스 캔 한 후에 사용자 의 추천 관 계 를 확인 할 수 있 습 니 다.
자세히 분석 해 보면 포스터 를 홍보 하 는 데 필요 한 요 소 는 바로 포스터 배경 그림 과 QR 코드 이다.이 두 가 지 는 모두 쉽게 생 성 되 지만 이 두 가 지 를 결합 시 켜 하나의 그림 2 차원 이 되 려 면 현지에서 쉽게 저장 하고 공유 할 수 있어 야 한다.이것 이 바로 어 려 운 점 이다.H5 에서 canvas 그림 을 통 해 캡 처 와 유사 한 기능 을 완성 할 수 있 지만 작은 프로그램 에 넣 으 면 한계 가 많다.그러면 우 리 는 직접 백 스테이지 에서 포스터 를 만 들 고 프론트 데스크 에서 직접 호출 합 니 다.
초기 준비:
1.포스터 배경 그림,배경 그림 일반 저장 서버,프로그램 로 컬 읽 기;
2.QR 코드 를 홍보 하 는 것 은 QR 코드 이미지 링크 일 수도 있 고 문자열 이미지 흐름 일 수도 있 습 니 다.만약 에 자신 이 QR 코드 를 생 성 하면 상세 한 내용 은 다음 과 같 습 니 다phpqrcode 를 사용 하여 QR 코드 생 성
방법 은 다음 과 같다.

/**
 *       
 * @param array    ,       
 * @param string  $filename        ,           ,      
 * @return [type] [description]
 */
function createPoster($config=array(),$filename=""){
  //        ,        header
  if(empty($filename)) header("content-type: image/png");
  $imageDefault = array(
    'left'=>0,
    'top'=>0,
    'right'=>0,
    'bottom'=>0,
    'width'=>100,
    'height'=>100,
    'opacity'=>100
  );
  $textDefault = array(
    '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 = imagesx($background);  //    
  $backgroundHeight = imagesy($background);  //    
  $imageRes = imageCreatetruecolor($backgroundWidth,$backgroundHeight);
  $color = imagecolorallocate($imageRes, 0, 0, 0);
  imagefill($imageRes, 0, 0, $color);
  // imageColorTransparent($imageRes, $color);  //    
  imagecopyresampled($imageRes,$background,0,0,0,0,imagesx($background),imagesy($background),imagesx($background),imagesy($background));
  //     
  if(!empty($config['image'])){
    foreach ($config['image'] as $key => $val) {
      $val = array_merge($imageDefault,$val);
      $info = getimagesize($val['url']);
      $function = 'imagecreatefrom'.image_type_to_extension($info[2], false);
      if($val['stream']){   //           
        $info = getimagesizefromstring($val['url']);
        $function = 'imagecreatefromstring';
      }
      $res = $function($val['url']);
      $resWidth = $info[0];
      $resHeight = $info[1];
      //     ,         
      $canvas=imagecreatetruecolor($val['width'], $val['height']);
      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'],$val['right'],$val['bottom'],$val['width'],$val['height'],$val['opacity']);// , , , ,  ,  ,   
    }
  }
  //    
  if(!empty($config['text'])){
    foreach ($config['text'] as $key => $val) {
      $val = array_merge($textDefault,$val);
      list($R,$G,$B) = explode(',', $val['fontColor']);
      $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['fontSize'],$val['angle'],$val['left'],$val['top'],$fontColor,$val['fontPath'],$val['text']);
    }
  }
  //    
  if(!empty($filename)){
    $res = imagejpeg ($imageRes,$filename,90); //     
    imagedestroy($imageRes);
    if(!$res) return false;
    return $filename;
  }else{
    imagejpeg ($imageRes);     //       
    imagedestroy($imageRes);
  }
}

예시 1:QR 코드 가 있 는 포스터 생 성

$config = array(
  'image'=>array(
    array(
      'url'=>'qrcode/qrcode.png',     //     
      'stream'=>0,
      'left'=>116,
      'top'=>-216,
      'right'=>0,
      'bottom'=>0,
      'width'=>178,
      'height'=>178,
      'opacity'=>100
    )
  ),
  'background'=>'bg/bg1.jpg'          //   
);
$filename = 'bg/'.time().'.jpg';
//echo createPoster($config,$filename);
echo createPoster($config);


예시 2:이미지,닉네임,QR 코드 가 있 는 포스터 생 성

$config = array(
  'text'=>array(
    array(
      'text'=>'  ',
      'left'=>182,
      'top'=>105,
      'fontPath'=>'qrcode/simhei.ttf',     //    
      'fontSize'=>18,             //  
      'fontColor'=>'255,0,0',       //    
      'angle'=>0,
    )
  ),
  'image'=>array(
    array(
      'url'=>'qrcode/qrcode.png',       //      
      'left'=>130,
      'top'=>-140,
      'stream'=>0,             //             
      'right'=>0,
      'bottom'=>0,
      'width'=>150,
      'height'=>150,
      'opacity'=>100
    ),
    array(
      'url'=>'https://wx.qlogo.cn/mmopen/vi_32/DYAIOgq83eofD96opK97RXwM179G9IJytIgqXod8jH9icFf6Cia6sJ0fxeILLMLf0dVviaF3SnibxtrFaVO3c8Ria2w/0',
      'left'=>120,
      'top'=>70,
      'right'=>0,
      'stream'=>0,
      'bottom'=>0,
      'width'=>55,
      'height'=>55,
      'opacity'=>100
    ),
  ),
  'background'=>'qrcode/bjim.jpg',
);
$filename = 'qrcode/'.time().'.jpg';
//echo createPoster($config,$filename);
echo createPoster($config);


더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기