search
HomeBackend DevelopmentPHP TutorialLong Weibo picture generation (can include pictures)

Long Weibo image generation (can include images, the initial setting only allows the first two images. In addition, this method is more troublesome to format images, so two images are temporarily set)
It is relatively simple to generate images from simple text, but if rich text is required, it is relatively It is more troublesome. Of course, there are some formed source codes, but some require the installation of components (certain web environment). In addition, the open source painty seems to be good, you can refer to it. Here I just implement the image generation of p and img tags by myself, which also takes a lot of time. A little time (mainly for picture layout)
This function was originally used to push long Weibo posts in WordPress, and was encapsulated into functions for communication and learning.
  1. /**
  2. *
  3. * Long Weibo image generation
  4. * @param unknown_type article id
  5. * @param unknown_type article content (can be obtained according to the id, pass the value directly here)
  6. * @param unknown_type $img_path hard path for image saving
  7. * @param unknown_type $img_path_urlimage path url
  8. */
  9. function weibo_img_create($article_id,$text,$title='',$img_path='',$img_path_url=''){
  10. $font = dirname(__FILE__)."/droid.ttf";
  11. $pid = $article_id;
  12. //Segmented p tag processing
  13. $p_count = substr_count($text,''); //Segmented tag Number
  14. $content = preg_replace("//isU","n",$text); //Segmentation label
  15. //Image img label processing
  16. $all_img_height = 0;
  17. if(preg_match_all( "/Long Weibo picture generation (can include pictures)]*]*)"[^>]*>/", $content, $m)) {
  18. //Only take the first two pictures
  19. $m[0] = array_slice($m[0],0,2);
  20. $m[1] = array_slice($m[1],0,2);
  21. //Save image resources
  22. foreach($ m[1] as $i=>$src) {
  23. $imgs[] = $src;
  24. }
  25. //Get all images
  26. foreach($imgs as $i=>$image) {
  27. $ext = end(explode(".", $image));
  28. $im = null;
  29. switch($ext) {
  30. case "gif":
  31. $im = imagecreatefromgif($image);
  32. break;
  33. case "png" :
  34. $im = imagecreatefrompng($image);
  35. break;
  36. case "jpeg":
  37. $im = imagecreatefromjpeg($image);
  38. break;
  39. case "jpg":
  40. $im = imagecreatefromjpeg($image);
  41. break;
  42. }
  43. $imgs[$i] = array(
  44. '0'=>$im,
  45. 'height'=>floor(410/imagesx($im)*imagesy($im)), // Scale proportionally
  46. );
  47. }
  48. $content = strip_tags($content,'Long Weibo picture generation (can include pictures)');
  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); //only Replace once to prevent the same
  52. //$img_pos[$i] = mb_strpos($content, 'img-pos-pos'.$i); //Use the text after removing the img tag
  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');//Prevent added line breaks/spaces from being deleted
  60. }
  61. $content = strip_tags($content);
  62. //$content = SpHtml2Text($content);//Convert to text
  63. $ content = autowrap(12, 0, $font, $content, 395); // Automatic line wrapping
  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); //Use Text after removing img tag
  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 = "ncustom bottom add nnn";//custom bottom
  73. $input = str_replace("r", "", stripcslashes($content));
  74. //$input = str_replace(" " , "", stripcslashes($input));
  75. //$title = explode("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. //High-definition picture instead imagecreate(), if the content does not have images, it is recommended to use imagecreate
  80. $img = @imagecreatetruecolor($width, $height);
  81. $bg_color=imagecolorallocate($img,229,231,230);
  82. imagecolortransparent($img,$bg_color); // Settings It is a transparent color. If this line is commented out, the background set above will be output
  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); //Remove the added interference characters
  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, imagesy($img) - 1, $bdcolor);
  92. //Configure the icon saving path here
  93. $img_path = dirname(__FILE__).'/../../weibo_img';
  94. $ img_path_url = '/wp-content/weibo_img';
  95. //$img_path = empty($img_path)?'':$img_path;
  96. //$img_path_url = empty($img_path_url)?'':$img_path_url;
  97. //Synthesize public header/bottom images
  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 ), imagesy ( $child1 ), 100 );
  102. imagecopymerge ( $img, $child2, 0, $height-215, 0, 0, imagesx ( $child2 ), imagesy ( $child2 ), 100 );
  103. }
  104. //Image addition (img tag)
  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;//Cumulative occupied height
  113. imagecopyresampled($img,$child,18,$dst_y,0,0,'410',$ v['height'],imagesx($child),imagesy($child));
  114. }
  115. }
  116. //Generate image and return image link
  117. $file = empty($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. return 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['REQUEST_URI']) . '/' . $file;
  122. }else{
  123. return 'http://' . $_SERVER['HTTP_HOST'] . $img_path_url . '/p-'.$pid.'.png';
  124. }
  125. }
  126. /**
  127. * Convert html to text
  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]= =" $start = 0;
  140. $alltext .= " ";
  141. }elseif(ord($str[$i])>31){
  142. $alltext .= $str[$i] ;
  143. }
  144. }
  145. }
  146. $alltext = str_replace(" "," ",$alltext);
  147. $alltext = preg_replace("/&([^;&]*)(;|&)/","" ,$alltext);
  148. $alltext = preg_replace("/[ ]+/s"," ",$alltext);
  149. return $alltext;
  150. }
  151. /**
  152. *
  153. * Automatic line wrapping processing
  154. * @param unknown_type $fontsize font size
  155. * @param unknown_type $angle angle
  156. * @param unknown_type $fontface font name (preferably use absolute path)
  157. * @param unknown_type $string string
  158. * @param unknown_type $widthDefault width
  159. */
  160. function autowrap($fontsize , $angle, $fontface, $string, $width) {
  161. $content = "";
  162. $letter = array();
  163. // Split the string into individual words and save them into the array letter
  164. for ($ i=0;$i $letter[] = mb_substr($string, $i, 1);
  165. }
  166. foreach ($letter as $l) {
  167. $teststr = $content." ".$l;
  168. $testbox = imagettfbbox($fontsize, $angle, $fontface, $teststr);
  169. // Determine whether the spliced ​​string exceeds the preset width
  170. if (($testbox[ 2] > $width) && ($content !== "")) {
  171. $content .= "n";
  172. }
  173. $content .= $l;
  174. }
  175. return $content;
  176. }
  177. /**
  178. *
  179. * Get the number of lines (height) after a certain text is wrapped
  180. * @param unknown_type $fontsize font size
  181. * @param unknown_type $angle angle
  182. * @param unknown_type $fontface font name (it is best to use absolute paths)
  183. * @param unknown_type $string string
  184. * @param unknown_type $widthDefault width
  185. */
  186. function get_wrap_height($fontsize, $angle, $fontface, $string, $width) {
  187. $content = "";
  188. $rows_count = 0;
  189. $letter = array() ;
  190. // Split the string into individual words and save them in the array letter
  191. for ($i=0;$i $letter[] = mb_substr($string, $i, 1);
  192. }
  193. foreach ($letter as $l) {
  194. $teststr = $content." ".$l;
  195. $testbox = imagettfbbox($fontsize, $angle, $fontface, $teststr);
  196. // Determine whether the spliced ​​string exceeds the preset width
  197. if (($testbox[2] > $width) && ($content !== "")) {
  198. $content .= "n";
  199. $rows_count += 1;
  200. }else{
  201. $rows_count += 1/$width;
  202. }
  203. $content .= $l;
  204. }
  205. return $rows_count;
  206. }
  207. /**
  208. *
  209. * Replacement function (replace once)
  210. * @param unknown_type $needle
  211. * @param unknown_type $replace
  212. * @param unknown_type $haystack
  213. */
  214. function str_replace_once($needle, $replace, $haystack) {
  215. $pos = strpos($haystack, $needle);
  216. if ($pos === false) {
  217. return $haystack;
  218. }
  219. return substr_replace($haystack , $replace, $pos, strlen($needle));
  220. }
  221. ?>
Copy code


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.