検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 292 for y (0.059 sec.)
文字列を水平に描画する 4482
« imagesettile imagestringup » PHP Manual GD および Image 関数 文字列を水平に描画する imagestrin ... dImage $image , GdFont | int $font , int $x , int $y , string $string , int $color ): bool 指定した座標 ... クラスのインスタンスのいずれか。 x 左上隅の x 座標。 y 左上隅の y 座標。 string 書き出す文字列。 color im ... extcolor ); // 画像を出力します header ( "Content-type: image/png" ); imagepng ( $im ); imagedestroy ( ... ) - 新しいフォントを読み込む imagettftext() - TrueType フォントを使用してテキストを画像に書き込む 関連キ ...
https://man.plustar.jp/php/function.imagestring.html - [similar]
縮尺を設定する 4482
« ps_save ps_set_border_color » PHP Manual PS 関数 縮尺を設定する ps_scale (PECL ps >= 1.1.0) ps ... 説明 ps_scale ( resource $psdoc , float $x , float $y ): bool 座標系の、水平方向・垂直方向の縮尺をそれぞ ... tscript ファイルのリソース ID。 x 水平方向の倍率。 y 垂直方向の倍率。 戻り値 成功した場合に true を、失 ...
https://man.plustar.jp/php/function.ps-scale.html - [similar]
ある画像を別の画像に合成する 4482
« Gmagick::commentimage Gmagick::__construct » PHP Manual Gmagick ある画像を別の画像に合成する G ... e ( Gmagick $source , int $COMPOSE , int $x , int $y ): Gmagick ある画像を、別の画像の指定した位置に合成 ... ompose 合成演算子。 x 合成する位置の列オフセット。 y 合成する位置の行オフセット。 戻り値 合成した Gmagi ...
https://man.plustar.jp/php/gmagick.compositeimage.html - [similar]
緑が一番強い点を返す 4482
« Imagick::getImageGravity Imagick::getImageHeight » PHP Manual Imagick 緑が一番強い点を返す Ima ... gick::getImageGreenPrimary (PECL imagick 2, PECL imagick 3) Imagick::getImage ... GreenPrimary — 緑が一番強い点を返す 説明 public Imagick::getIma ... geGreenPrimary (): array 緑が一番強い点を返します。"x" および "y" ... ータはありません。 戻り値 成功した場合に "x" および "y" というキーを持つ配列を返します。 失敗した場合は I ...
https://man.plustar.jp/php/imagick.getimagegreenprimary.html - [similar]
ページのジオメトリを返す 4482
« Imagick::getImageOrientation Imagick::getImagePixelColor » PHP Manual Imagick ページのジオメト ... トリを返す 説明 public Imagick::getImagePage (): array 画像のページジオメトリを配列で返します。配列のキー ... は "width"、"height"、"x" および "y" です。 パラメータ この関数にはパラメータはありませ ... します。配列のキーは "width"、"height"、"x" および "y" です。 エラー / 例外 エラー時に ImagickException ...
https://man.plustar.jp/php/imagick.getimagepage.html - [similar]
赤が一番強い点を返す 4482
« Imagick::getImageProperty Imagick::getImageRegion » PHP Manual Imagick 赤が一番強い点を返す Im ... agick::getImageRedPrimary (PECL imagick 2, PECL imagick 3) Imagick::getImage ... RedPrimary — 赤が一番強い点を返す 説明 public Imagick::getIma ... geRedPrimary (): array 赤が一番強い点を返します。"x" および "y" ... タはありません。 戻り値 赤が一番強い点を "x" および "y" というキーを持つ配列で返します。 エラー時に Imagi ...
https://man.plustar.jp/php/imagick.getimageredprimary.html - [similar]
ピクセルの色のインデックスを取得する 4444
« imagecolorallocatealpha imagecolorclosest » PHP Manual GD および Image 関数 ピクセルの色のイン ... 説明 imagecolorat ( GdImage $image , int $x , int $y ): int | false image で指定された画像上の 特定位置 ... 成関数が返す GdImage オブジェクト。 x 点の x 座標。 y 点の y 座標。 戻り値 色のインデックスを返します。失 ... 上の例の出力は、 たとえば以下のようになります。 array(4) { ["red"]=> int(119) ["green"]=> int(123) ["blu ...
https://man.plustar.jp/php/function.imagecolorat.html - [similar]
GD2 ファイルまたは URL の指定した部分から新規イメージを生成する 4444
« imagecreatefromgd2 imagecreatefromgd » PHP Manual GD および Image 関数 GD2 ファイルまたは URL ... eatefromgd2part ( string $filename , int $x , int $y , int $width , int $height ): GdImage | false GD2 ... ータ filename GD2 画像へのパス。 x 作成元の x 座標。 y 作成元の y 座標。 width コピー元の幅。 height コピ ... imagegd2 ( $im , './test_emboss.gd2' ); imagedestroy ( $im ); ?> 注意 警告 GD と GD2 画像フォーマットは ...
https://man.plustar.jp/php/function.imagecreatefromgd2part.html - [similar]
直線を描画する 4444
« imagelayereffect imageloadfont » PHP Manual GD および Image 関数 直線を描画する imageline (PHP ... る 説明 imageline ( GdImage $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color ): bool 指定した ... が返す GdImage オブジェクト。 x1 最初の点の x 座標。 y1 最初の点の y 座標。 x2 二番目の点の x 座標。 y2 二 ... 番目の点の y 座標。 color 直線の色。 imagecolorallocate() で作成 ... する <?php function imagelinethick ( $image , $x1 , $y1 , $x2 , $y2 , $color , $thick = 1 ) { /* この方法 ...
https://man.plustar.jp/php/function.imageline.html - [similar]
キーの詳細の配列を返す 4444
« openssl_pkey_free openssl_pkey_get_private » PHP Manual OpenSSL 関数 キーの詳細の配列を返す op ... enssl_pkey_get_details (PHP 5 >= 5.2.0, PHP 7, PHP 8) openssl ... _pkey_get_details — キーの詳細の配列を返す 説明 openssl_ ... pkey_get_details ( OpenSSLAsymmetricKey $key ): array | ... false この関数は、キーの詳細 (bits, key, type) を返します。 パラメータ key キーを保持する配 ...
https://man.plustar.jp/php/function.openssl-pkey-get-details.html - [similar]