検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 57 for imagecolorallocate (0.006 sec.)
垂直に文字を描画する 8414
« imagechar imagecolorallocate » PHP Manual GD および Image 関数 垂直に文字を描画する imagecharu ... 座標。 y 始点の y 座標。 char 描画する文字。 color imagecolorallocate() で作成された色識別子。 戻り値 成功した場合に tru ... ring = 'Note that the first letter is a N' ; $bg = imagecolorallocate ( $im , 255 , 255 , 255 ); $black = imagecolorallo ...
https://man.plustar.jp/php/function.imagecharup.html - [similar]
画像をブラウザあるいはファイルに出力する 8414
« imagetypes imagewebp » PHP Manual GD および Image 関数 画像をブラウザあるいはファイルに出力する ... _color このパラメータで、 前景の色を指定できます。 imagecolorallocate() で 取得した ID を使用してください。デフォルトの前 ... = imagecreatetruecolor ( 120 , 20 ); $text_color = imagecolorallocate ( $im , 233 , 14 , 91 ); imagestring ( $im , 1 , 5 ... = imagecreatetruecolor ( 120 , 20 ); $text_color = imagecolorallocate ( $im , 233 , 14 , 91 ); imagestring ( $im , 1 , 5 ... = imagecreatetruecolor ( 120 , 20 ); $text_color = imagecolorallocate ( $im , 233 , 14 , 91 ); imagestring ( $im , 1 , 5 ...
https://man.plustar.jp/php/function.imagewbmp.html - [similar]
アルファブレンディングフラグを設定し、レイヤ効果を使用する 8062
« imagejpeg imageline » PHP Manual GD および Image 関数 アルファブレンディングフラグを設定し、レ ... す imagefilledrectangle ( $im , 0 , 0 , 100 , 100 , imagecolorallocate ( $im , 220 , 220 , 220 )); // オーバーレイアルファ ... ます imagefilledellipse ( $im , 50 , 50 , 40 , 40 , imagecolorallocate ( $im , 100 , 255 , 100 )); imagefilledellipse ( $ ... im , 50 , 50 , 50 , 80 , imagecolorallocate ( $im , 100 , 100 , 255 )); imagefilledellipse ( $ ... im , 50 , 50 , 80 , 50 , imagecolorallocate ( $im , 255 , 100 , 100 )); // 出力します header ( ...
https://man.plustar.jp/php/function.imagelayereffect.html - [similar]
XBM 画像をブラウザあるいはファイルに出力する 7988
« imagewebp iptcembed » PHP Manual GD および Image 関数 XBM 画像をブラウザあるいはファイルに出力 ... _color このパラメータで、 前景の色を指定できます。 imagecolorallocate() で 取得した ID を使用してください。デフォルトの前 ... = imagecreatetruecolor ( 120 , 20 ); $text_color = imagecolorallocate ( $im , 233 , 14 , 91 ); imagestring ( $im , 1 , 5 ... = imagecreatetruecolor ( 120 , 20 ); $text_color = imagecolorallocate ( $im , 233 , 14 , 91 ); imagestring ( $im , 1 , 5 ... r ); // 別の前景色を設定します $foreground_color = imagecolorallocate ( $im , 255 , 0 , 0 ); // 画像を保存します imagexb ...
https://man.plustar.jp/php/function.imagexbm.html - [similar]
楕円を描画する 7812
« imagedestroy imagefill » PHP Manual GD および Image 関数 楕円を描画する imageellipse (PHP 4 >= ... th 楕円の幅。 height 楕円の高さ。 color 楕円の色。 imagecolorallocate() で作成された色識別子。 戻り値 成功した場合に tru ... uecolor ( 400 , 300 ); // 背景色を選択します $bg = imagecolorallocate ( $image , 0 , 0 , 0 ); // 上で選択した色で背景を塗 ... 0 , $bg ); // 楕円の色を選択します $col_ellipse = imagecolorallocate ( $image , 255 , 255 , 255 ); // 楕円を描画します ...
https://man.plustar.jp/php/function.imageellipse.html - [similar]
塗りつぶされた楕円を描画する 7812
« imagefilledarc imagefilledpolygon » PHP Manual GD および Image 関数 塗りつぶされた楕円を描画す ... 楕円の幅。 height 楕円の高さ。 color 塗りつぶし色。 imagecolorallocate() で作成された色識別子。 戻り値 成功した場合に tru ... truecolor ( 400 , 300 ); // 背景色を塗ります $bg = imagecolorallocate ( $image , 0 , 0 , 0 ); // 楕円の色を選択します $c ... ol_ellipse = imagecolorallocate ( $image , 255 , 255 , 255 ); // 白い楕円を描画しま ...
https://man.plustar.jp/php/function.imagefilledellipse.html - [similar]
透明色を定義する 7724
« imagecolorstotal imageconvolution » PHP Manual GD および Image 関数 透明色を定義する imagecolo ... うな画像作成関数が返す GdImage オブジェクト。 color imagecolorallocate() で作成された色識別子。 戻り値 新しい透明色の ID ... ます $im = imagecreatetruecolor ( 55 , 30 ); $red = imagecolorallocate ( $im , 255 , 0 , 0 ); $black = imagecolorallocate ...
https://man.plustar.jp/php/function.imagecolortransparent.html - [similar]
水平に文字を描画する 7636
« imagebmp imagecharup » PHP Manual GD および Image 関数 水平に文字を描画する imagechar (PHP 4, ... 座標。 y 始点の y 座標。 char 描画する文字。 color imagecolorallocate() で作成された色識別子。 戻り値 成功した場合に tru ... imagecreate ( 100 , 100 ); $string = 'PHP' ; $bg = imagecolorallocate ( $im , 255 , 255 , 255 ); $black = imagecolorallo ...
https://man.plustar.jp/php/function.imagechar.html - [similar]
破線を描画する 7548
« imagecropauto imagedestroy » PHP Manual GD および Image 関数 破線を描画する imagedashedline (P ... の x 座標。 y2 右下の y 座標。 color 塗りつぶし色。 imagecolorallocate() で作成された色識別子。 戻り値 成功した場合に tru ... $im = imagecreatetruecolor ( 100 , 100 ); $white = imagecolorallocate ( $im , 0xFF , 0xFF , 0xFF ); // 縦の破線を描画しま ... $im = imagecreatetruecolor ( 100 , 100 ); $white = imagecolorallocate ( $im , 0xFF , 0xFF , 0xFF ); // 独自のスタイルの作 ...
https://man.plustar.jp/php/function.imagedashedline.html - [similar]
線描画用のスタイルを設定する 7548
« imagesetpixel imagesetthickness » PHP Manual GD および Image 関数 線描画用のスタイルを設定する ... ); $im = imagecreatetruecolor ( 100 , 100 ); $w = imagecolorallocate ( $im , 255 , 255 , 255 ); $red = imagecoloralloca ... ibpng.org/pub/png/images/smile.happy.png" ); $w2 = imagecolorallocate ( $brush , 255 , 255 , 255 ); imagecolortransparen ...
https://man.plustar.jp/php/function.imagesetstyle.html - [similar]
PREV 1 2 3 4 5 6 NEXT