首頁  >  文章  >  後端開發  >  長微博生成工具PHP源碼 根據文字生成長微博圖片

長微博生成工具PHP源碼 根據文字生成長微博圖片

WBOY
WBOY原創
2016-07-25 08:44:291429瀏覽
  1. error_reporting(7);
  2. define('ROOT', getcwd());
  3. define('BASEDIR', parse_url($ _VERVER ) ['REQUEST_URI'], PHP_URL_PATH));
  4. if ($_POST['text']) {
  5. $ret = array();
  6. $text = $_POST['text'];
  7. 嘗試{
  8. $ret['imgurl'] = text2img($text, (array) $_REQUEST['config']);
  9. }
  10. catch (異常$e) {
  11. $ ret ['imgurl'] = print_r($e, true);
  12. }
  13. echo str_replace('\/', '/', json_encode($ret));
  14. exit(0);
  15. }
  16. 函數text2img($text, $options = array())
  17. {
  18. $text .= "n------------------ -------------- - ------------n";
  19. $text .= "http://iscup.com";
  20. $rows = substr_count($text, "n") 1;
  21. $font_path = $options['fontfile'] ? $options['fontfile'] :根。 " 找不到字體檔案:$font_path ");
  22. $font_size = $options['fontsize' ]? $options['fontsize'] : 12;
  23. $padding = $options['padding'] ? $options['padding'] : 30;
  24. $row_plus_height = $options['row_plus_height'] ? $options['row_plus_height'] : 4;
  25. $border = 1;
  26. $im_width = 430;
  27. $im_height = ($row_plus_height ($font_size * 4) / 3) * $rows ($row_plus_height ($font_size * 4) / 3) * $ $border) * 2;
  28. $im = @imagecreatetruecolor($im_width, $im_height);
  29. if (!$im)
  30. throw new Exception("初始化圖片失敗,請檢查GD配置");
  31. imagefilledrectangle($im, $border, $border, ($im_width - 2 * $border), ($im_height - 2 * $border), imagecolorallocate($im, 255, 255, 255));
  32. imagettftext($im, $font_size, 0, ($border $padding), (($font_size * 4) / 3 $border $padding), imagecolorallocate($im, 0, 0, 0), $font_path, $text) ;
  33. $base_path = '/files';
  34. $base_filename = date("Y-m-d,H-i-s") . '.png';
  35. $short_filename = $base_path . '/' 。 $short_filename;
  36. @mkdir(ROOT . $base_path, 0777, true);
  37. $filename = ROOT . $short_filename;
  38. if (!imagepng($im, $filename)) {
  39. throw new Exception("建立圖片時發生錯誤。");
  40. }
  41. @imagedestroy($im);
  42. return $short_url;
  43. }
  44. ?>
  45. < >
  46. 長微博工具
  47. 長微博工具




  48. 長微博

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn