Formalismos. Departamento -> Carrera.
[CLab.git] / include / dompdf / HACKING
blobc34499da694d828aeb22aeefdb53aa9d6173f21f
1 dompdf - PHP5 HTML to PDF converter
2 ===================================
4 http://www.digitaljunkies.ca/dompdf
5 Copyright (c) 2004 Benj Carson
6 R&OS PDF class (class.pdf.php) Copyright (c) 2001-04 Wayne Munro
8 Send bug reports, patches, feature requests, complaints & hate mail (no spam
9 thanks) to <benjcarson@digitaljunkies.ca>
11 Hacking
12 -------
14 If you are interested in extending or modifying dompdf, please feel free to
15 contact me (Benj Carson) by email at benjcarson@digitaljunkies.ca.  If you
16 let me know what you'd like to try, I can maybe point you to the relevant
17 sections of the source.  If you've added some features, or fixed some bugs,
18 please send me a patch and I'll include your changes in the main
19 distribution.
21 For starters, I can point out some of the OO design patterns used in dompdf:
22   
23   Pattern      Classes
24   -------      -------
25   composite    Frame
26   decorator    Frame_Decorator, *_Frame_Decorator classes
27   strategy     Frame_Reflower, *_Frame_Reflower classes, Positioner,
28                *_Positioner classes
29   facade       dompdf
30   adapter      CPDF_Adapter, PDFLib_Adapter
32 Also, see the main doc comment in dompdf.cls.php for a general overview of 
33 the rendering process.