<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/libpdfflow/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/libpdfflow/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 20 Oct 2013 20:07:14 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/libpdfflow/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/libpdfflow/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="libpdfflow"&gt;LibPdfFlow&lt;/h1&gt;
&lt;p&gt;LibPdfFlow is a library used to write PDF files from a C program. The idea behind this library is, to generate PDF&lt;br /&gt;
files as simple as HTML files (e.g. reports) on an embedded device with restricted resources.The library is &lt;br /&gt;
written in C and uses only libc and &lt;a class="" href="http://libharu.org/" rel="nofollow"&gt;libHaru&lt;/a&gt; a free, cross platform, open source library for &lt;br /&gt;
generating PDF files. LibPdfFlow has only a few features, but it is small and does not need a lot of resources like &lt;br /&gt;
latex or similar libraries.&lt;/p&gt;
&lt;h1 id="license"&gt;License&lt;/h1&gt;
&lt;p&gt;Permission to use, copy, modify, and distribute this software for any&lt;br /&gt;
purpose with or without fee is hereby granted, provided that the above&lt;br /&gt;
copyright notice and this permission notice appear in all copies.&lt;/p&gt;
&lt;p&gt;THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES&lt;br /&gt;
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF&lt;br /&gt;
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR&lt;br /&gt;
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES&lt;br /&gt;
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN&lt;br /&gt;
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF&lt;br /&gt;
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.&lt;/p&gt;
&lt;h1 id="installation"&gt;Installation&lt;/h1&gt;
&lt;p&gt;Install libharu and type make.&lt;/p&gt;
&lt;h1 id="example"&gt;Example&lt;/h1&gt;
&lt;h2 id="hello-world"&gt;Hello World&lt;/h2&gt;
&lt;p&gt;Writes "Hello World" emphasized to the file test.pdf:&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;FPDF_doc_new&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="n"&gt;FPDF_em_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;FPDF_out&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;Hello World&amp;quot;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;FPDF_em_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;FPDF_render&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;FPDF_doc_save&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s"&gt;&amp;quot;test.pdf&amp;quot;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="n"&gt;FPDF_doc_free&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h2 id="simple"&gt;Simple&lt;/h2&gt;
&lt;p&gt;The example &lt;em&gt;simple&lt;/em&gt; (examples/simple) shows how to use the libpdfflow with a C programm.&lt;/p&gt;
&lt;h2 id="mkd2pdf"&gt;mkd2pdf&lt;/h2&gt;
&lt;p&gt;The example mkd2pdf shows how to convert a &lt;a class="" href="http://daringfireball.net/projects/markdown/" rel="nofollow"&gt;markdown&lt;/a&gt; document into a PDF. As markdown parser, &lt;a class="" href="http://fossil.instinctive.eu/libsoldout/index" rel="nofollow"&gt;libsoldout&lt;/a&gt; is used.&lt;/p&gt;
&lt;h1 id="api"&gt;API&lt;/h1&gt;
&lt;h2 id="fpdf_doc_new"&gt;FPDF_doc_new()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;FPDF_doc_new&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="kt"&gt;void&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description"&gt;Description&lt;/h4&gt;
&lt;p&gt;FPDF_doc_new() create an instance of a document object and initialize it. &lt;/p&gt;
&lt;h4 id="return-value"&gt;Return Value&lt;/h4&gt;
&lt;p&gt;FPDF_doc_new() return a handle of document object on success and NULL on failure.&lt;/p&gt;
&lt;h4 id="see-also"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_doc_free()&lt;/p&gt;
&lt;h2 id="fpdf_doc_free"&gt;FPDF_doc_free()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_doc_free&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_1"&gt;Description&lt;/h4&gt;
&lt;p&gt;FPDF_doc_free() revokes a document object and all resources.&lt;/p&gt;
&lt;h4 id="parameters"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_1"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_doc_new()&lt;/p&gt;
&lt;p&gt;void FPDF_doc_save(FPDF_WRITER * doc, const char * filename);&lt;/p&gt;
&lt;h2 id="fpdf_doc_save"&gt;FPDF_doc_save()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_doc_save&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="kt"&gt;char&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;filename&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_2"&gt;Description&lt;/h4&gt;
&lt;p&gt;Saves the document.&lt;/p&gt;
&lt;h4 id="parameters_1"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;filename&lt;/em&gt; - The name of the file to save.&lt;/p&gt;
&lt;h2 id="fpdf_render"&gt;FPDF_render()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_render&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_3"&gt;Description&lt;/h4&gt;
&lt;p&gt;Renders the PDF file.&lt;/p&gt;
&lt;h4 id="parameters_2"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h2 id="fpdf_h_start"&gt;FPDF_h_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_h_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;level&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_4"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a header section. This function corresponds to the HTML tag h1-h4.&lt;/p&gt;
&lt;h4 id="parameters_3"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;level&lt;/em&gt; - Header level 1-4&lt;/p&gt;
&lt;h4 id="see-also_2"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_h_end()&lt;/p&gt;
&lt;h2 id="fpdf_h_end"&gt;FPDF_h_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="nf"&gt;FPDF_h_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_5"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a haeder section. This function corresponds to the HTML tag /h1-/h4.&lt;/p&gt;
&lt;h4 id="parameters_4"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_3"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_h_start()&lt;/p&gt;
&lt;h2 id="fpdf_em_start"&gt;FPDF_em_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="nf"&gt;FPDF_em_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_6"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a emphasized section. This function corresponds to the HTML tag em.&lt;/p&gt;
&lt;h4 id="parameters_5"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_4"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_em_end()&lt;/p&gt;
&lt;h2 id="fpdf_em_end"&gt;FPDF_em_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_em_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_7"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a emphasized section. This function corresponds to the HTML tag /em.&lt;/p&gt;
&lt;h4 id="parameters_6"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_5"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_em_start()&lt;/p&gt;
&lt;h2 id="fpdf_strong_start"&gt;FPDF_strong_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="nf"&gt;FPDF_strong_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_8"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a important text section. This function corresponds to the HTML tag strong.&lt;/p&gt;
&lt;h4 id="parameters_7"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_6"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_strong_end()&lt;/p&gt;
&lt;h2 id="fpdf_strong_end"&gt;FPDF_strong_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_strong_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_9"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a important text section. This function corresponds to the HTML tag /strong.&lt;/p&gt;
&lt;h4 id="parameters_8"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_7"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_strong_start()&lt;/p&gt;
&lt;h2 id="fpdf_code_start"&gt;FPDF_code_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_code_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_10"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a source code section. This function corresponds to the HTML tag code.&lt;/p&gt;
&lt;h4 id="parameters_9"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_8"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_code_end()&lt;/p&gt;
&lt;h2 id="fpdf_code_end"&gt;FPDF_code_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_code_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_11"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a source code section. This function corresponds to the HTML tag /code.&lt;/p&gt;
&lt;h4 id="parameters_10"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_9"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_code_start()&lt;/p&gt;
&lt;h2 id="fpdf_link_start"&gt;FPDF_link_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="nf"&gt;FPDF_link_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="kt"&gt;char&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;link&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_12"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a link section. This function corresponds to the HTML tag a.&lt;/p&gt;
&lt;h4 id="parameters_11"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;link&lt;/em&gt; - URL of destination to jump to. &lt;/p&gt;
&lt;h4 id="see-also_10"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_link_end()&lt;/p&gt;
&lt;h2 id="fpdf_link_end"&gt;FPDF_link_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_link_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_13"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a link section. This function corresponds to the HTML tag /a.&lt;/p&gt;
&lt;h4 id="parameters_12"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_11"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_link_start()&lt;/p&gt;
&lt;h2 id="fpdf_list_start"&gt;FPDF_list_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_list_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;enum&lt;/span&gt; &lt;span class="n"&gt;FPDF_LIST_STYLE&lt;/span&gt; &lt;span class="n"&gt;style&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_14"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a list. This function corresponds to the HTML tag ol or ul. To start a list item, use FPDF_listitem_start().&lt;/p&gt;
&lt;h4 id="parameters_13"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;style&lt;/em&gt; - One of the following values: &lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;enum FPDF_LIST_STYLE&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Description&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;FPDF_LIST_STYLE_NUMBERS&lt;/td&gt;
&lt;td&gt;Numbered list (ol)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;FPDF_LIST_STYLE_BULLETS&lt;/td&gt;
&lt;td&gt;List with bullets (ul)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h4 id="see-also_12"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_list_end()&lt;/p&gt;
&lt;h2 id="fpdf_list_end"&gt;FPDF_list_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_list_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_15"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a list. This function corresponds to the HTML tag \ol or \ul.&lt;/p&gt;
&lt;h4 id="parameters_14"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_13"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_list_start()&lt;/p&gt;
&lt;h2 id="fpdf_listitem_start"&gt;FPDF_listitem_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_listitem_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_16"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a list item. This function corresponds to the HTML tag li.&lt;/p&gt;
&lt;h4 id="parameters_15"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_14"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_listitem_end()&lt;/p&gt;
&lt;h2 id="fpdf_listitem_end"&gt;FPDF_listitem_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_listitem_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_17"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a list item. This function corresponds to the HTML tag \li.&lt;/p&gt;
&lt;h4 id="parameters_16"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_15"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_listitem_start()&lt;/p&gt;
&lt;h2 id="fpdf_blockquote_start"&gt;FPDF_blockquote_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_blockquote_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_18"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a inserted section. This function corresponds to the HTML tag blockquote.&lt;/p&gt;
&lt;h4 id="parameters_17"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_16"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_blockquote_end()&lt;/p&gt;
&lt;h2 id="fpdf_blockquote_end"&gt;FPDF_blockquote_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_blockquote_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_19"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a inserted section. This function corresponds to the HTML tag \blockquote.&lt;/p&gt;
&lt;h4 id="parameters_18"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_17"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_blockquote_start()&lt;/p&gt;
&lt;h2 id="fpdf_paragraph_start"&gt;FPDF_paragraph_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_paragraph_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_20"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a paragraph. This function corresponds to the HTML tag p.&lt;/p&gt;
&lt;h4 id="parameters_19"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_18"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_paragraph_end()&lt;/p&gt;
&lt;h2 id="fpdf_paragraph_end"&gt;FPDF_paragraph_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_paragraph_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_21"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a paragraph. This function corresponds to the HTML tag /p.&lt;/p&gt;
&lt;h4 id="parameters_20"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_19"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_paragraph_start()&lt;/p&gt;
&lt;h2 id="fpdf_pre_start"&gt;FPDF_pre_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_pre_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_22"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a pre formatted section. This function corresponds to the HTML tag pre.&lt;/p&gt;
&lt;h4 id="parameters_21"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_20"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_pre_end()&lt;/p&gt;
&lt;h2 id="fpdf_pre_end"&gt;FPDF_pre_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_pre_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_23"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a pre formatted section. This function corresponds to the HTML tag \pre.&lt;/p&gt;
&lt;h4 id="parameters_22"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_21"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_pre_start()&lt;/p&gt;
&lt;h2 id="fpdf_out"&gt;FPDF_out()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_out&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="kt"&gt;char&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_24"&gt;Description&lt;/h4&gt;
&lt;p&gt;Write some text into the PDF file.&lt;/p&gt;
&lt;h4 id="parameters_23"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;br /&gt;
&lt;em&gt;text&lt;/em&gt; - Text to be written.&lt;/p&gt;
&lt;h2 id="fpdf_out2"&gt;FPDF_out2()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_out2&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="kt"&gt;char&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;length&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_25"&gt;Description&lt;/h4&gt;
&lt;p&gt;Write some text into the PDF file.&lt;/p&gt;
&lt;h4 id="parameters_24"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;br /&gt;
&lt;em&gt;text&lt;/em&gt; - Text to be written.&lt;br /&gt;
&lt;em&gt;length&lt;/em&gt; - Length of the text to be written.&lt;/p&gt;
&lt;h2 id="fpdf_table_start"&gt;FPDF_table_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_table_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;widths&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;count&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_26"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a table. This function corresponds to the HTML tag table.&lt;/p&gt;
&lt;h4 id="parameters_25"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;widths&lt;/em&gt; - List with the column widths in % or NULL. If &lt;em&gt;widths&lt;/em&gt; is NULL all columns have the same width.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;count&lt;/em&gt; - Number of entries in &lt;em&gt;widths&lt;/em&gt;. If &lt;em&gt;widths&lt;/em&gt; is NULL, &lt;em&gt;count&lt;/em&gt; is ignored.&lt;/p&gt;
&lt;h4 id="see-also_22"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_table_end()&lt;/p&gt;
&lt;h2 id="fpdf_table_end"&gt;FPDF_table_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_table_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_27"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a table. This function corresponds to the HTML tag /table.&lt;/p&gt;
&lt;h4 id="parameters_26"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_23"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_table_start()&lt;/p&gt;
&lt;h2 id="fpdf_table_row_start"&gt;FPDF_table_row_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_table_row_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_28"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a row. This function corresponds to the HTML tag tr.&lt;/p&gt;
&lt;h4 id="parameters_27"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_24"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_table_row_end()&lt;/p&gt;
&lt;h2 id="fpdf_table_row_end"&gt;FPDF_table_row_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_table_row_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_29"&gt;Description&lt;/h4&gt;
&lt;p&gt;End a row. This function corresponds to the HTML tag /tr.&lt;/p&gt;
&lt;h4 id="parameters_28"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_25"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_table_row_start()&lt;/p&gt;
&lt;h2 id="fpdf_table_cell_start"&gt;FPDF_table_cell_start()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_table_cell_start&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_30"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a cell. This function corresponds to the HTML tag td.&lt;/p&gt;
&lt;h4 id="parameters_29"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_26"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_table_cell_end()&lt;/p&gt;
&lt;h2 id="fpdf_table_cell_end"&gt;FPDF_table_cell_end()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_table_cell_end&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_31"&gt;Description&lt;/h4&gt;
&lt;p&gt;Start a cell. This function corresponds to the HTML tag /td.&lt;/p&gt;
&lt;h4 id="parameters_30"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;h4 id="see-also_27"&gt;See also&lt;/h4&gt;
&lt;p&gt;FPDF_table_cell_start()&lt;/p&gt;
&lt;h2 id="fpdf_header"&gt;FPDF_header()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_header&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="kt"&gt;char&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;titel&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;const&lt;/span&gt; &lt;span class="kt"&gt;char&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;image&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_32"&gt;Description&lt;/h4&gt;
&lt;p&gt;Add a titel and an image to each page. This function must be called after FPDF_render().&lt;/p&gt;
&lt;h4 id="parameters_31"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;titel&lt;/em&gt; - Document titel&lt;/p&gt;
&lt;p&gt;&lt;em&gt;image&lt;/em&gt; - Path to a PNG image or NULL.&lt;/p&gt;
&lt;h2 id="fpdf_footer"&gt;FPDF_footer()&lt;/h2&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="kt"&gt;void&lt;/span&gt; &lt;span class="n"&gt;FPDF_footer&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;FPDF_WRITER&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;doc&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;h4 id="description_33"&gt;Description&lt;/h4&gt;
&lt;p&gt;Add a page numbers to each page. This function must be called after FPDF_render().&lt;/p&gt;
&lt;h4 id="parameters_32"&gt;Parameters&lt;/h4&gt;
&lt;p&gt;&lt;em&gt;doc&lt;/em&gt; - The handle of a document object.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Zwirner</dc:creator><pubDate>Sun, 20 Oct 2013 20:07:14 -0000</pubDate><guid>https://sourceforge.netdecb4cd1aab30dfc6012c9328231f046fde30af2</guid></item><item><title>Home modified by Daniel Zwirner</title><link>https://sourceforge.net/p/libpdfflow/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/libpdfflow/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/danielzwirner/"&gt;Daniel Zwirner&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-525a6826d46bb43e3eb69f2f" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Daniel Zwirner</dc:creator><pubDate>Sun, 13 Oct 2013 09:30:14 -0000</pubDate><guid>https://sourceforge.net359279c82293f0f1dbf1c0a5b8a08e7101c2246b</guid></item></channel></rss>