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

PHPのimagecharup()関数


imagecharup()関数は、文字を垂直方向に描画するために使用されます。

構文

imagecharup( img, font, x, y, c, color )

パラメータ

  • img imagecreatetruecolor()

    を使用して画像を作成します
  • フォント: フォントサイズを設定します。 latin2エンコーディングの組み込みフォントの場合は1、2、3、4、5にすることができます

  • x: x座標

  • y :y座標

  • c: 描かれるキャラクター

  • 色: 色識別子

戻る

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

次に例を示します。

<?php
   $img = imagecreate(300, 300);
   $str = 'Demo';
   $bg = imagecolorallocate($img, 190, 255, 255);
   $color = imagecolorallocate($img, 120, 60, 100);
   imagecharup($img, 5, 30, 50, $str, $color);
   header('Content-type: image/png');
   imagepng($img);
?>

出力

出力は次のとおりです。

PHPのimagecharup()関数

別の例を見てみましょう:

<?php
   $img = imagecreate(270, 270);
   $str = 'Example';
   $bg = imagecolorallocate($img, 160, 185, 175);
   $color = imagecolorallocate($img, 100, 120, 100);
   imagecharup($img, 10, 80, 100, $str, $color);
   header('Content-type: image/png');
   imagepng($img);
?>

出力

以下は、さまざまな寸法の文字Eを描画する出力です。

PHPのimagecharup()関数


  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