>백엔드 개발 >PHP 튜토리얼 >긴 웨이보 사진 생성(사진 포함 가능)

긴 웨이보 사진 생성(사진 포함 가능)

WBOY
WBOY원래의
2016-07-25 09:12:151728검색
긴 웨이보 이미지 생성(이미지 포함 가능, 초기 설정에서는 처음 2개의 이미지만 허용됩니다. 또한 이 방법은 이미지 형식을 지정하는 것이 더 번거로워 두 개의 이미지가 임시로 설정됩니다.)
간단한 텍스트에서 이미지를 생성하는 것은 비교적 간단하며, 하지만 리치 텍스트가 필요한 경우에는 상대적으로 번거로운 일이기는 하지만, 일부는 컴포넌트 설치가 필요한 경우도 있습니다(특정 웹 환경). 추가적으로 오픈소스인 Painty를 참고하시면 될 것 같습니다. 여기에서는 p 및 img 태그의 이미지 생성에 시간이 걸렸습니다(주로 사진 레이아웃에서)
이 기능은 원래 워드프레스에서 긴 웨이보 게시물을 푸시하는 데 사용되었으며, 커뮤니케이션과 학습을 위한 기능으로 캡슐화되었습니다.
  1. /**
  2. *
  3. * 긴 웨이보 사진 생성
  4. * @param Unknown_type 기사 ID
  5. * @param Unknown_type 기사 내용(ID에 따라 얻을 수 있으며 여기에 값을 직접 전달)
  6. * @ paramknown_type $ img_path 이미지 저장 하드 경로
  7. * @paramknown_type $img_path_url 이미지 경로 url
  8. */
  9. 함수 weibo_img_create($article_id,$text,$title='',$img_path='' ,$img_path_url=''){
  10. $font = dirname(__FILE__)."/droid.ttf";
  11. $pid = $article_id;
  12. //분할된 p 태그 처리
  13. $p_count = substr_count($text,'

    '); //세그먼트 태그 수
  14. $content = preg_replace("/

    /isU","n",$text); tag
  15. //이미지 img 태그 처리
  16. $all_img_height = 0;
  17. if(preg_match_all("/]*src="([^"]*)" [^> ;]*>/", $content, $m)) {
  18. //처음 두 장의 사진만 촬영
  19. $m[0] = array_slice($m[0],0,2 );
  20. $m[1] = array_slice($m[1],0,2);
  21. //이미지 리소스 저장
  22. foreach($m[1] as $i=>$src ) {
  23. $imgs[] = $src;
  24. }
  25. //모든 이미지 가져오기
  26. foreach($imgs as $i=>$image) {
  27. $ext = end(explore(" .", $image));
  28. $im = null;
  29. switch($ext) {
  30. case "gif":
  31. $im = imagecreatefromgif($image);
  32. break;
  33. 케이스 "png":
  34. $im = imagecreatefrompng($image);
  35. break;
  36. 케이스 "jpeg":
  37. $im = imagecreatefromjpeg($image);
  38. break;
  39. 케이스 "jpg":
  40. $im = imagecreatefromjpeg($image);
  41. break;
  42. }
  43. $imgs[$i] = array(
  44. '0' => $im,
  45. 'height'=>floor(410/imagesx($im)*imagesy($im)), //비례적으로 크기 조정
  46. );
  47. }
  48. $ content = Strip_tags( $content,'');
  49. foreach($m[0] as $i=>$full) {
  50. //$replace_con = str_repeat("n",ceil ($imgs[ $i]['height']/25));
  51. $content = str_replace_once($full, 'img-pos-pos'.$i,$content) //같은 현상을 방지하려면 한 번만 교체하세요.
  52. //$img_pos[$i] = mb_strpos($content, 'img-pos-pos'.$i); //img 태그 제거 후 텍스트 사용
  53. //$imgs[$ i][' img_pos'] = $img_pos[$i];
  54. $imgs[$i]['full'] = $full;
  55. //$content = str_replace('img-pos-pos' .$i, $replace_con, $content);
  56. //$all_img_height = $imgs[$i]['height'];
  57. }
  58. $all_img_height = $imgs[0]['height' ];
  59. $content = Strip_tags($content.'endendend');//추가된 줄 바꿈/공백이 제거되는 것을 방지
  60. }
  61. $content = Strip_tags($content);
  62. // $content = SpHtml2Text ($content);//텍스트로 변환
  63. $content = autowrap(12, 0, $font, $content, 395) //자동 줄바꿈 처리
  64. if(!empty($imgs )){
  65. foreach($imgs as $i=>$v){
  66. $replace_con = str_repeat("n",ceil($v['height']/25));
  67. $ img_pos[$ i] = mb_strpos($content, 'img-pos-pos'.$i); //img 태그 제거 후 텍스트 사용
  68. $imgs[$i]['img_pos'] = $img_pos[ $i ];
  69. $content = str_replace('img-pos-pos'.$i,$replace_con, $content);
  70. }
  71. }
  72. //$add_footer_input = "n사용자 정의 하단 추가 nnn";//사용자 정의 하단
  73. $input = str_replace("r", "", Stripcslashes($content));
  74. //$ 입력 = str_replace (" ", "", Stripcslashes($input));
  75. //$title = 폭발("nn", $input);
  76. $ary = imagettfbbox (12, 0, $font, $input) ;
  77. $width = abs($ary[2] - $ary[0]) 40;
  78. $height = abs($ary[1] - $ary[7]) 220 215 $p_count *25;
  79. //imagecreate()를 고화질 사진으로 대체합니다. 콘텐츠에 사진이 없으면 imagecreate를 사용하는 것이 좋습니다.
  80. $img = @imagecreatetruecolor($width, $height);
  81. $bg_color=imagecolorallocate($ img,229,231,230);
  82. imagecolortransparent($img,$bg_color); //투명색으로 설정, 이 줄을 주석 처리하면 위에서 설정한 배경이 출력됩니다
  83. imagefill( $img,0,0,$bg_color) ;
  84. $bgcolor = imagecolorallocate($img, '250', '250', '250');
  85. $bdcolor = imagecolorallocate($img, '250', '250', '250');
  86. $color = imagecolorallocate($img, '0', '0', '0');
  87. $color_title = imagecolorallocate($img, '250', '140 ', '0');
  88. $input = str_replace('endendend','',$input); //추가된 간섭 문자 제거
  89. imagettftext($img, 12, 0, 20, 160, $ color, $font, $input);
  90. imagettftext($img, 18, 0, 21, 160, $color_title, $font, $title);
  91. imageRectangle($img, 0, 0, Imagesx($ img) - 1, imagey($img) - 1, $bdcolor);
  92. //여기서 아이콘 저장 경로를 구성하세요
  93. $img_path = dirname(__FILE__).'/../../ weibo_img';
  94. $img_path_url = '/ wp-content/weibo_img';
  95. //$img_path = 비어 있음($img_path)?'':$img_path;
  96. //$img_path_url = 비어 있음 ($img_path_url)?'':$img_path_url;
  97. //공개 헤더/하단 이미지 합성
  98. if(file_exists($img_path.'/weibo_header.jpg') && file_exists($img_path.'/ weibo_footer.jpg')){
  99. $child1 = imagecreatefromjpeg($img_path.'/weibo_header.jpg');
  100. $child2 = imagecreatefromjpeg($img_path.'/weibo_footer.jpg')
  101. imagecopymerge( $img, $child1, 0, 40, 0, 0, Imagesx( $child1 ), imagey( $child1 ), 100 );
  102. imagecopymerge( $img, $child2, 0, $height-215, 0, 0 , Imagesx ( $child2 ), imagey ( $ child2 ), 100 )
  103. }
  104. //이미지 추가(img 태그)
  105. if(!empty($imgs)){
  106. $before_img_height = 0;
  107. foreach( $imgs as $i=>$v){
  108. $child = $v[0];
  109. $part_content = mb_substr($content,0,$v[ 'img_pos'],'utf-8' );
  110. $rows_count = get_wrap_height(12, 0, $font, $part_content , 300);
  111. $dst_y = ($rows_count 7)*27 - 9 $before_img_height ;
  112. $before_img_height = $v[ 'height'] 25;//누적 점유 높이
  113. imagecopyresampled($img,$child,18,$dst_y,0,0,'410',$v['height '],imagesx($child),imagesy ($child));
  114. }
  115. }
  116. //이미지 생성 및 이미지 링크 반환
  117. $file = 비어 있음($img_path)? 'img/p-' . $pid . ' .png':$img_path.'/p-'.$pid.'.png';
  118. imagepng($img, $file);
  119. imagedestroy($ img);
  120. if(empty($ img_path_url)){
  121. . $_SERVER['HTTP_HOST'] .'/' . file;
  122. }else{
  123. $_SERVER['HTTP_HOST'] . $img_path_url '/p-'.$pid.'.png';
  124. }
  125. }
  126. /**
  127. * html을 텍스트로 변환
  128. * @param inputString
  129. * @return
  130. */
  131. function SpHtml2Text($str){
  132. //$str = Strip_tags($str);
  133. $str = preg_replace("/ ||/isU","n",$str);
  134. $alltext = "";
  135. $start = 1;
  136. for($i=0;$i if($start==0 && $str[$i]=="> "){
  137. $start = 1;
  138. }elseif($start==1){
  139. if($str[$i]=="< ;"){
  140. $start = 0 ;
  141. $alltext .= " ";
  142. }elseif(ord($str[$i])>31){
  143. $alltext .= $ str[$i];
  144. }
  145. }
  146. }
  147. $alltext = str_replace(" "," ",$alltext);
  148. $alltext = preg_replace("/&([^ ;&]*)(;|&)/ ","",$alltext);
  149. $alltext = preg_replace("/[ ] /s"," ",$alltext);
  150. return $alltext;
  151. }
  152. / **
  153. *
  154. * 자동 줄 바꿈
  155. * @paramknown_type $fontsize 글꼴 크기
  156. * @paramknown_type $angle angle
  157. * @paramknown_type $fontface 글꼴 이름(절대 경로 사용 권장)
  158. * @paramknown_type $string string
  159. * @paramknown_type $widthDefault 너비
  160. */
  161. function autowrap($fontsize, $angle, $fontface, $string, $width) {
  162. $content = "";
  163. $letter = array();
  164. // 문자열을 개별 단어로 분할하여 배열에 저장합니다. letter
  165. for ($i=0;$i $letter[] = mb_substr( $string, $i, 1);
  166. }
  167. foreach ($letter as $l) {
  168. $teststr = $content." ".$l;
  169. $testbox = imagettfbbox($fontsize , $angle, $fontface, $teststr);
  170. // 이어진 문자열이 미리 설정된 너비를 초과하는지 확인
  171. if (($testbox[2] > $width) && ($content != = "")) {
  172. $content .= "n";
  173. }
  174. $content .= $l;
  175. }
  176. return $content ;
  177. }
  178. /**
  179. *
  180. * 특정 텍스트 줄 바꿈 후 줄 수(높이) 가져오기
  181. * @paramknown_type $fontsize 글꼴 크기
  182. * @paramknown_type $angle angle
  183. *@paramknown_type $ 글꼴 글꼴 이름(절대 경로 사용 권장)
  184. * @paramknown_type $string string
  185. * @paramknown_type $width 기본 너비
  186. */
  187. 함수 get_wrap_height($fontsize, $angle, $fontface, $string, $width) {
  188. $content = "";
  189. $rows_count = 0;
  190. $letter = array();
  191. // 문자열을 개별 단어로 분할하여 배열에 저장합니다. letter
  192. for ($i=0;$i $letter[] = mb_substr($string, $i, 1);
  193. }
  194. foreach ($letter as $l) {
  195. $teststr = $content." " .$l;
  196. $testbox = imagettfbbox($fontsize, $angle, $fontface, $teststr);
  197. // 이어진 문자열이 미리 설정된 너비를 초과하는지 확인
  198. if (($ testbox[ 2] > $width) && ($content !== "")) {
  199. $content .= "n";
  200. $rows_count = 1;
  201. }else{
  202. $rows_count = 1/$width;
  203. }
  204. $content .= $l;
  205. }
  206. return $rows_count;
  207. }
  208. /**
  209. *
  210. * 교체 함수(1회 교체)
  211. * @paramknown_type $needle
  212. * @paramknown_type $replace
  213. * @paramknown_type $haystack
  214. */
  215. 함수 str_replace_once ($needle, $replace, $haystack) {
  216. $pos = strpos($haystack, $needle);
  217. if ($pos === false) {
  218. return $haystack;
  219. }
  220. return substr_replace($haystack, $replace, $pos, strlen($needle));
  221. }
  222. ?>
코드 복사


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.