検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 72 for blue (0.004 sec.)
画像で使用する色を透過度を指定して作成する 12585
« imagecolorallocate imagecolorat » PHP Manual GD および Image 関数 画像で使用する色を透過度を指 ... ha ( GdImage $image , int $red , int $green , int $blue , int $alpha ): int | false imagecolorallocatealph ... 赤コンポーネントの値。 green 緑コンポーネントの値。 blue 青コンポーネントの値。 alpha 0 から 127 までの値。 ... 明な状態を表します。 パラメータ red 、 green および blue には、 0 から 255 までの整数値か 0x00 から 0xFF ま ... ; $yellow_y = 75 ; $red_x = 120 ; $red_y = 165 ; $blue_x = 187 ; $blue_y = 125 ; $radius = 150 ; // alpha ...
https://man.plustar.jp/php/function.imagecolorallocatealpha.html - [similar]
Color Representation 10763
« UI\Draw\Matrix::translate UI\Draw\Color::__construct » PHP Manual UI Color Representation Colo ... nts */ const int Red ; const int Green ; const int Blue ; const int Alpha ; /* プロパティ */ public $ r ; ... cess to the green channel b Provides access to the blue channel a Provides access to the alpha channel 定義 ... :Green Identifies the green channel UI\Draw\Color::Blue Identifies the blue channel UI\Draw\Color::Alpha I ...
https://man.plustar.jp/php/class.ui-draw-color.html - [similar]
色を補間する 10637
« Imagick::solarizeImage Imagick::spliceImage » PHP Manual Imagick 色を補間する Imagick::sparseC ... ints = [ [ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lime' ], [ 0.80 , 0.20 , 'yel ... oints = [[ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lime' ], [ 0.80 , 0.20 , 'yel ... ints = [ [ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lime' ], [ 0.80 , 0.20 , 'yel ... ints = [ [ 0.30 , 0.10 , 'red' ], [ 0.10 , 0.80 , 'blue' ], [ 0.70 , 0.60 , 'lime' ], [ 0.80 , 0.20 , 'yel ...
https://man.plustar.jp/php/imagick.sparsecolorimage.html - [similar]
配列のキーすべて、あるいはその一部を返す 10272
« array_key_last array_map » PHP Manual 配列 関数 配列のキーすべて、あるいはその一部を返す array ... print_r ( array_keys ( $array )); $array = array( "blue" , "red" , "green" , "blue" , "blue" ); print_r ( ... array_keys ( $array , "blue" )); $array = array( "color" => array( "blue" , "r ...
https://man.plustar.jp/php/function.array-keys.html - [similar]
指定した色チャネルの値を正規化したものを取得する 9417
« ImagickPixel::getColorQuantum ImagickPixel::getColorValueQuantum » PHP Manual ImagickPixel 指定 ... ー、アルファ値、透明度を指定できます (Imagick::COLOR_BLUE や Imagick::COLOR_MAGENTA など)。 戻り値 チャネルの ... rValue ( Imagick :: COLOR_GREEN ). PHP_EOL ; echo "Blue value is " . $color -> getColorValue ( Imagick :: ... COLOR_BLUE ). PHP_EOL ; echo "" . PHP_EOL ; echo "Cyan value ... 3 Red value is 0.90000762951095 Green value is 0.2 Blue value is 0.2 Cyan value is 0.90000762951095 Magent ...
https://man.plustar.jp/php/imagickpixel.getcolorvalue.html - [similar]
キーを基準にして配列の共通項を計算する 9305
« array_intersect_assoc array_intersect_uassoc » PHP Manual 配列 関数 キーを基準にして配列の共通 ... array_intersect_key() の例 <?php $array1 = array( 'blue' => 1 , 'red' => 2 , 'green' => 3 , 'purple' => 4 ... ); $array2 = array( 'green' => 5 , 'blue' => 6 , 'yellow' => 7 , 'cyan' => 8 ); var_dump ( ... )); ?> 上の例の出力は以下となります。 array(2) { ["blue"]=> int(1) ["green"]=> int(3) } この例では、両方の ... 配列に存在するキーが 'blue' と 'green' だけであり、それが返されていることが わ ...
https://man.plustar.jp/php/function.array-intersect-key.html - [similar]
ユーザーキャッシュに格納された変数を取得する 9179
« wincache_ucache_exists wincache_ucache_inc » PHP Manual WinCache 関数 ユーザーキャッシュに格納 ... 字列を使う例 <?php wincache_ucache_add ( 'color' , 'blue' ); var_dump ( wincache_ucache_get ( 'color' , $su ... ss ); ?> 上の例の出力は以下となります。 string(4) "blue" bool(true) 例2 wincache_ucache_get() で key に配列 ... を使う例 <?php $array1 = array( 'green' => '5' , 'Blue' => '6' , 'yellow' => '7' , 'cyan' => '8' ); winca ... cache_set ( $array1 ); $array2 = array( 'green' , 'Blue' , 'yellow' , 'cyan' ); var_dump ( wincache_ucache ...
https://man.plustar.jp/php/function.wincache-ucache-get.html - [similar]
キーを基準にし、コールバック関数を用いて 配列の共通項を計算する 9053
« array_intersect_uassoc array_intersect » PHP Manual 配列 関数 キーを基準にし、コールバック関数 ... ) return 1 ; else return - 1 ; } $array1 = array( 'blue' => 1 , 'red' => 2 , 'green' => 3 , 'purple' => 4 ... ); $array2 = array( 'green' => 5 , 'blue' => 6 , 'yellow' => 7 , 'cyan' => 8 ); var_dump ( ... )); ?> 上の例の出力は以下となります。 array(2) { ["blue"]=> int(1) ["green"]=> int(3) } この例では、両方の ... 配列に存在するキーが 'blue' と 'green' だけであり、それが返されていることがわ ...
https://man.plustar.jp/php/function.array-intersect-ukey.html - [similar]
注記の枠線の色を設定する 8941
« ps_scale ps_set_border_dash » PHP Manual PS 関数 注記の枠線の色を設定する ps_set_border_color ... source $psdoc , float $red , float $green , float $blue ): bool ps_add_weblink() や ps_add_pdflink() などの ... 枠線の色の red 要素。 green 枠線の色の green 要素。 blue 枠線の色の blue 要素。 戻り値 成功した場合に true ...
https://man.plustar.jp/php/function.ps-set-border-color.html - [similar]
配列の一部を削除し、他の要素で置換する 8689
« array_slice array_sum » PHP Manual 配列 関数 配列の一部を削除し、他の要素で置換する array_spli ... ce() の例 <?php $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $input , 2 ); var_du ... mp ( $input ); $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $input , 1 , - 1 ); ... ump ( $input ); $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $input , 1 , count ( ... ump ( $input ); $input = array( "red" , "green" , "blue" , "yellow" ); array_splice ( $input , - 1 , 1 , a ...
https://man.plustar.jp/php/function.array-splice.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT