PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

PHPのimagechar()関数


imagechar()関数は、文字を水平方向に描画します。

構文

bool imagechar( img, font, x, y, ch, color )

パラメータ

  • img :imagecreatetruecolor()を使用して画像を作成します。

  • フォント :フォントサイズを設定する

  • x :x座標

  • y :y座標

  • c :描くキャラクター。

  • :imagecolorallocate()で作成された色識別子。

戻る

imagechar()関数は、成功した場合はTRUEを返し、失敗した場合はFALSEを返します。

次に例を示します。

<?php
   $img = imagecreate(400, 300);
   $str = 'Demo';
   $bgcolor = imagecolorallocate($img, 30, 80, 70);
   $textcolor = imagecolorallocate($img, 255, 255, 255);
   imagechar($img, 80, 100, 90, $str, $textcolor);
   header('Content-type: image/png');
   imagepng($img);
?>

出力

出力は次のとおりです。

PHPのimagechar()関数

上記の例に示すように、異なる座標と高さ/幅で文字を描画している別の例を見てみましょう。

<?php
   $img = imagecreate(350, 270);
   $str = 'Example';
   $bgcolor = imagecolorallocate($img, 70, 100, 130);
   $textcolor = imagecolorallocate($img, 200, 195, 210);
   imagechar($img, 100, 50, 70, $str, $textcolor);
   header('Content-type: image/png');
   imagepng($img);
?>

出力

出力は次のとおりです。

PHPのimagechar()関数


  1. PHPのimagefilledrectangle()関数

    imagefilledrectangle()関数は、塗りつぶされた長方形を描画します。 構文 imagefilledrectangle( $img, $x1, $y1, $x2, $y2, $color ) パラメータ 画像 imagecreatetruecolor()を使用して空白の画像を作成します。 x1 ポイント1のx座標。 y1 ポイント1のy座標。 x2 ポイント2のx座標。 y2 ポイント2のy座標。 色 塗りつぶしの色。 戻る imagefilledrectangle()関数は、成功した場合はTRUEを返し、失

  2. PHPのimagefilledellipse()関数

    imagefilledellipse()関数は、塗りつぶされた楕円を描画するために使用されます。 構文 imagefilledellipse( $img, $cx, $cy, $width, $height, $color ) パラメータ img これにより、imagecreatetruecolor()を使用して空白の画像が作成されます。 cx 中心のx座標。 cy 中心のy座標。 幅 楕円の幅。 高さ 楕円の高さ。 色 塗りつぶしの色。 戻る imagefilledellipse()関数は、成功した場合はTRUEを返し、失敗した場合はFA