- トップ
- > メソッド
- > r
- > RoundedRect
<<  Rotate
RoundedRect
角丸の矩形を出力する。
publicメソッド、TCPDF Version 2.1.000~
- 書式
-
RoundedRect( $x, $y, $w, $h, $r, $round_corner, $style, $border_style, $fill_color )
- 戻り値
-
(なし)
- パラメータ
-
float $x 矩形左上のX座標 float $y 矩形左上のY座標 float $w 幅 float $h 高さ float $r 角丸の半径 strig $round_corner '1111' それぞれの角を丸めるか否かを指定する。「0:丸めない 1:丸める」で、左上-右上-右下-左下の順に'1110'のように指定する。 string $style '' 描画スタイル、以下のいずれか
- D or 空文字: 線画する.
- F: 塗りつぶす.
- DF or FD: 線画+塗りつぶし.
- CNZ: クリッピングモード(even-odd方式).
- CEO: クリッピングモード(non-zero方式).
array $border_style array() 境界線スタイル、SetLineStyle()参照の事。 array $fill_color array() 塗つぶし色、array(GREY)、array(R,G,B)または、array(C,M,Y,K)で指定。