-
- /*
- php は、メソッド
- http://www.yourdomian.com/text_png.php3?msg=helloworld+class&rot=15&size=48&font=fonts/ARIAL を呼び出してテキスト PNG 画像を生成します。 TTF
-
- */
-
- Header("Content-type: image/png");
-
- class textPNG {
- var $font = 'fonts/TIMES.TTF' // スクリプト格納ディレクトリへの相対パス。 .
- var $msg = "未定義"; // デフォルトのテキスト。
- var $size = 24;
- var $rot = 0; // 回転角度。
- var $pad = 0 // パディング。 1; // テキストの透明度。
- var $red = 0 // 黒い背景に...
- var $blu = 0;
- var $bg_red = 255; White.
- var $bg_grn = 255;
- var $bg_blu = 255;
-
- functiondraw() {
- $width = 0;
- $height = 0;
- $offset_x = 0;
- $offset_y = 0;
- $ 境界= array();
- $image = "";
-
- // テキストの高さを決定します
- $bounds = ImageTTFBBox($this->size, $this->rot, $this->font, "W ");
- if ($this->rot $font_height = abs($bounds[7]-$bounds[1]);
- } else if ($this->rot > 0 ) {
- $font_height = abs($bounds[1]-$bounds[7]);
- } else {
- $font_height = abs($bounds[7]-$bounds[1]);
- }
-
- //境界線の高さを決定します。
- $bounds = ImageTTFBBox($this->size, $this->rot, $this->font, $this->msg);
- if ($this->rot < ; 0) {
- $width = abs($bounds[4]-$bounds[0]);
- $height = abs($bounds[3]-$bounds[7]);
- $offset_y = $font_height;
- $ offset_x = 0;
-
- } else if ($this->rot > 0) {
- $width = abs($bounds[2]-$bounds[6]);
- $height = abs($bounds[ 1 ]-$bounds[5]);
- $offset_y = abs($bounds[7]-$bounds[5])+$font_height;
- $offset_x = abs($bounds[0]-$bounds[6]) ;
-
- } else {
- $width = abs($bounds[4]-$bounds[6]);
- $height = abs($bounds[7]-$bounds[1]);
- $offset_y = $font_height ;
- $offset_x = 0;
- }
-
- $image = imagecreate($width+($this->pad*2)+1,$height+($this->pad*2)+1);
-
- $background = ImageColorAllocate($image, $this->bg_red, $this->bg_grn, $this->bg_blu);
- $foreground = ImageColorAllocate($image, $this->red, $this-> ; grn, $this->blu);
-
- if ($this->transparent) ImageColorTransparent($image, $background);
- ImageInterlace($image, false);
-
- // Draw.
- ImageTTFText($画像、$this->size、$this->rot、$offset_x+$this->pad、$offset_y+$this->pad、$foreground、$this->font、$this->msg ) ;
-
- // png 形式で出力します。
- imagePNG($image);
- }
- }
-
- $text = new textPNG;
-
- if (isset($msg)) $text->msg = $msg; // 表示するテキスト
- if (isset($font)) $text->font = $font; // フォント
- if (isset($size)) $text->size = $size;サイズ
- if (isset($rot)) $text->rot = $rot; // 回転角度
- if (isset($pad)) $text->pad = $pad; // パディング
- if (isset; ( $red)) $text->red = $red; // 文字の色
- if (isset($grn)) $text->gt;grn = $grn; // ..
- if (isset($blu) ) $text->blu = $blu; // ..
- if (isset($bg_red)) $text->bg_red = $bg_red; // 背景色.
- if (isset($bg_grn)) - >bg_grn = $bg_grn; // ..
- if (isset($bg_blu)) $text->bg_blu = $bg_blu; // ..
- if (isset($tr)) $text->transparent = $tr; // Transparency (boolean).
-
- $text->draw();
- ?>
-
-
コードをコピー
GD ライブラリのその他のアプリケーション例については、以下を参照してください。
phpでgd2拡張機能を有効にする方法の紹介
php検証コードの例(GDライブラリが検証コードを生成)
PHP GDライブラリの中国語文字化けの解決策
検証コードを生成するphp GDライブラリの例
画像をアップロードしてサムネイルを作成するためのphp GDライブラリコード
phpはGDライブラリを使用してbmp形式(imagebmp)の画像を生成します
|