Sophie

Sophie

distrib > Mandriva > 2008.1 > i586 > by-pkgid > 703d980c580707c382b4e43e25965bc5 > files > 11976

php-manual-pt_BR-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>Haru PDF Functions</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="Manual do PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="Referência das Funções"
HREF="funcref.html"><LINK
REL="PREVIOUS"
TITLE="gopher_parsedir"
HREF="function.gopher-parsedir.html"><LINK
REL="NEXT"
TITLE="HaruException"
HREF="haru.haruexception.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></HEAD
><BODY
CLASS="reference"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Manual do PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.gopher-parsedir.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="haru.haruexception.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="reference"
><A
NAME="ref.haru"
></A
><DIV
CLASS="TITLEPAGE"
><H1
CLASS="title"
>LIII. Haru PDF Functions</H1
><DIV
CLASS="PARTINTRO"
><A
NAME="AEN62003"
></A
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="haru.intro"
>Introdução</A
></H1
><P
>&#13;    The PECL/haru extension provides bindings for Haru Free PDF Library - free,
    cross platform, opensource software library for generating PDF files.
   </P
><P
>&#13;    You can find the library here: <A
HREF="http://libharu.sourceforge.net"
TARGET="_top"
>http://libharu.sourceforge.net</A
>.
   </P
><DIV
CLASS="warning"
><P
></P
><TABLE
CLASS="warning"
BORDER="1"
WIDTH="100%"
><TR
><TD
ALIGN="CENTER"
><B
>Atenção</B
></TD
></TR
><TR
><TD
ALIGN="LEFT"
><P
>Este módulo é
 <SPAN
CLASS="emphasis"
><I
CLASS="emphasis"
>EXPERIMENTAL</I
></SPAN
>. Isso quer dizer que o comportamento neste módulo ---
 incluindo suas funções e seus nomes, e TUDO mais que está documentado
 sobre esse módulo --- poderá mudar em futuras versões do PHP, SEM QUALQUER NOTIFICAÇÃO.
 Esteja avisado, e use este módulo por sua própria conta e risco.</P
></TD
></TR
></TABLE
></DIV
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="haru.requirements"
>Dependências</A
></H1
><P
>&#13;    You need to install libharu first to be able to use PECL/haru.
    PECL/haru is tested with libharu 2.0.8, older versions might or might not
    work for you.
    PECL/haru also requires PHP 5.1.3 or newer.
   </P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="haru.install"
>Instalação</A
></H1
><P
>&#13;    Informações para a instalação desta extensão PECL
 podem ser encontradas no manual no capitulo entitulado <A
HREF="install.pecl.html"
>Instalação
 de extensões PECL</A
>. Informações adicionais como novas versões,
 downloads, arquivos fontes, manutenções, e um Changelog, podem ser
 obtidos aqui: 
    <A
HREF="http://pecl.php.net/package/haru"
TARGET="_top"
>http://pecl.php.net/package/haru</A
>.
   </P
><P
>&#13;    The latest PECL/haru Win32 DLL can be downloaded
    here:
    <A
HREF="http://pecl4win.php.net/ext.php/php_haru.dll"
TARGET="_top"
>php_haru.dll</A
>.
   </P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="haru.configuration"
>Configurações em execução</A
></H1
><P
>Esta extensão não define nenhum parâmetro de configuração no <TT
CLASS="filename"
>php.ini</TT
>.</P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="haru.examples"
>Exemplos</A
></H1
><P
>&#13;    <TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN62029"
></A
><P
><B
>Exemplo 1. Basic PECL/haru example</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><code><font color="#000000">
<font color="#0000BB">&lt;?php<br /><br />$doc </font><font color="#007700">= new </font><font color="#0000BB">HaruDoc</font><font color="#007700">;<br /><br /></font><font color="#0000BB">$doc</font><font color="#007700">-&gt;</font><font color="#0000BB">setPageMode</font><font color="#007700">(</font><font color="#0000BB">HaruDoc</font><font color="#007700">::</font><font color="#0000BB">PAGE_MODE_USE_THUMBS</font><font color="#007700">); </font><font color="#FF8000">/* show thumbnails */<br /><br /></font><font color="#0000BB">$page </font><font color="#007700">= </font><font color="#0000BB">$doc</font><font color="#007700">-&gt;</font><font color="#0000BB">addPage</font><font color="#007700">(); </font><font color="#FF8000">/* add page to the document */<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setSize</font><font color="#007700">(</font><font color="#0000BB">HaruPage</font><font color="#007700">::</font><font color="#0000BB">SIZE_A4</font><font color="#007700">, </font><font color="#0000BB">HaruPage</font><font color="#007700">::</font><font color="#0000BB">LANDSCAPE</font><font color="#007700">); </font><font color="#FF8000">/* set the page to use A4 landscape format */<br /><br /></font><font color="#0000BB">$courier </font><font color="#007700">= </font><font color="#0000BB">$doc</font><font color="#007700">-&gt;</font><font color="#0000BB">getFont</font><font color="#007700">(</font><font color="#DD0000">"Courier-Bold"</font><font color="#007700">); </font><font color="#FF8000">/* we'll use the bundled font a few lines below */<br /><br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setRGBStroke</font><font color="#007700">(</font><font color="#0000BB">0</font><font color="#007700">, </font><font color="#0000BB">0</font><font color="#007700">, </font><font color="#0000BB">0</font><font color="#007700">); </font><font color="#FF8000">/* set colors */<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setRGBFill</font><font color="#007700">(</font><font color="#0000BB">0.7</font><font color="#007700">, </font><font color="#0000BB">0.8</font><font color="#007700">, </font><font color="#0000BB">0.9</font><font color="#007700">);<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">rectangle</font><font color="#007700">(</font><font color="#0000BB">150</font><font color="#007700">, </font><font color="#0000BB">150</font><font color="#007700">, </font><font color="#0000BB">550</font><font color="#007700">, </font><font color="#0000BB">250</font><font color="#007700">); </font><font color="#FF8000">/* draw a rectangle */<br /><br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">fillStroke</font><font color="#007700">(); </font><font color="#FF8000">/* fill and stroke it */<br /><br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setDash</font><font color="#007700">(array(</font><font color="#0000BB">3</font><font color="#007700">, </font><font color="#0000BB">3</font><font color="#007700">), </font><font color="#0000BB">0</font><font color="#007700">); </font><font color="#FF8000">/* set dash style for lines at this page */<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setFontAndSize</font><font color="#007700">(</font><font color="#0000BB">$courier</font><font color="#007700">, </font><font color="#0000BB">60</font><font color="#007700">); </font><font color="#FF8000">/* set font and size */<br /><br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setRGBStroke</font><font color="#007700">(</font><font color="#0000BB">0.5</font><font color="#007700">, </font><font color="#0000BB">0.5</font><font color="#007700">, </font><font color="#0000BB">0.1</font><font color="#007700">); </font><font color="#FF8000">/* set line color */<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setRGBFill</font><font color="#007700">(</font><font color="#0000BB">1</font><font color="#007700">, </font><font color="#0000BB">1</font><font color="#007700">, </font><font color="#0000BB">1</font><font color="#007700">); </font><font color="#FF8000">/* set filling color */<br /><br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">setTextRenderingMode</font><font color="#007700">(</font><font color="#0000BB">HaruPage</font><font color="#007700">::</font><font color="#0000BB">FILL_THEN_STROKE</font><font color="#007700">); </font><font color="#FF8000">/* fill and stroke text */<br /><br />/* print the text */<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">beginText</font><font color="#007700">();<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">textOut</font><font color="#007700">(</font><font color="#0000BB">210</font><font color="#007700">, </font><font color="#0000BB">270</font><font color="#007700">, </font><font color="#DD0000">"Hello World!"</font><font color="#007700">);<br /></font><font color="#0000BB">$page</font><font color="#007700">-&gt;</font><font color="#0000BB">endText</font><font color="#007700">();<br /><br /></font><font color="#0000BB">$doc</font><font color="#007700">-&gt;</font><font color="#0000BB">save</font><font color="#007700">(</font><font color="#DD0000">"/tmp/test.pdf"</font><font color="#007700">); </font><font color="#FF8000">/* save the document into a file */<br /><br /></font><font color="#0000BB">?&gt;</font>
</font>
</code></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
>
   </P
><P
>&#13;    Open the result document in your favourite PDF viewer and you should see a
    light-blue rectangle and white "Hello World!" on it.
   </P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="haru.classes"
>Classes pré-definidas</A
></H1
><P
></P
><TABLE
BORDER="0"
><TBODY
><TR
><TD
>&#13;     <A
HREF="haru.haruexception.html"
><B
CLASS="classname"
>HaruException</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.harudoc.html"
><B
CLASS="classname"
>HaruDoc</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.harupage.html"
><B
CLASS="classname"
>HaruPage</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.harufont.html"
><B
CLASS="classname"
>HaruFont</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.haruimage.html"
><B
CLASS="classname"
>HaruImage</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.haruencoder.html"
><B
CLASS="classname"
>HaruEncoder</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.haruoutline.html"
><B
CLASS="classname"
>HaruOutline</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.haruannotation.html"
><B
CLASS="classname"
>HaruAnnotation</B
></A
>
    </TD
></TR
><TR
><TD
>&#13;     <A
HREF="haru.harudestination.html"
><B
CLASS="classname"
>HaruDestination</B
></A
>
    </TD
></TR
></TBODY
></TABLE
><P
></P
></DIV
><DIV
CLASS="section"
><H1
CLASS="section"
><A
NAME="haru.builtin"
>Builtin Fonts And Encodings</A
></H1
><DIV
CLASS="section"
><H2
CLASS="section"
><A
NAME="haru.builtin.fonts"
>Builtin Fonts</A
></H2
><P
>&#13;    These Base14 fonts are built-in into PDF and all viewers can display them.
    Using these fonts may decrease the size of the result file and make the
    processing faster, avoiding loading external fonts.
    However the fonts support only latin1 character set and you have to load
    external fonts if you need to use an other character set.
   </P
><P
>&#13;    The Base14 fonts:
    <P
></P
><UL
><LI
><P
>&#13;       Courier
      </P
></LI
><LI
><P
>&#13;       Courier-Bold
      </P
></LI
><LI
><P
>&#13;       Courier-Oblique
      </P
></LI
><LI
><P
>&#13;       Courier-BoldOblique
      </P
></LI
><LI
><P
>&#13;       Helvetica
      </P
></LI
><LI
><P
>&#13;       Helvetica-Bold
      </P
></LI
><LI
><P
>&#13;       Helvetica-Oblique
      </P
></LI
><LI
><P
>&#13;       Helvetica-BoldOblique
      </P
></LI
><LI
><P
>&#13;       Times-Roman
      </P
></LI
><LI
><P
>&#13;       Times-Bold
      </P
></LI
><LI
><P
>&#13;       Times-Italic
      </P
></LI
><LI
><P
>&#13;       Times-BoldItalic
      </P
></LI
><LI
><P
>&#13;       Symbol
      </P
></LI
><LI
><P
>&#13;       ZapfDingbats
      </P
></LI
></UL
>
   </P
></DIV
><DIV
CLASS="section"
><H2
CLASS="section"
><A
NAME="haru.builtin.encodings"
>Builtin Encodings</A
></H2
><DIV
CLASS="table"
><A
NAME="AEN62100"
></A
><P
><B
>Tabela 1. Single-byte character set encodings</B
></P
><TABLE
BORDER="1"
CLASS="CALSTABLE"
><COL><COL><THEAD
><TR
><TH
>Name</TH
><TH
>Description</TH
></TR
></THEAD
><TBODY
><TR
><TD
>&#13;        StandardEncoding
       </TD
><TD
>&#13;        The default encoding of PDF.
       </TD
></TR
><TR
><TD
>&#13;        MacRomanEncoding
       </TD
><TD
>&#13;        The standard encoding of Mac OS.
       </TD
></TR
><TR
><TD
>&#13;        WinAnsiEncoding
       </TD
><TD
>&#13;        The standard encoding of Windows.
       </TD
></TR
><TR
><TD
>&#13;        FontSpecific
       </TD
><TD
>&#13;        The font built-in encoding.
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-2
       </TD
><TD
>&#13;        Latin2 (East European)
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-3
       </TD
><TD
>&#13;        Latin3 (South European)
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-4
       </TD
><TD
>&#13;        Latin4 (North European)
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-5
       </TD
><TD
>&#13;        Cyrillic
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-6
       </TD
><TD
>&#13;        Arabic
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-7
       </TD
><TD
>&#13;        Greek
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-8
       </TD
><TD
>&#13;        Hebrew
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-9
       </TD
><TD
>&#13;        Latin5 (Turkish)
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-10
       </TD
><TD
>&#13;        Latin6 (Nordic)
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-11
       </TD
><TD
>&#13;        Thai
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-13
       </TD
><TD
>&#13;        Latin7 (Baltic Rim)
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-14
       </TD
><TD
>&#13;        Latin8 (Celtic)
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-15
       </TD
><TD
>&#13;        Latin9
       </TD
></TR
><TR
><TD
>&#13;        ISO8859-16
       </TD
><TD
>&#13;        Latin10
       </TD
></TR
><TR
><TD
>&#13;        CP1250
       </TD
><TD
>&#13;        MS Windows Codepage 1250.
       </TD
></TR
><TR
><TD
>&#13;        CP1251
       </TD
><TD
>&#13;        MS Windows Codepage 1251.
       </TD
></TR
><TR
><TD
>&#13;        CP1252
       </TD
><TD
>&#13;        MS Windows Codepage 1252.
       </TD
></TR
><TR
><TD
>&#13;        CP1253
       </TD
><TD
>&#13;        MS Windows Codepage 1253.
       </TD
></TR
><TR
><TD
>&#13;        CP1254
       </TD
><TD
>&#13;        MS Windows Codepage 1254.
       </TD
></TR
><TR
><TD
>&#13;        CP1255
       </TD
><TD
>&#13;        MS Windows Codepage 1255.
       </TD
></TR
><TR
><TD
>&#13;        CP1256
       </TD
><TD
>&#13;        MS Windows Codepage 1256.
       </TD
></TR
><TR
><TD
>&#13;        CP1257
       </TD
><TD
>&#13;        MS Windows Codepage 1257.
       </TD
></TR
><TR
><TD
>&#13;        CP1258
       </TD
><TD
>&#13;        MS Windows Codepage 1258.
       </TD
></TR
><TR
><TD
>&#13;        KOI8-R
       </TD
><TD
>&#13;        Cyrillic character set.
       </TD
></TR
></TBODY
></TABLE
></DIV
><DIV
CLASS="table"
><A
NAME="AEN62192"
></A
><P
><B
>Tabela 2. Multi-byte character set encodings</B
></P
><TABLE
BORDER="1"
CLASS="CALSTABLE"
><COL><COL><THEAD
><TR
><TH
>Name</TH
><TH
>Description</TH
></TR
></THEAD
><TBODY
><TR
><TD
>&#13;        GB-EUC-H
       </TD
><TD
>&#13;        EUC-CN encoding.
       </TD
></TR
><TR
><TD
>&#13;        GB-EUC-V
       </TD
><TD
>&#13;        Vertical writing version of GB-EUC-H.
       </TD
></TR
><TR
><TD
>&#13;        GBK-EUC-H
       </TD
><TD
>&#13;        Microsoft Code Page 936 (lfCharSet 0x86) GBK
        encoding.
       </TD
></TR
><TR
><TD
>&#13;        GBK-EUC-V
       </TD
><TD
>&#13;        Vertical writing version of GBK-EUC-H.
       </TD
></TR
><TR
><TD
>&#13;        ETen-B5-H
       </TD
><TD
>&#13;        Microsoft Code Page 950 (lfCharSet 0x88) Big Five
        character set with ETen extensions.
       </TD
></TR
><TR
><TD
>&#13;        ETen-B5-V
       </TD
><TD
>&#13;        Vertical writing version of ETen-B5-H.
       </TD
></TR
><TR
><TD
>&#13;        90ms-RKSJ-H
       </TD
><TD
>&#13;        Microsoft Code Page 932, JIS X 0208 character.
       </TD
></TR
><TR
><TD
>&#13;        90ms-RKSJ-V
       </TD
><TD
>&#13;        Vertical writing version of 90ms-RKSJ-V.
       </TD
></TR
><TR
><TD
>&#13;        90msp-RKSJ-H
       </TD
><TD
>&#13;        Microsoft Code Page 932, JIS X 0208 character
        (proportional).
       </TD
></TR
><TR
><TD
>&#13;        EUC-H
       </TD
><TD
>&#13;        JIS X 0208 character set, EUC-JP encoding.
       </TD
></TR
><TR
><TD
>&#13;        EUC-V
       </TD
><TD
>&#13;        Vertical writing version of EUC-H.
       </TD
></TR
><TR
><TD
>&#13;        KSC-EUC-H
       </TD
><TD
>&#13;        KS X 1001:1992 character set, EUC-KR encoding.
       </TD
></TR
><TR
><TD
>&#13;        KSC-EUC-V
       </TD
><TD
>&#13;        Vertical writing version of KSC-EUC-V.
       </TD
></TR
><TR
><TD
>&#13;        KSCms-UHC-H
       </TD
><TD
>&#13;        Microsoft Code Page 949 (lfCharSet 0x81), KS X
        1001:1992 character set plus 8822 additional hangul, Unified Hangul
        Code (UHC) encoding (proportional). 
       </TD
></TR
><TR
><TD
>&#13;        KSCms-UHC-HW-H
       </TD
><TD
>&#13;        Microsoft Code Page 949 (lfCharSet 0x81), KS X
        1001:1992 character set plus 8822 additional hangul, Unified Hangul
        Code (UHC) encoding (fixed width).
       </TD
></TR
><TR
><TD
>&#13;        KSCms-UHC-HW-V
       </TD
><TD
>&#13;        Vertical writing version of KSCms-UHC-HW-H.
       </TD
></TR
></TBODY
></TABLE
></DIV
></DIV
></DIV
></DIV
><DIV
CLASS="TOC"
><DL
><DT
><B
>Índice</B
></DT
><DT
><A
HREF="haru.haruexception.html"
>HaruException</A
>&nbsp;--&nbsp;Haru PDF Exception Class</DT
><DT
><A
HREF="haru.harudoc.html"
>HaruDoc</A
>&nbsp;--&nbsp;Haru PDF Document Class</DT
><DT
><A
HREF="haru.harupage.html"
>HaruPage</A
>&nbsp;--&nbsp;Haru PDF Page Class</DT
><DT
><A
HREF="haru.harufont.html"
>HaruFont</A
>&nbsp;--&nbsp;Haru PDF Font Class</DT
><DT
><A
HREF="haru.haruimage.html"
>HaruImage</A
>&nbsp;--&nbsp;Haru PDF Image Class</DT
><DT
><A
HREF="haru.haruencoder.html"
>HaruEncoder</A
>&nbsp;--&nbsp;Haru PDF Encoder Class</DT
><DT
><A
HREF="haru.haruoutline.html"
>HaruOutline</A
>&nbsp;--&nbsp;Haru PDF Outline Class </DT
><DT
><A
HREF="haru.haruannotation.html"
>HaruAnnotation</A
>&nbsp;--&nbsp;Haru PDF Annotation Class</DT
><DT
><A
HREF="haru.harudestination.html"
>HaruDestination</A
>&nbsp;--&nbsp;Haru PDF Destination Class</DT
><DT
><A
HREF="function.haruannotation-setborderstyle.html"
>HaruAnnotation::setBorderStyle</A
>&nbsp;--&nbsp;Set the border style of the annotation</DT
><DT
><A
HREF="function.haruannotation-sethighlightmode.html"
>HaruAnnotation::setHighlightMode</A
>&nbsp;--&nbsp;Set the highlighting mode of the annotation</DT
><DT
><A
HREF="function.haruannotation-seticon.html"
>HaruAnnotation::setIcon</A
>&nbsp;--&nbsp;Set the icon style of the annotation</DT
><DT
><A
HREF="function.haruannotation-setopened.html"
>HaruAnnotation::setOpened</A
>&nbsp;--&nbsp;Set the initial state of the annotation</DT
><DT
><A
HREF="function.harudestination-setfit.html"
>HaruDestination::setFit</A
>&nbsp;--&nbsp;Set the appearance of the page to fit the window</DT
><DT
><A
HREF="function.harudestination-setfitb.html"
>HaruDestination::setFitB</A
>&nbsp;--&nbsp;Set the appearance of the page to fit the bounding box of the page within the window</DT
><DT
><A
HREF="function.harudestination-setfitbh.html"
>HaruDestination::setFitBH</A
>&nbsp;--&nbsp;Set the appearance of the page to fit the width of the bounding box</DT
><DT
><A
HREF="function.harudestination-setfitbv.html"
>HaruDestination::setFitBV</A
>&nbsp;--&nbsp;Set the appearance of the page to fit the height of the boudning box</DT
><DT
><A
HREF="function.harudestination-setfith.html"
>HaruDestination::setFitH</A
>&nbsp;--&nbsp;Set the appearance of the page to fit the window width</DT
><DT
><A
HREF="function.harudestination-setfitr.html"
>HaruDestination::setFitR</A
>&nbsp;--&nbsp;Set the appearance of the page to fit the specified rectangle</DT
><DT
><A
HREF="function.harudestination-setfitv.html"
>HaruDestination::setFitV</A
>&nbsp;--&nbsp;Set the appearance of the page to fit the window height</DT
><DT
><A
HREF="function.harudestination-setxyz.html"
>HaruDestination::setXYZ</A
>&nbsp;--&nbsp;Set the appearance of the page</DT
><DT
><A
HREF="function.harudoc-addpage.html"
>HaruDoc::addPage</A
>&nbsp;--&nbsp;Add new page to the document</DT
><DT
><A
HREF="function.harudoc-addpagelabel.html"
>HaruDoc::addPageLabel</A
>&nbsp;--&nbsp;Set the numbering style for the specified range of pages</DT
><DT
><A
HREF="function.harudoc-construct.html"
>HaruDoc::__construct</A
>&nbsp;--&nbsp;Construct new <B
CLASS="classname"
>HaruDoc</B
> instance</DT
><DT
><A
HREF="function.harudoc-createoutline.html"
>HaruDoc::createOutline</A
>&nbsp;--&nbsp;Create a <B
CLASS="classname"
>HaruOutline</B
> instance</DT
><DT
><A
HREF="function.harudoc-getcurrentencoder.html"
>HaruDoc::getCurrentEncoder</A
>&nbsp;--&nbsp;Get <B
CLASS="classname"
>HaruEncoder</B
> currently used in the document</DT
><DT
><A
HREF="function.harudoc-getcurrentpage.html"
>HaruDoc::getCurrentPage</A
>&nbsp;--&nbsp;Return current page of the document</DT
><DT
><A
HREF="function.harudoc-getencoder.html"
>HaruDoc::getEncoder</A
>&nbsp;--&nbsp;Get <B
CLASS="classname"
>HaruEncoder</B
> instance for the specified encoding</DT
><DT
><A
HREF="function.harudoc-getfont.html"
>HaruDoc::getFont</A
>&nbsp;--&nbsp;Get <B
CLASS="classname"
>HaruFont</B
> instance</DT
><DT
><A
HREF="function.harudoc-getinfoattr.html"
>HaruDoc::getInfoAttr</A
>&nbsp;--&nbsp;Get current value of the specified document attribute</DT
><DT
><A
HREF="function.harudoc-getpagelayout.html"
>HaruDoc::getPageLayout</A
>&nbsp;--&nbsp;Get current page layout</DT
><DT
><A
HREF="function.harudoc-getpagemode.html"
>HaruDoc::getPageMode</A
>&nbsp;--&nbsp;Get current page mode</DT
><DT
><A
HREF="function.harudoc-getstreamsize.html"
>HaruDoc::getStreamSize</A
>&nbsp;--&nbsp;Get the size of the temporary stream</DT
><DT
><A
HREF="function.harudoc-insertpage.html"
>HaruDoc::insertPage</A
>&nbsp;--&nbsp;Insert new page just before the specified page</DT
><DT
><A
HREF="function.harudoc-loadjpeg.html"
>HaruDoc::loadJPEG</A
>&nbsp;--&nbsp;Load JPEG image and return new <B
CLASS="classname"
>HaruImage</B
> instance</DT
><DT
><A
HREF="function.harudoc-loadpng.html"
>HaruDoc::loadPNG</A
>&nbsp;--&nbsp;Load PNG image and return <B
CLASS="classname"
>HaruImage</B
> instance</DT
><DT
><A
HREF="function.harudoc-loadraw.html"
>HaruDoc::loadRaw</A
>&nbsp;--&nbsp;Load RAW image and return HaruImage instance</DT
><DT
><A
HREF="function.harudoc-loadttc.html"
>HaruDoc::loadTTC</A
>&nbsp;--&nbsp;Load the font with the specified index from TTC file</DT
><DT
><A
HREF="function.harudoc-loadttf.html"
>HaruDoc::loadTTF</A
>&nbsp;--&nbsp;Load TTF font file</DT
><DT
><A
HREF="function.harudoc-loadtype1.html"
>HaruDoc::loadType1</A
>&nbsp;--&nbsp;Load Type1 font</DT
><DT
><A
HREF="function.harudoc-output.html"
>HaruDoc::output</A
>&nbsp;--&nbsp;Write the document data to the output buffer</DT
><DT
><A
HREF="function.harudoc-readfromstream.html"
>HaruDoc::readFromStream</A
>&nbsp;--&nbsp;Read data from the temporary stream</DT
><DT
><A
HREF="function.harudoc-reseterror.html"
>HaruDoc::resetError</A
>&nbsp;--&nbsp;Reset error state of the document handle</DT
><DT
><A
HREF="function.harudoc-resetstream.html"
>HaruDoc::resetStream</A
>&nbsp;--&nbsp;Rewind the temporary stream</DT
><DT
><A
HREF="function.harudoc-save.html"
>HaruDoc::save</A
>&nbsp;--&nbsp;Save the document into the specified file</DT
><DT
><A
HREF="function.harudoc-savetostream.html"
>HaruDoc::saveToStream</A
>&nbsp;--&nbsp;Save the document into a temporary stream</DT
><DT
><A
HREF="function.harudoc-setcompressionmode.html"
>HaruDoc::setCompressionMode</A
>&nbsp;--&nbsp;Set compression mode for the document</DT
><DT
><A
HREF="function.harudoc-setcurrentencoder.html"
>HaruDoc::setCurrentEncoder</A
>&nbsp;--&nbsp;Set the current encoder for the document</DT
><DT
><A
HREF="function.harudoc-setencryptionmode.html"
>HaruDoc::setEncryptionMode</A
>&nbsp;--&nbsp;Set encryption mode for the document</DT
><DT
><A
HREF="function.harudoc-setinfoattr.html"
>HaruDoc::setInfoAttr</A
>&nbsp;--&nbsp;Set the info attribute of the document</DT
><DT
><A
HREF="function.harudoc-setinfodateattr.html"
>HaruDoc::setInfoDateAttr</A
>&nbsp;--&nbsp;Set the datetime info attributes of the document</DT
><DT
><A
HREF="function.harudoc-setopenaction.html"
>HaruDoc::setOpenAction</A
>&nbsp;--&nbsp;Define which page is shown when the document is opened</DT
><DT
><A
HREF="function.harudoc-setpagelayout.html"
>HaruDoc::setPageLayout</A
>&nbsp;--&nbsp;Set how pages should be displayed</DT
><DT
><A
HREF="function.harudoc-setpagemode.html"
>HaruDoc::setPageMode</A
>&nbsp;--&nbsp;Set how the document should be displayed</DT
><DT
><A
HREF="function.harudoc-setpagesconfiguration.html"
>HaruDoc::setPagesConfiguration</A
>&nbsp;--&nbsp;Set the number of pages per set of pages</DT
><DT
><A
HREF="function.harudoc-setpassword.html"
>HaruDoc::setPassword</A
>&nbsp;--&nbsp;Set owner and user passwords for the document</DT
><DT
><A
HREF="function.harudoc-setpermission.html"
>HaruDoc::setPermission</A
>&nbsp;--&nbsp;Set permissions for the document</DT
><DT
><A
HREF="function.harudoc-usecnsencodings.html"
>HaruDoc::useCNSEncodings</A
>&nbsp;--&nbsp;Enable Chinese simplified encodings</DT
><DT
><A
HREF="function.harudoc-usecnsfonts.html"
>HaruDoc::useCNSFonts</A
>&nbsp;--&nbsp;Enable builtin Chinese simplified fonts</DT
><DT
><A
HREF="function.harudoc-usecntencodings.html"
>HaruDoc::useCNTEncodings</A
>&nbsp;--&nbsp;Enable Chinese traditional encodings</DT
><DT
><A
HREF="function.harudoc-usecntfonts.html"
>HaruDoc::useCNTFonts</A
>&nbsp;--&nbsp;Enable builtin Chinese traditional fonts</DT
><DT
><A
HREF="function.harudoc-usejpencodings.html"
>HaruDoc::useJPEncodings</A
>&nbsp;--&nbsp;Enable Japanese encodings</DT
><DT
><A
HREF="function.harudoc-usejpfonts.html"
>HaruDoc::useJPFonts</A
>&nbsp;--&nbsp;Enable builtin Japanese fonts</DT
><DT
><A
HREF="function.harudoc-usekrencodings.html"
>HaruDoc::useKREncodings</A
>&nbsp;--&nbsp;Enable Korean encodings</DT
><DT
><A
HREF="function.harudoc-usekrfonts.html"
>HaruDoc::useKRFonts</A
>&nbsp;--&nbsp;Enable builtin Korean fonts</DT
><DT
><A
HREF="function.haruencoder-getbytetype.html"
>HaruEncoder::getByteType</A
>&nbsp;--&nbsp;Get the type of the byte in the text</DT
><DT
><A
HREF="function.haruencoder-gettype.html"
>HaruEncoder::getType</A
>&nbsp;--&nbsp;Get the type of the encoder</DT
><DT
><A
HREF="function.haruencoder-getunicode.html"
>HaruEncoder::getUnicode</A
>&nbsp;--&nbsp;Convert the specified character to unicode</DT
><DT
><A
HREF="function.haruencoder-getwritingmode.html"
>HaruEncoder::getWritingMode</A
>&nbsp;--&nbsp;Get the writing mode of the encoder</DT
><DT
><A
HREF="function.harufont-getascent.html"
>HaruFont::getAscent</A
>&nbsp;--&nbsp;Get the vertical ascent of the font</DT
><DT
><A
HREF="function.harufont-getcapheight.html"
>HaruFont::getCapHeight</A
>&nbsp;--&nbsp;Get the distance from the baseline of uppercase letters</DT
><DT
><A
HREF="function.harufont-getdescent.html"
>HaruFont::getDescent</A
>&nbsp;--&nbsp;Get the vertical descent of the font</DT
><DT
><A
HREF="function.harufont-getencodingname.html"
>HaruFont::getEncodingName</A
>&nbsp;--&nbsp;Get the name of the encoding</DT
><DT
><A
HREF="function.harufont-getfontname.html"
>HaruFont::getFontName</A
>&nbsp;--&nbsp;Get the name of the font</DT
><DT
><A
HREF="function.harufont-gettextwidth.html"
>HaruFont::getTextWidth</A
>&nbsp;--&nbsp;Get the total width of the text, number of characters, number of words and number of spaces</DT
><DT
><A
HREF="function.harufont-getunicodewidth.html"
>HaruFont::getUnicodeWidth</A
>&nbsp;--&nbsp;Get the width of the character in the font</DT
><DT
><A
HREF="function.harufont-getxheight.html"
>HaruFont::getXHeight</A
>&nbsp;--&nbsp;Get the distance from the baseline of lowercase letters</DT
><DT
><A
HREF="function.harufont-measuretext.html"
>HaruFont::measureText</A
>&nbsp;--&nbsp;Calculate the number of characters which can be included within the specified width</DT
><DT
><A
HREF="function.haruimage-getbitspercomponent.html"
>HaruImage::getBitsPerComponent</A
>&nbsp;--&nbsp;Get the number of bits used to describe each color component of the image</DT
><DT
><A
HREF="function.haruimage-getcolorspace.html"
>HaruImage::getColorSpace</A
>&nbsp;--&nbsp;Get the name of the color space</DT
><DT
><A
HREF="function.haruimage-getheight.html"
>HaruImage::getHeight</A
>&nbsp;--&nbsp;Get the height of the image</DT
><DT
><A
HREF="function.haruimage-getsize.html"
>HaruImage::getSize</A
>&nbsp;--&nbsp;Get size of the image</DT
><DT
><A
HREF="function.haruimage-getwidth.html"
>HaruImage::getWidth</A
>&nbsp;--&nbsp;Get the width of the image</DT
><DT
><A
HREF="function.haruimage-setcolormask.html"
>HaruImage::setColorMask</A
>&nbsp;--&nbsp;Set the color mask of the image</DT
><DT
><A
HREF="function.haruimage-setmaskimage.html"
>HaruImage::setMaskImage</A
>&nbsp;--&nbsp;Set the image mask</DT
><DT
><A
HREF="function.haruoutline-setdestination.html"
>HaruOutline::setDestination</A
>&nbsp;--&nbsp;Set the destination for the outline</DT
><DT
><A
HREF="function.haruoutline-setopened.html"
>HaruOutline::setOpened</A
>&nbsp;--&nbsp;Set the initial state of the outline</DT
><DT
><A
HREF="function.harupage-arc.html"
>HaruPage::arc</A
>&nbsp;--&nbsp;Append an arc to the current path</DT
><DT
><A
HREF="function.harupage-begintext.html"
>HaruPage::beginText</A
>&nbsp;--&nbsp;Begin a text object and set the current text position to (0,0)</DT
><DT
><A
HREF="function.harupage-circle.html"
>HaruPage::circle</A
>&nbsp;--&nbsp;Append a circle to the current path</DT
><DT
><A
HREF="function.harupage-closepath.html"
>HaruPage::closePath</A
>&nbsp;--&nbsp;Append a straight line from the current point to the start point of the path</DT
><DT
><A
HREF="function.harupage-concat.html"
>HaruPage::concat</A
>&nbsp;--&nbsp;Concatenate current transformation matrix of the page and the specified matrix</DT
><DT
><A
HREF="function.harupage-createdestination.html"
>HaruPage::createDestination</A
>&nbsp;--&nbsp;Create new <B
CLASS="classname"
>HaruDestination</B
> instance</DT
><DT
><A
HREF="function.harupage-createlinkannotation.html"
>HaruPage::createLinkAnnotation</A
>&nbsp;--&nbsp;Create new <B
CLASS="classname"
>HaruAnnotation</B
> instance</DT
><DT
><A
HREF="function.harupage-createtextannotation.html"
>HaruPage::createTextAnnotation</A
>&nbsp;--&nbsp;Create new <B
CLASS="classname"
>HaruAnnotation</B
> instance</DT
><DT
><A
HREF="function.harupage-createurlannotation.html"
>HaruPage::createURLAnnotation</A
>&nbsp;--&nbsp;Create and return new <B
CLASS="classname"
>HaruAnnotation</B
> instance</DT
><DT
><A
HREF="function.harupage-curveto2.html"
>HaruPage::curveTo2</A
>&nbsp;--&nbsp;Append a Bezier curve to the current path</DT
><DT
><A
HREF="function.harupage-curveto3.html"
>HaruPage::curveTo3</A
>&nbsp;--&nbsp;Append a Bezier curve to the current path</DT
><DT
><A
HREF="function.harupage-curveto.html"
>HaruPage::curveTo</A
>&nbsp;--&nbsp;Append a Bezier curve to the current path</DT
><DT
><A
HREF="function.harupage-drawimage.html"
>HaruPage::drawImage</A
>&nbsp;--&nbsp;Show image at the page</DT
><DT
><A
HREF="function.harupage-ellipse.html"
>HaruPage::ellipse</A
>&nbsp;--&nbsp;Append an ellipse to the current path</DT
><DT
><A
HREF="function.harupage-endpath.html"
>HaruPage::endPath</A
>&nbsp;--&nbsp;End current path object without filling and painting operations</DT
><DT
><A
HREF="function.harupage-endtext.html"
>HaruPage::endText</A
>&nbsp;--&nbsp;End current text object</DT
><DT
><A
HREF="function.harupage-eofill.html"
>HaruPage::eofill</A
>&nbsp;--&nbsp;Fill current path using even-odd rule</DT
><DT
><A
HREF="function.harupage-eofillstroke.html"
>HaruPage::eoFillStroke</A
>&nbsp;--&nbsp;Fill current path using even-odd rule, then paint the path</DT
><DT
><A
HREF="function.harupage-fill.html"
>HaruPage::fill</A
>&nbsp;--&nbsp;Fill current path using nonzero winding number rule</DT
><DT
><A
HREF="function.harupage-fillstroke.html"
>HaruPage::fillStroke</A
>&nbsp;--&nbsp;Fill current path using nonzero winding number rule, then paint the path</DT
><DT
><A
HREF="function.harupage-getcharspace.html"
>HaruPage::getCharSpace</A
>&nbsp;--&nbsp;Get the current value of character spacing</DT
><DT
><A
HREF="function.harupage-getcmykfill.html"
>HaruPage::getCMYKFill</A
>&nbsp;--&nbsp;Get the current filling color</DT
><DT
><A
HREF="function.harupage-getcmykstroke.html"
>HaruPage::getCMYKStroke</A
>&nbsp;--&nbsp;Get the current stroking color</DT
><DT
><A
HREF="function.harupage-getcurrentfont.html"
>HaruPage::getCurrentFont</A
>&nbsp;--&nbsp;Get the currently used font</DT
><DT
><A
HREF="function.harupage-getcurrentfontsize.html"
>HaruPage::getCurrentFontSize</A
>&nbsp;--&nbsp;Get the current font size</DT
><DT
><A
HREF="function.harupage-getcurrentpos.html"
>HaruPage::getCurrentPos</A
>&nbsp;--&nbsp;Get the current position for path painting</DT
><DT
><A
HREF="function.harupage-getcurrenttextpos.html"
>HaruPage::getCurrentTextPos</A
>&nbsp;--&nbsp;Get the current position for text printing</DT
><DT
><A
HREF="function.harupage-getdash.html"
>HaruPage::getDash</A
>&nbsp;--&nbsp;Get the current dash pattern</DT
><DT
><A
HREF="function.harupage-getfillingcolorspace.html"
>HaruPage::getFillingColorSpace</A
>&nbsp;--&nbsp;Get the current filling color space</DT
><DT
><A
HREF="function.harupage-getflatness.html"
>HaruPage::getFlatness</A
>&nbsp;--&nbsp;Get the flatness of the page</DT
><DT
><A
HREF="function.harupage-getgmode.html"
>HaruPage::getGMode</A
>&nbsp;--&nbsp;Get the current graphics mode</DT
><DT
><A
HREF="function.harupage-getgrayfill.html"
>HaruPage::getGrayFill</A
>&nbsp;--&nbsp;Get the current filling color</DT
><DT
><A
HREF="function.harupage-getgraystroke.html"
>HaruPage::getGrayStroke</A
>&nbsp;--&nbsp;Get the current stroking color</DT
><DT
><A
HREF="function.harupage-getheight.html"
>HaruPage::getHeight</A
>&nbsp;--&nbsp;Get the height of the page</DT
><DT
><A
HREF="function.harupage-gethorizontalscaling.html"
>HaruPage::getHorizontalScaling</A
>&nbsp;--&nbsp;Get the current value of horizontal scaling</DT
><DT
><A
HREF="function.harupage-getlinecap.html"
>HaruPage::getLineCap</A
>&nbsp;--&nbsp;Get the current line cap style</DT
><DT
><A
HREF="function.harupage-getlinejoin.html"
>HaruPage::getLineJoin</A
>&nbsp;--&nbsp;Get the current line join style</DT
><DT
><A
HREF="function.harupage-getlinewidth.html"
>HaruPage::getLineWidth</A
>&nbsp;--&nbsp;Get the current line width</DT
><DT
><A
HREF="function.harupage-getmiterlimit.html"
>HaruPage::getMiterLimit</A
>&nbsp;--&nbsp;Get the value of miter limit</DT
><DT
><A
HREF="function.harupage-getrgbfill.html"
>HaruPage::getRGBFill</A
>&nbsp;--&nbsp;Get the current filling color</DT
><DT
><A
HREF="function.harupage-getrgbstroke.html"
>HaruPage::getRGBStroke</A
>&nbsp;--&nbsp;Get the current stroking color</DT
><DT
><A
HREF="function.harupage-getstrokingcolorspace.html"
>HaruPage::getStrokingColorSpace</A
>&nbsp;--&nbsp;Get the current stroking color space</DT
><DT
><A
HREF="function.harupage-gettextleading.html"
>HaruPage::getTextLeading</A
>&nbsp;--&nbsp;Get the current value of line spacing</DT
><DT
><A
HREF="function.harupage-gettextmatrix.html"
>HaruPage::getTextMatrix</A
>&nbsp;--&nbsp;Get the current text transformation matrix of the page</DT
><DT
><A
HREF="function.harupage-gettextrenderingmode.html"
>HaruPage::getTextRenderingMode</A
>&nbsp;--&nbsp;Get the current text rendering mode</DT
><DT
><A
HREF="function.harupage-gettextrise.html"
>HaruPage::getTextRise</A
>&nbsp;--&nbsp;Get the current value of text rising</DT
><DT
><A
HREF="function.harupage-gettextwidth.html"
>HaruPage::getTextWidth</A
>&nbsp;--&nbsp;Get the width of the text using current fontsize, character spacing and word spacing</DT
><DT
><A
HREF="function.harupage-gettransmatrix.html"
>HaruPage::getTransMatrix</A
>&nbsp;--&nbsp;Get the current transformation matrix of the page</DT
><DT
><A
HREF="function.harupage-getwidth.html"
>HaruPage::getWidth</A
>&nbsp;--&nbsp;Get the width of the page</DT
><DT
><A
HREF="function.harupage-getwordspace.html"
>HaruPage::getWordSpace</A
>&nbsp;--&nbsp;Get the current value of word spacing</DT
><DT
><A
HREF="function.harupage-lineto.html"
>HaruPage::lineTo</A
>&nbsp;--&nbsp;Draw a line from the current point to the specified point</DT
><DT
><A
HREF="function.harupage-measuretext.html"
>HaruPage::measureText</A
>&nbsp;--&nbsp;Calculate the number of characters which can be included within the specified width</DT
><DT
><A
HREF="function.harupage-movetextpos.html"
>HaruPage::moveTextPos</A
>&nbsp;--&nbsp;Move text position to the specified offset</DT
><DT
><A
HREF="function.harupage-moveto.html"
>HaruPage::moveTo</A
>&nbsp;--&nbsp;Set starting point for new drawing path</DT
><DT
><A
HREF="function.harupage-movetonextline.html"
>HaruPage::moveToNextLine</A
>&nbsp;--&nbsp;Move text position to the start of the next line</DT
><DT
><A
HREF="function.harupage-rectangle.html"
>HaruPage::rectangle</A
>&nbsp;--&nbsp;Append a rectangle to the current path</DT
><DT
><A
HREF="function.harupage-setcharspace.html"
>HaruPage::setCharSpace</A
>&nbsp;--&nbsp;Set character spacing for the page</DT
><DT
><A
HREF="function.harupage-setcmykfill.html"
>HaruPage::setCMYKFill</A
>&nbsp;--&nbsp;Set filling color for the page</DT
><DT
><A
HREF="function.harupage-setcmykstroke.html"
>HaruPage::setCMYKStroke</A
>&nbsp;--&nbsp;Set stroking color for the page</DT
><DT
><A
HREF="function.harupage-setdash.html"
>HaruPage::setDash</A
>&nbsp;--&nbsp;Set the dash pattern for the page</DT
><DT
><A
HREF="function.harupage-setflatness.html"
>HaruPage::setFlatness</A
>&nbsp;--&nbsp;Set flatness for the page</DT
><DT
><A
HREF="function.harupage-setfontandsize.html"
>HaruPage::setFontAndSize</A
>&nbsp;--&nbsp;Set font and fontsize for the page</DT
><DT
><A
HREF="function.harupage-setgrayfill.html"
>HaruPage::setGrayFill</A
>&nbsp;--&nbsp;Set filling color for the page</DT
><DT
><A
HREF="function.harupage-setgraystroke.html"
>HaruPage::setGrayStroke</A
>&nbsp;--&nbsp;Sets stroking color for the page</DT
><DT
><A
HREF="function.harupage-setheight.html"
>HaruPage::setHeight</A
>&nbsp;--&nbsp;Set height of the page</DT
><DT
><A
HREF="function.harupage-sethorizontalscaling.html"
>HaruPage::setHorizontalScaling</A
>&nbsp;--&nbsp;Set horizontal scaling for the page</DT
><DT
><A
HREF="function.harupage-setlinecap.html"
>HaruPage::setLineCap</A
>&nbsp;--&nbsp;Set the shape to be used at the ends of lines</DT
><DT
><A
HREF="function.harupage-setlinejoin.html"
>HaruPage::setLineJoin</A
>&nbsp;--&nbsp;Set line join style for the page</DT
><DT
><A
HREF="function.harupage-setlinewidth.html"
>HaruPage::setLineWidth</A
>&nbsp;--&nbsp;Set line width for the page</DT
><DT
><A
HREF="function.harupage-setmiterlimit.html"
>HaruPage::setMiterLimit</A
>&nbsp;--&nbsp;Set the current value of the miter limit of the page</DT
><DT
><A
HREF="function.harupage-setrgbfill.html"
>HaruPage::setRGBFill</A
>&nbsp;--&nbsp;Set filling color for the page</DT
><DT
><A
HREF="function.harupage-setrgbstroke.html"
>HaruPage::setRGBStroke</A
>&nbsp;--&nbsp;Set stroking color for the page</DT
><DT
><A
HREF="function.harupage-setrotate.html"
>HaruPage::setRotate</A
>&nbsp;--&nbsp;Set rotation angle of the page</DT
><DT
><A
HREF="function.harupage-setsize.html"
>HaruPage::setSize</A
>&nbsp;--&nbsp;Set size and direction of the page</DT
><DT
><A
HREF="function.harupage-setslideshow.html"
>HaruPage::setSlideShow</A
>&nbsp;--&nbsp;Set transition style for the page</DT
><DT
><A
HREF="function.harupage-settextleading.html"
>HaruPage::setTextLeading</A
>&nbsp;--&nbsp;Set text leading (line spacing) for the page</DT
><DT
><A
HREF="function.harupage-settextmatrix.html"
>HaruPage::setTextMatrix</A
>&nbsp;--&nbsp;Set the current text transformation matrix of the page</DT
><DT
><A
HREF="function.harupage-settextrenderingmode.html"
>HaruPage::setTextRenderingMode</A
>&nbsp;--&nbsp;Set text rendering mode for the page</DT
><DT
><A
HREF="function.harupage-settextrise.html"
>HaruPage::setTextRise</A
>&nbsp;--&nbsp;Set the current value of text rising</DT
><DT
><A
HREF="function.harupage-setwidth.html"
>HaruPage::setWidth</A
>&nbsp;--&nbsp;Set width of the page</DT
><DT
><A
HREF="function.harupage-setwordspace.html"
>HaruPage::setWordSpace</A
>&nbsp;--&nbsp;Set word spacing for the page</DT
><DT
><A
HREF="function.harupage-showtext.html"
>HaruPage::showText</A
>&nbsp;--&nbsp;Print text at the current position of the page</DT
><DT
><A
HREF="function.harupage-showtextnextline.html"
>HaruPage::showTextNextLine</A
>&nbsp;--&nbsp;Move the current position to the start of the next line and print the text</DT
><DT
><A
HREF="function.harupage-stroke.html"
>HaruPage::stroke</A
>&nbsp;--&nbsp;Paint current path</DT
><DT
><A
HREF="function.harupage-textout.html"
>HaruPage::textOut</A
>&nbsp;--&nbsp;Print the text on the specified position</DT
><DT
><A
HREF="function.harupage-textrect.html"
>HaruPage::textRect</A
>&nbsp;--&nbsp;Print the text inside the specified region</DT
></DL
></DIV
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.gopher-parsedir.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Principal</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="haru.haruexception.html"
ACCESSKEY="N"
>Próxima</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>gopher_parsedir</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="funcref.html"
ACCESSKEY="U"
>Acima</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>HaruException</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>