File: main.fd

package info (click to toggle)
falconpl 0.9.6.9-git20120606-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 46,176 kB
  • sloc: cpp: 181,389; ansic: 109,025; yacc: 2,310; xml: 1,218; sh: 403; objc: 245; makefile: 82; sql: 20
file content (45 lines) | stat: -rw-r--r-- 1,543 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*#
  @module hpdf Binding for libHaru, a pdf creation library.
  
  libHaru is a free, cross platform, open source library for generating PDF files. 
  
  @section hpdf_overview Overview
  
  The basic entities libHaru provides you with to create a pdf document are:
  <ul>
    <li> Text </li>
    <li> Images </li>
    <li> Lines and curves </li>
    <li> Outlines:
       A list of nodes that outline the structuer of a document.  They
       can have a destionation set to them, so they act as links to
       i.e. chapter titles.  A table of contents is an example for an outline. 
    </li>
    <li> Annotations:
       <ul> 
         <li> Text annotations ( sticky notes ) </li>
         <li> Link annotations ( a hyperlink to a destination in the current doc ) </li>
         <li> URI link annotations ( a hyperlink to a web page ) </li>
       </ul> 
    </li>
    <li> Destinations:
       A view to a page that is displayed if
       <ul>
         <li> An link annotation that is associatd with it is clicked </li>
         <li> An outline item ( i.e. table of contents ) that is associated 
              with it is clicked. </li>
       </ul>
     </li>
  </ul>

  Related to @b text are
    - Fonts and font-size
    - Encoding
  Encoding is a strong feature in libHaru.  It supports Korian,
  Japanese and Chinese encoding sets.
  @note The encoding support in the falcon module is weak due to my
  lack of expertise.  But I will catch up eventually :)

  The @a hpdf_tutorial will show you how to create pdfs right away.
  
*/