ホームページ  >  記事  >  バックエンド開発  >  テキスト PNG イメージを生成する PHP 関数

テキスト PNG イメージを生成する PHP 関数

WBOY
WBOYオリジナル
2016-07-25 08:56:08970ブラウズ
  1. /*
  2. php は、メソッド
  3. http://www.yourdomian.com/text_png.php3?msg=helloworld+class&rot=15&size=48&font=fonts/ARIAL を呼び出してテキスト PNG 画像を生成します。 TTF
  4. */
  5. Header("Content-type: image/png");
  6. class textPNG {
  7. var $font = 'fonts/TIMES.TTF' // スクリプト格納ディレクトリへの相対パス。 .
  8. var $msg = "未定義"; // デフォルトのテキスト。
  9. var $size = 24;
  10. var $rot = 0; // 回転角度。
  11. var $pad = 0 // パディング。 1; // テキストの透明度。
  12. var $red = 0 // 黒い背景に...
  13. var $blu = 0;
  14. var $bg_red = 255; White.
  15. var $bg_grn = 255;
  16. var $bg_blu = 255;
  17. functiondraw() {
  18. $width = 0;
  19. $height = 0;
  20. $offset_x = 0;
  21. $offset_y = 0;
  22. $ 境界= array();
  23. $image = "";
  24. // テキストの高さを決定します
  25. $bounds = ImageTTFBBox($this->size, $this->rot, $this->font, "W ");
  26. if ($this->rot $font_height = abs($bounds[7]-$bounds[1]);
  27. } else if ($this->rot > 0 ) {
  28. $font_height = abs($bounds[1]-$bounds[7]);
  29. } else {
  30. $font_height = abs($bounds[7]-$bounds[1]);
  31. }
  32. //境界線の高さを決定します。
  33. $bounds = ImageTTFBBox($this->size, $this->rot, $this->font, $this->msg);
  34. if ($this->rot < ; 0) {
  35. $width = abs($bounds[4]-$bounds[0]);
  36. $height = abs($bounds[3]-$bounds[7]);
  37. $offset_y = $font_height;
  38. $ offset_x = 0;
  39. } else if ($this->rot > 0) {
  40. $width = abs($bounds[2]-$bounds[6]);
  41. $height = abs($bounds[ 1 ]-$bounds[5]);
  42. $offset_y = abs($bounds[7]-$bounds[5])+$font_height;
  43. $offset_x = abs($bounds[0]-$bounds[6]) ;
  44. } else {
  45. $width = abs($bounds[4]-$bounds[6]);
  46. $height = abs($bounds[7]-$bounds[1]);
  47. $offset_y = $font_height ;
  48. $offset_x = 0;
  49. }
  50. $image = imagecreate($width+($this->pad*2)+1,$height+($this->pad*2)+1);
  51. $background = ImageColorAllocate($image, $this->bg_red, $this->bg_grn, $this->bg_blu);
  52. $foreground = ImageColorAllocate($image, $this->red, $this-> ; grn, $this->blu);
  53. if ($this->transparent) ImageColorTransparent($image, $background);
  54. ImageInterlace($image, false);
  55. // Draw.
  56. ImageTTFText($画像、$this->size、$this->rot、$offset_x+$this->pad、$offset_y+$this->pad、$foreground、$this->font、$this->msg ) ;
  57. // png 形式で出力します。
  58. imagePNG($image);
  59. }
  60. }
  61. $text = new textPNG;
  62. if (isset($msg)) $text->msg = $msg; // 表示するテキスト
  63. if (isset($font)) $text->font = $font; // フォント
  64. if (isset($size)) $text->size = $size;サイズ
  65. if (isset($rot)) $text->rot = $rot; // 回転角度
  66. if (isset($pad)) $text->pad = $pad; // パディング
  67. if (isset; ( $red)) $text->red = $red; // 文字の色
  68. if (isset($grn)) $text->gt;grn = $grn; // ..
  69. if (isset($blu) ) $text->blu = $blu; // ..
  70. if (isset($bg_red)) $text->bg_red = $bg_red; // 背景色.
  71. if (isset($bg_grn)) - >bg_grn = $bg_grn; // ..
  72. if (isset($bg_blu)) $text->bg_blu = $bg_blu; // ..
  73. if (isset($tr)) $text->transparent = $tr; // Transparency (boolean).
  74. $text->draw();
  75. ?>
コードをコピー
GD ライブラリのその他のアプリケーション例については、以下を参照してください。
phpでgd2拡張機能を有効にする方法の紹介

php検証コードの例(GDライブラリが検証コードを生成) PHP GDライブラリの中国語文字化けの解決策 検証コードを生成するphp GDライブラリの例 画像をアップロードしてサムネイルを作成するためのphp GDライブラリコード phpはGDライブラリを使用してbmp形式(imagebmp)の画像を生成します

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。