긴 웨이보 이미지 생성(이미지 포함 가능, 초기 설정에서는 처음 2개의 이미지만 허용됩니다. 또한 이 방법은 이미지 형식을 지정하는 것이 더 번거로워 두 개의 이미지가 임시로 설정됩니다.) 간단한 텍스트에서 이미지를 생성하는 것은 비교적 간단하며, 하지만 리치 텍스트가 필요한 경우에는 상대적으로 번거로운 일이기는 하지만, 일부는 컴포넌트 설치가 필요한 경우도 있습니다(특정 웹 환경). 추가적으로 오픈소스인 Painty를 참고하시면 될 것 같습니다. 여기에서는 p 및 img 태그의 이미지 생성에 시간이 걸렸습니다(주로 사진 레이아웃에서) 이 기능은 원래 워드프레스에서 긴 웨이보 게시물을 푸시하는 데 사용되었으며, 커뮤니케이션과 학습을 위한 기능으로 캡슐화되었습니다.
- /**
- *
- * 긴 웨이보 사진 생성
- * @param Unknown_type 기사 ID
- * @param Unknown_type 기사 내용(ID에 따라 얻을 수 있으며 여기에 값을 직접 전달)
- * @ paramknown_type $ img_path 이미지 저장 하드 경로
- * @paramknown_type $img_path_url 이미지 경로 url
- */
- 함수 weibo_img_create($article_id,$text,$title='',$img_path='' ,$img_path_url=''){
- $font = dirname(__FILE__)."/droid.ttf";
- $pid = $article_id;
- //분할된 p 태그 처리
- $p_count = substr_count($text,''); //세그먼트 태그 수
- $content = preg_replace("//isU","n",$text); tag
- //이미지 img 태그 처리
- $all_img_height = 0;
- if(preg_match_all("/]*src="([^"]*)" [^> ;]*>/", $content, $m)) {
- //처음 두 장의 사진만 촬영
- $m[0] = array_slice($m[0],0,2 );
- $m[1] = array_slice($m[1],0,2);
- //이미지 리소스 저장
- foreach($m[1] as $i=>$src ) {
- $imgs[] = $src;
- }
- //모든 이미지 가져오기
- foreach($imgs as $i=>$image) {
- $ext = end(explore(" .", $image));
- $im = null;
- switch($ext) {
- case "gif":
- $im = imagecreatefromgif($image);
- break;
- 케이스 "png":
- $im = imagecreatefrompng($image);
- break;
- 케이스 "jpeg":
- $im = imagecreatefromjpeg($image);
- break;
- 케이스 "jpg":
- $im = imagecreatefromjpeg($image);
- break;
- }
- $imgs[$i] = array(
- '0' => $im,
- 'height'=>floor(410/imagesx($im)*imagesy($im)), //비례적으로 크기 조정
- );
- }
- $ content = Strip_tags( $content,'');
- foreach($m[0] as $i=>$full) {
- //$replace_con = str_repeat("n",ceil ($imgs[ $i]['height']/25));
- $content = str_replace_once($full, 'img-pos-pos'.$i,$content) //같은 현상을 방지하려면 한 번만 교체하세요.
- //$img_pos[$i] = mb_strpos($content, 'img-pos-pos'.$i); //img 태그 제거 후 텍스트 사용
- //$imgs[$ i][' img_pos'] = $img_pos[$i];
- $imgs[$i]['full'] = $full;
- //$content = str_replace('img-pos-pos' .$i, $replace_con, $content);
- //$all_img_height = $imgs[$i]['height'];
- }
- $all_img_height = $imgs[0]['height' ];
- $content = Strip_tags($content.'endendend');//추가된 줄 바꿈/공백이 제거되는 것을 방지
- }
- $content = Strip_tags($content);
- // $content = SpHtml2Text ($content);//텍스트로 변환
- $content = autowrap(12, 0, $font, $content, 395) //자동 줄바꿈 처리
- if(!empty($imgs )){
- foreach($imgs as $i=>$v){
- $replace_con = str_repeat("n",ceil($v['height']/25));
- $ img_pos[$ i] = mb_strpos($content, 'img-pos-pos'.$i); //img 태그 제거 후 텍스트 사용
- $imgs[$i]['img_pos'] = $img_pos[ $i ];
- $content = str_replace('img-pos-pos'.$i,$replace_con, $content);
- }
- }
- //$add_footer_input = "n사용자 정의 하단 추가 nnn";//사용자 정의 하단
- $input = str_replace("r", "", Stripcslashes($content));
- //$ 입력 = str_replace (" ", "", Stripcslashes($input));
- //$title = 폭발("nn", $input);
- $ary = imagettfbbox (12, 0, $font, $input) ;
- $width = abs($ary[2] - $ary[0]) 40;
- $height = abs($ary[1] - $ary[7]) 220 215 $p_count *25;
-
- //imagecreate()를 고화질 사진으로 대체합니다. 콘텐츠에 사진이 없으면 imagecreate를 사용하는 것이 좋습니다.
- $img = @imagecreatetruecolor($width, $height);
- $bg_color=imagecolorallocate($ img,229,231,230);
- imagecolortransparent($img,$bg_color); //투명색으로 설정, 이 줄을 주석 처리하면 위에서 설정한 배경이 출력됩니다
- imagefill( $img,0,0,$bg_color) ;
- $bgcolor = imagecolorallocate($img, '250', '250', '250');
- $bdcolor = imagecolorallocate($img, '250', '250', '250');
- $color = imagecolorallocate($img, '0', '0', '0');
- $color_title = imagecolorallocate($img, '250', '140 ', '0');
- $input = str_replace('endendend','',$input); //추가된 간섭 문자 제거
- imagettftext($img, 12, 0, 20, 160, $ color, $font, $input);
- imagettftext($img, 18, 0, 21, 160, $color_title, $font, $title);
- imageRectangle($img, 0, 0, Imagesx($ img) - 1, imagey($img) - 1, $bdcolor);
-
- //여기서 아이콘 저장 경로를 구성하세요
- $img_path = dirname(__FILE__).'/../../ weibo_img';
- $img_path_url = '/ wp-content/weibo_img';
-
- //$img_path = 비어 있음($img_path)?'':$img_path;
- //$img_path_url = 비어 있음 ($img_path_url)?'':$img_path_url;
-
- //공개 헤더/하단 이미지 합성
- if(file_exists($img_path.'/weibo_header.jpg') && file_exists($img_path.'/ weibo_footer.jpg')){
- $child1 = imagecreatefromjpeg($img_path.'/weibo_header.jpg');
- $child2 = imagecreatefromjpeg($img_path.'/weibo_footer.jpg')
- imagecopymerge( $img, $child1, 0, 40, 0, 0, Imagesx( $child1 ), imagey( $child1 ), 100 );
- imagecopymerge( $img, $child2, 0, $height-215, 0, 0 , Imagesx ( $child2 ), imagey ( $ child2 ), 100 )
- }
-
- //이미지 추가(img 태그)
- if(!empty($imgs)){
- $before_img_height = 0;
- foreach( $imgs as $i=>$v){
- $child = $v[0];
- $part_content = mb_substr($content,0,$v[ 'img_pos'],'utf-8' );
- $rows_count = get_wrap_height(12, 0, $font, $part_content , 300);
- $dst_y = ($rows_count 7)*27 - 9 $before_img_height ;
- $before_img_height = $v[ 'height'] 25;//누적 점유 높이
- imagecopyresampled($img,$child,18,$dst_y,0,0,'410',$v['height '],imagesx($child),imagesy ($child));
- }
- }
-
- //이미지 생성 및 이미지 링크 반환
- $file = 비어 있음($img_path)? 'img/p-' . $pid . ' .png':$img_path.'/p-'.$pid.'.png';
- imagepng($img, $file);
- imagedestroy($ img);
- if(empty($ img_path_url)){
- . $_SERVER['HTTP_HOST'] .'/' . file;
- }else{
- $_SERVER['HTTP_HOST'] . $img_path_url '/p-'.$pid.'.png';
- }
- }
-
- /**
- * html을 텍스트로 변환
- * @param inputString
- * @return
- */
- function SpHtml2Text($str){
- //$str = Strip_tags($str);
- $str = preg_replace("/ ||/isU","n",$str);
- $alltext = "";
- $start = 1;
- for($i=0;$i if($start==0 && $str[$i]=="> "){
- $start = 1;
- }elseif($start==1){
- if($str[$i]=="< ;"){
- $start = 0 ;
- $alltext .= " ";
- }elseif(ord($str[$i])>31){
- $alltext .= $ str[$i];
- }
- }
- }
- $alltext = str_replace(" "," ",$alltext);
- $alltext = preg_replace("/&([^ ;&]*)(;|&)/ ","",$alltext);
- $alltext = preg_replace("/[ ] /s"," ",$alltext);
- return $alltext;
- }
-
- / **
- *
- * 자동 줄 바꿈
- * @paramknown_type $fontsize 글꼴 크기
- * @paramknown_type $angle angle
- * @paramknown_type $fontface 글꼴 이름(절대 경로 사용 권장)
- * @paramknown_type $string string
- * @paramknown_type $widthDefault 너비
- */
- function autowrap($fontsize, $angle, $fontface, $string, $width) {
- $content = "";
- $letter = array();
- // 문자열을 개별 단어로 분할하여 배열에 저장합니다. letter
- for ($i=0;$i $letter[] = mb_substr( $string, $i, 1);
- }
- foreach ($letter as $l) {
- $teststr = $content." ".$l;
- $testbox = imagettfbbox($fontsize , $angle, $fontface, $teststr);
- // 이어진 문자열이 미리 설정된 너비를 초과하는지 확인
- if (($testbox[2] > $width) && ($content != = "")) {
- $content .= "n";
- }
- $content .= $l;
- }
- return $content ;
- }
-
- /**
- *
- * 특정 텍스트 줄 바꿈 후 줄 수(높이) 가져오기
- * @paramknown_type $fontsize 글꼴 크기
- * @paramknown_type $angle angle
- *@paramknown_type $ 글꼴 글꼴 이름(절대 경로 사용 권장)
- * @paramknown_type $string string
- * @paramknown_type $width 기본 너비
- */
- 함수 get_wrap_height($fontsize, $angle, $fontface, $string, $width) {
- $content = "";
- $rows_count = 0;
- $letter = array();
- // 문자열을 개별 단어로 분할하여 배열에 저장합니다. letter
- for ($i=0;$i $letter[] = mb_substr($string, $i, 1);
- }
- foreach ($letter as $l) {
- $teststr = $content." " .$l;
- $testbox = imagettfbbox($fontsize, $angle, $fontface, $teststr);
- // 이어진 문자열이 미리 설정된 너비를 초과하는지 확인
- if (($ testbox[ 2] > $width) && ($content !== "")) {
- $content .= "n";
- $rows_count = 1;
- }else{
- $rows_count = 1/$width;
- }
- $content .= $l;
- }
- return $rows_count;
- }
- /**
- *
- * 교체 함수(1회 교체)
- * @paramknown_type $needle
- * @paramknown_type $replace
- * @paramknown_type $haystack
- */
- 함수 str_replace_once ($needle, $replace, $haystack) {
- $pos = strpos($haystack, $needle);
- if ($pos === false) {
- return $haystack;
- }
- return substr_replace($haystack, $replace, $pos, strlen($needle));
- }
- ?>
코드 복사
|