source: branches/version-2_11-dev/data/module/fpdf/doc/settextcolor.htm @ 20993

Revision 20993, 1.2 KB checked in by Seasoft, 13 years ago (diff)

#1374 (依存ライブラリのアップデート)

  • FPDF 1.6 -> 1.7
  • FPDI 1.4 -> 1.4.1 (配置パスをFPDFから分離)
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5<title>SetTextColor</title>
6<link type="text/css" rel="stylesheet" href="../fpdf.css">
7</head>
8<body>
9<h1>SetTextColor</h1>
10<code>SetTextColor(<b>int</b> r [, <b>int</b> g, <b>int</b> b])</code>
11<h2>Description</h2>
12Defines the color used for text. It can be expressed in RGB components or gray scale. The
13method can be called before the first page is created and the value is retained from page to
14page.
15<h2>Parameters</h2>
16<dl class="param">
17<dt><code>r</code></dt>
18<dd>
19If <code>g</code> et <code>b</code> are given, red component; if not, indicates the gray level.
20Value between 0 and 255.
21</dd>
22<dt><code>g</code></dt>
23<dd>
24Green component (between 0 and 255).
25</dd>
26<dt><code>b</code></dt>
27<dd>
28Blue component (between 0 and 255).
29</dd>
30</dl>
31<h2>See also</h2>
32<a href="setdrawcolor.htm">SetDrawColor()</a>,
33<a href="setfillcolor.htm">SetFillColor()</a>,
34<a href="text.htm">Text()</a>,
35<a href="cell.htm">Cell()</a>,
36<a href="multicell.htm">MultiCell()</a>.
37<hr style="margin-top:1.5em">
38<div style="text-align:center"><a href="index.htm">Index</a></div>
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.