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

PHPのimageconvolution()関数


imageconvolution()関数

構文

bool imageconvolution (img, matrix, div, offset )

パラメータ

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

  • マトリックス :3x3行列は、3つのfloatの3つの配列の配列です。

  • div :正規化に使用される畳み込みの結果の約数。

  • オフセット :カラーオフセット。

戻る

imageconvolution()関数は、成功した場合はTrueを返し、失敗した場合はFalseを返します。

以下は例です

<?php
   $img = imagecreatefromgif('https://www.tutorialspoint.com/images/html.gif');
   $arr = array(array(2, 0, 1), array(-1, -1, 0), array(0, 0, -1));
   imageconvolution($img, $arr, 1, 127);
   header('Content-Type: image/png');
   imagepng($img, null, 9);
?>

出力

以下は出力です

PHPのimageconvolution()関数

同じ画像のパラメータ値が異なる別の例を見てみましょう。今すぐ違いを簡単に見つけることができます:

<?php
   $img = imagecreatefromgif('https://www.tutorialspoint.com/images/html.gif');
   $arr = array(array(3, 2, 1), array(0, 1, 0), array(1, -1, -1));
   imageconvolution($img, $arr, 3, 110);
   header('Content-Type: image/png');
   imagepng($img, null, 9);
?>

出力

以下は出力です

PHPのimageconvolution()関数


  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