Results of 1 - 10 of about 21 for points (0.051 sec.)
- オープンポリゴンを描画する 12735
- « imageloadfont imagepalettecopy » PHP Manual GD および Image 関数 オープンポリゴンを描画する im
...
いません) imageopenpolygon ( GdImage $image , array $points , int $color ): bool 代替のシグネチャ (PHP 8.1.0 以 ...
は非推奨) imageopenpolygon ( GdImage $image , array $points , int $num_points , int $color ): bool imageopenpo ...
のような画像作成関数が返す GdImage オブジェクト。 points ポリゴンの点を含む配列: points[0] = x0 points[1] = ...
y0 points[2] = x1 points[3] = y1 num_points 全ての点の数。少 ...
-
https://man.plustar.jp/php/function.imageopenpolygon.html
- [similar]
- 多角形を描画する 12735
- « imagepng imagerectangle » PHP Manual GD および Image 関数 多角形を描画する imagepolygon (PHP 4
...
していません) imagepolygon ( GdImage $image , array $points , int $color ): bool 代替のシグネチャ (PHP 8.1.0 以 ...
降は非推奨) imagepolygon ( GdImage $image , array $points , int $num_points , int $color ): bool imagepolygo ...
のような画像作成関数が返す GdImage オブジェクト。 points 多角形の頂点からなる PHP の配列で、 次のようになり ...
ます。 points[0] = x0 points[1] = y0 points[2] = x1 points[3] = ...
-
https://man.plustar.jp/php/function.imagepolygon.html
- [similar]
- 塗りつぶした多角形を描画する 10959
- « imagefilledellipse imagefilledrectangle » PHP Manual GD および Image 関数 塗りつぶした多角形を
...
ません) imagefilledpolygon ( GdImage $image , array $points , int $color ): bool 代替のシグネチャ (PHP 8.1.0 以 ...
非推奨) imagefilledpolygon ( GdImage $image , array $points , int $num_points , int $color ): bool imagefilled ...
のような画像作成関数が返す GdImage オブジェクト。 points 多角形の頂点の座標 x および y を含む配列。 num_poi ...
ネチャ(PHP 8.0.0 以降) でこの引数が省略された場合、 points は偶数でなければいけません。また、 num_points は c ...
-
https://man.plustar.jp/php/function.imagefilledpolygon.html
- [similar]
- 色を補間する 10148
- « Imagick::solarizeImage Imagick::spliceImage » PHP Manual Imagick 色を補間する Imagick::sparseC
...
age() <?php function renderImageBarycentric2 () { $points = [ [ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue ...
, ]; $imagick = createGradientImage ( 400 , 400 , $points , \ Imagick :: SPARSECOLORMETHOD_BARYCENTRIC ); he ...
orImage() <?php function renderImageBilinear () { $points = [[ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ...
],]; $imagick = createGradientImage ( 500 , 500 , $points , \ Imagick :: SPARSECOLORMETHOD_BILINEAR ); heade ...
-
https://man.plustar.jp/php/imagick.sparsecolorimage.html
- [similar]
- 多角形の描画時に使用する塗りつぶしルールを設定する 9133
- « ImagickDraw::setFillPatternURL ImagickDraw::setFont » PHP Manual ImagickDraw 多角形の描画時に使
...
LLRULE_NONZERO , \ Imagick :: FILLRULE_EVENODD ]; $points = 11 ; $size = 150 ; $draw -> translate ( 175 , 16 ...
$x ]); $draw -> pathStart (); for ( $n = 0 ; $n < $points * 2 ; $n ++) { if ( $n >= $points ) { $angle = fmo ...
d ( $n * 360 * 4 / $points , 360 ) * pi () / 180 ; } else { $angle = fmod ( $ ...
n * 360 * 3 / $points , 360 ) * pi () / 180 ; } $positionX = $size * sin ...
-
https://man.plustar.jp/php/imagickdraw.setfillrule.html
- [similar]
- ベジエ曲線を描画する 8507
- « ImagickDraw::arc ImagickDraw::circle » PHP Manual ImagickDraw ベジエ曲線を描画する ImagickDraw
...
fillColor ); $draw -> setStrokeWidth ( 2 ); $smoothPointsSet = [ [ [ 'x' => 10.0 * 5 , 'y' => 10.0 * 5 ], [ ...
.0 * 5 , 'y' => 40.0 * 5 ], ], ]; foreach ( $smoothPointsSet as $points ) { $draw -> bezier ( $points ); } $ ...
disjointPoints = [ [ [ 'x' => 10 * 5 , 'y' => 10 * 5 ], [ 'x' => ...
$draw -> translate ( 0 , 200 ); foreach ( $disjointPoints as $points ) { $draw -> bezier ( $points ); } //Cr ...
-
https://man.plustar.jp/php/imagickdraw.bezier.html
- [similar]
- 直線を描画する 8084
- « imagelayereffect imageloadfont » PHP Manual GD および Image 関数 直線を描画する imageline (PHP
...
/y = kx + q $a = $t / sqrt ( 1 + pow ( $k , 2 )); $points = array( round ( $x1 - ( 1 + $k )* $a ), round ( $ ...
1 + $k )* $a ), ); imagefilledpolygon ( $image , $points , 4 , $color ); return imagepolygon ( $image , $po ...
-
https://man.plustar.jp/php/function.imageline.html
- [similar]
- 多角形を描画する 7881
- « ImagickDraw::point ImagickDraw::polyline » PHP Manual ImagickDraw 多角形を描画する ImagickDraw
...
idth ( 4 ); $draw -> setFillColor ( $fillColor ); $points = [ [ 'x' => 40 * 5 , 'y' => 10 * 5 ], [ 'x' => 20 ...
> 60 * 5 , 'y' => 15 * 5 ], ]; $draw -> polygon ( $points ); $image = new \ Imagick (); $image -> newImage ( ...
-
https://man.plustar.jp/php/imagickdraw.polygon.html
- [similar]
- 線分群を描画する 7847
- « ImagickDraw::polygon ImagickDraw::pop » PHP Manual ImagickDraw 線分群を描画する ImagickDraw::p
...
or ( $fillColor ); $draw -> setStrokeWidth ( 5 ); $points = [ [ 'x' => 40 * 5 , 'y' => 10 * 5 ], [ 'x' => 20 ...
> 60 * 5 , 'y' => 15 * 5 ] ]; $draw -> polyline ( $points ); $image = new \ Imagick (); $image -> newImage ( ...
-
https://man.plustar.jp/php/imagickdraw.polyline.html
- [similar]
- パスの角を描画する際に使用する形状を指定する 7797
- « ImagickDraw::setStrokeLineCap ImagickDraw::setStrokeMiterLimit » PHP Manual ImagickDraw パスの
...
aw -> setStrokeLineJoin ( $lineJoinStyle [ $x ]); $points = [ [ 'x' => 40 * 5 , 'y' => 10 * 5 + $x * $offset ...
> 10 * 5 + $x * $offset ], ]; $draw -> polyline ( $points ); } $image = new \ Imagick (); $image -> newImage ...
-
https://man.plustar.jp/php/imagickdraw.setstrokelinejoin.html
- [similar]