長微博圖片產生(可包含圖片,初步設定只允許前兩張圖片,另外本方法圖片排版比較麻煩,故暫設定兩張圖片) 簡單的文字產生圖片較為簡單,但是如果需要富文本則相對比較麻煩,當然也有一些成型的源碼,不過有些需要安裝組件(一定的web環境),另外開源的painty似乎也不錯,可以參考,這裡只是自己實現p、img兩個標籤的圖片生成,也花了一點時間(主要還是圖片排版方面) 此功能本來是做wordpress的長微博推送,封裝成函數供交流學習
-
/**
- *
- * 長微博圖片生成
- * @param unknown_type 文章id
- * @param unknown_type 文章內容(可根據id獲取,這裡直接傳值)
- * @param unknown_type $ img_path圖片儲存硬路徑
- * @param unknown_type $img_path_url圖片路徑url
- */
- function 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); //分段標籤
- //圖片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(explode(".", $image) );
- $im = null;
- switch($ext) {
- case "gif":
- $im = imagecreatefromgif($image);
- break;
- case "pnggif($image);
- break;
- case "pnggif ":
- $im = imagecreatefrompng($image);
- break;
- case "jpeg":
- $im = imagecreatefromjpeg($image);
- break;
- case "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));
- //$ input = str_replace(" ", "", stripcslashes($input));
- //$title = explode("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, imagesy ($img) - 1, $bdcolor);
-
- //這裡設定圖示儲存路徑
- $img_path = dirname(__FILE__).'/../../weibo_img';
- $ img_path_url = '/wp-content/weibo_img';
-
- //$img_path = empty($img_path)?'':$img_path;
- //$img_path_url = empty($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, $child2, 0, $height-215, 0, 0, imagesx ( $child2 ) , imagesy ( $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 = empty($img_path)?'img/p -' . $pid . '.png':$img_path.'/p-'.$pid.'.png';
- imagepng($img, $file);
- imagedestroy($img);
- if(empty($img_path_url)){
- return 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['REQUEST_URI']) . '/' . $file;
- }else{
- return 'http://' . $_SERVER['HTTP_HOST'] . $img_path_url . '/p-'.$pid.'.png';
- }
- }
-
- /**
- * html轉換為text
- * @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;
- }
-
- /**
- *
- * 自動換行處理
- * @param unknown_type $fontsize字體大小
- * @param unknown_type $angle角度
- * @param unknown_type $fontface(最好使用絕對路徑字體名稱(最好使用絕對路徑)(face
- * @param unknown_type $string字串
- * @param unknown_type $width預設寬度
- */
- 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;
- }
-
- /**
- *
- * 取得某一文字換行後的行數(高度)
- * @param unknown_type $fontsize字體大小
- * @param unknown_type $angle角度
- * @param unknown_type $unknown_type名稱(最好使用絕對路徑)
- * @param unknown_type $string字串
- * @param unknown_type $width預設寬度
- */
- function 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;
- }
- /**
- *
- * 替換函數(替換一次)
- * @param unknown_type $needle
- * @param unknown_type $replace
- * @param unknown_type $haystack
- */
- */
- function str_replace_once($needle, $replace, $haystack) {
- $pos = strpos($haystack, $needle);
- if ($pos === false) {
- return $haystack;
- }
- return substr_replace($haystack, $replace, $pos, strlen($needle));
- }
?>
複製程式碼 ?> |