ps_begin_pattern

(PECL ps >= 1.2.0)

ps_begin_pattern新しいパターンを開始する

説明

ps_begin_pattern ( resource $psdoc , float $width , float $height , float $xstep , float $ystep , int $painttype ) : int

新しいパターンを開始します。パターンとは、 領域を塗りつぶすための描画データを含むページのようなものです。 ps_setcolor() をコールする際に pattern に色空間を指定すると、 これは色のように使用されます。

パラメータ

psdoc

ps_new() が返す、postscript ファイルのリソース ID。

width

ピクセル単位のパターンの幅。

height

ピクセル単位のパターンの高さ。

x-step

パターンを水平方向に並べる際のピクセル単位の間隔。

y-step

パターンを垂直方向に並べる際のピクセル単位の間隔。

painttype

1 あるいは 2 でなければなりません。

返り値

パターンの ID を返します。失敗した場合に FALSE を返します。

例1 パターンの作成および使用

<?php
$ps 
ps_new();

if (!
ps_open_file($ps"pattern.ps")) {
  print 
"PostScript ファイルをオープンできません\n";
  exit;
}

ps_set_parameter($ps"warning""true");
ps_set_info($ps"Creator""pattern.php");
ps_set_info($ps"Author""Uwe Steinmann");
ps_set_info($ps"Title""Pattern example");


$pspattern ps_begin_pattern($ps10.010.010.010.01);
ps_setlinewidth($ps0.2);
ps_setcolor($ps"stroke""rgb"0.00.01.00.0);
ps_moveto($ps00);
ps_lineto($ps77);
ps_stroke($ps);
ps_moveto($ps07);
ps_lineto($ps70);
ps_stroke($ps);
ps_end_pattern($ps);

ps_begin_page($ps596842);
ps_setcolor($ps"both""pattern"$pspattern0.00.00.0);
ps_rect($ps50400200200);
ps_fill($ps);
ps_end_page($ps);

ps_close($ps);
ps_delete($ps);
?>

参考