mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 13:57:03 +08:00
158 lines
4.3 KiB
HTML
158 lines
4.3 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
<title>Sets current color</title>
|
||
</head>
|
||
<body class="docs"><div id="layout">
|
||
<div id="layout-content"><div id="function.ps-setcolor" class="refentry">
|
||
<div class="refnamediv">
|
||
<h1 class="refname">ps_setcolor</h1>
|
||
<p class="verinfo">(PECL ps >= 1.1.0)</p><p class="refpurpose"><span class="refname">ps_setcolor</span> — <span class="dc-title">Sets current color</span></p>
|
||
|
||
</div>
|
||
|
||
<div class="refsect1 description" id="refsect1-function.ps-setcolor-description">
|
||
<h3 class="title">说明</h3>
|
||
<div class="methodsynopsis dc-description">
|
||
<span class="methodname"><strong>ps_setcolor</strong></span>
|
||
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$psdoc</code></span>
|
||
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$type</code></span>
|
||
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$colorspace</code></span>
|
||
, <span class="methodparam"><span class="type">float</span> <code class="parameter">$c1</code></span>
|
||
, <span class="methodparam"><span class="type">float</span> <code class="parameter">$c2</code></span>
|
||
, <span class="methodparam"><span class="type">float</span> <code class="parameter">$c3</code></span>
|
||
, <span class="methodparam"><span class="type">float</span> <code class="parameter">$c4</code></span>
|
||
) : <span class="type">bool</span></div>
|
||
|
||
<p class="para rdfs-comment">
|
||
Sets the color for drawing, filling, or both.
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 parameters" id="refsect1-function.ps-setcolor-parameters">
|
||
<h3 class="title">参数</h3>
|
||
<p class="para">
|
||
<dl>
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">psdoc</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
Resource identifier of the postscript file
|
||
as returned by <span class="function"><a href="ps_new.html" class="function">ps_new()</a></span>.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">type</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
The parameter <code class="parameter">type</code> can be
|
||
<em>both</em>, <em>fill</em>, or
|
||
<em>fillstroke</em>.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">colorspace</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
The colorspace should be one of <em>gray</em>,
|
||
<em>rgb</em>, <em>cmyk</em>,
|
||
<em>spot</em>, <em>pattern</em>. Depending on the
|
||
colorspace either only the first, the first three or all parameters
|
||
will be used.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">c1</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
Depending on the colorspace this is either the red component (rgb),
|
||
the cyan component (cmyk), the gray value (gray), the identifier of
|
||
the spot color or the identifier of the pattern.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">c2</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
Depending on the colorspace this is either the green component (rgb),
|
||
the magenta component (cmyk).
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">c3</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
Depending on the colorspace this is either the blue component (rgb),
|
||
the yellow component (cmyk).
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
|
||
<dt>
|
||
<code class="parameter">c4</code></dt>
|
||
|
||
<dd>
|
||
|
||
<p class="para">
|
||
This must only be set in cmyk colorspace and specifies the black
|
||
component.
|
||
</p>
|
||
</dd>
|
||
|
||
|
||
</dl>
|
||
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 unknown-parametert" id="refsect1-function.ps-setcolor-unknown-parametert">
|
||
<h3 class="title">Bugs</h3>
|
||
<p class="para">
|
||
The second parameter is currently not always evaluated. The color is
|
||
sometimes set for filling and drawing just as if
|
||
<em>fillstroke</em> were passed.
|
||
</p>
|
||
</div>
|
||
|
||
|
||
<div class="refsect1 returnvalues" id="refsect1-function.ps-setcolor-returnvalues">
|
||
<h3 class="title">返回值</h3>
|
||
<p class="para">
|
||
成功时返回 <strong><code>TRUE</code></strong>, 或者在失败时返回 <strong><code>FALSE</code></strong>。
|
||
</p>
|
||
</div>
|
||
|
||
</div></div></div></body></html> |