forked from rospdf/pdf-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.txt
1206 lines (871 loc) · 55.3 KB
/
data.txt
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# this is the text which will end up within readme.pdf, when processed
# by readme.php.
#
# the syntax being used is fairly obvious:
#
# a line starting with '#' is a comment or a directive
# 1<title> is a first level heading (text is 'title')
# 2<heading> is a second level heading (text is 'heading')
#
# the table of contents is automatically generated from the titles and headings.
#
# "#NP" starts a new page
# "#C" starts a code section (put this on a line by itself
# "#c" end the code section
# "#X" and "#x" surround a block which will be executed as php code.
#
# <b></b> <i></i> can be used within the text with gleeful abandon
#
# a link can be added within the text using <c:alink:url_here>label</c:alink>
1<Introduction>
This class is designed to provide a <b>non-module</b>, non-commercial alternative to dynamically creating pdf documents from within PHP. Obviously this will not be quite as quick as the module alternatives, but it is surprisingly fast, this demonstration page is almost a worst case due to the large number of fonts which are displayed. There are a number of features which can be within a Pdf document that it is not at the moment possible to use with this class, but I feel that it is useful enough to be released.
This document describes the possible useful calls to the class, the readme.php file (which will create this pdf) should be sufficient as an introduction.
Note that this document was generated using the demo script 'readme.php' which came with this package.
1<Changelog>
3<0.12.31>
- fixed issue #44 by using min font width (fontBBox)
- recovered lines from issue #52
3<0.12.30>
- added setColorCMYK and setStrokeColorCMYK from issue #53
- added setHexColor and setStrokeHexColor as well from issue #53
3<0.12.29>
- fixed "Undefined offset" when lsbls is empty in TTF.php
- PR #47 - Fixes potential PHP notice in Cpdf->uniord()
3<0.12.28>
- fixed issue #45
3<0.12.27>
- PR #42 - added new table features: evenColumns, text color, background color
- fixed issue #43 - maxWidth is not defined by default
- no need to define 'showBgCol' when using column background
- slightly optimized max column width calculation
3<0.12.26>
- fixed deprecated constructor calls (PHP7 compatibility)
- fixed space counting issue in full justification
- fixed underline on justification full and unicode
3<0.12.25>
- significant changes in getDirectives() method
- possible fixes in justification when using html tags
3<0.12.24>
- fixed reported issue #38
- fixed afm font resources (Helvetica, Courier and Times Roman)
3<0.12.23>
- fixed reported issue #36 Text truncated while wrapping
Please refer to https://github.com/rospdf/pdf-php for all previous changes
#NP
1<Use>
It is free for use for any purpose (public domain), though we would prefer it if you retain the notes at the top of the class containing the authorship, and feedback details.
Note that there is no guarantee or warranty, implied or otherwise with this class, or the extension.
1<Extensions>
In order to create simple documents with ease a class extension called 'ezPdf' has been developed, at the moment this includes auto page numbering, tabular data presentation, text wrapping to new pages, etc. This document has been created using mostly ezPdf functions.
The functions of ezpdf are described in the next section, though as it is a class extension, all of the basic functions from the original class are still available.
#NP
1<EZPDF Class Extension>
(note that the creation of this document in readme.php was converted to ezpdf with the saving of many lines of code).
It is anticipated that in practise only the simplest of documents will be able to be created using just ezpdf functions, they should be used in conjunction with the base class functions to achieve the desired result.
2<Cezpdf> ([paper='a4'],[orientation='portrait'],[type='none'],[options=array()])
This is the constructor function, and allows the user to set up a basic page without having to know exactly how many units across and up the page is going to be.
Valid values for paper are listed below, a two or four member array can also be passed, a two member array will be interpreted as the size of the page in centimeters, and a four member array will be the size of the page in points, similar to the call to the base calss constructor function.
Starting ezpdf with the code below will create an a4 portrait document.
<b>$paper</b> The valid values for the paper (thanks to the work of Nicola Asuni) are:
'4A0', '2A0', 'A0', 'A1', 'A2', 'A3', 'A4', 'A5', 'A6' , 'A7', 'A8', 'A9', 'A10', 'B0', 'B1', 'B2', 'B3', 'B4', 'B5', 'B6', 'B7', 'B8', 'B9', 'B10', 'C0', 'C1', 'C2' , 'C3', 'C4' , 'C5', 'C6', 'C7', 'C8', 'C9', 'C10' , 'RA0', 'RA1', 'RA2', 'RA3', 'RA4', 'SRA0', 'SRA1', 'SRA2', 'SRA3', 'SRA4', 'LETTER', 'LEGAL', 'EXECUTIVE', 'FOLIO'
<b>$orientation</b> 'portrait' and 'landscape' can be used
<b>$type</b> following types are possible: 'none' | 'color' | 'image'
<b>$options</b> if type is diffent then 'none' $options can be set as follows
if $type is set to 'color'
$options['r'] = red-component of backgroundcolour ( 0 <= r <= 1)
$options['g'] = green-component of backgroundcolour ( 0 <= g <= 1)
$options['b'] = blue-component of backgroundcolour ( 0 <= b <= 1)
if $type is set to 'image' then the $options array has other attributes
$options['img'] = location of image file; URI's are allowed if allow_url_open is enabled
$options['width'] = width of background image; default is width of page
$options['height'] = height of background image; default is height of page
$options['xpos'] = horizontal position of background image; default is 0
$options['ypos'] = vertical position of background image; default is 0
$options['repeat'] = repeat image horizontally (1), repeat image vertically (2) or full in both directions (3); default is 0
highly recommend to set this->hashed to true when using repeat function
This document shows you the 'color' type with following:
#C
$pdf = new Cezpdf('a4','portrait','color',array(0.8,0.8,0.8));
#c
If you want to get started in an easy manner, then here is the 'hello world' program:
#C
<?php
include ('class.ezpdf.php');
$pdf = new Cezpdf();
$pdf->selectFont('Helvetica');
$pdf->ezText('Hello World!',50);
$pdf->ezStream();
?>
#c
2<ezSetMargins> (top,bottom,left,right)
Sets the margins for the document, this command is optional and they will all be set to 30 by default. Setting these margins does not stop you writing outside them using the base class functions, but the ezpdf functions will wrap onto a new page when they hit the bottom margin, and will not write over the side margins when using the <b>ezText</b> command below.
2<ezSetCmMargins> (top,bottom,left,right)
Sets the margins for the document using centimeters
2<ezNewPage> ()
Starts a new page. This is subtly different to the newPage command in the base class as it also places the ezpdf writing pointer back to the top of the page. So if you are using the ezpdf text functions, then this is the one to use when manually requesting a new page.
2<ezColumnsStart> ([options])
This will start the text flowing into columns, <i>options</i> is an array which contains the control options.
The options are:
'gap' => the gap between the columns
'num' => the number of columns.
Both options (and the array itself) are optional, if missed out then the defaults are gap=10, num=2;
Example calls could be (you would use only one of these):
#C
$pdf->ezColumnsStart();
$pdf->ezColumnsStart(array('num'=>3));
$pdf->ezColumnsStart(array('num'=>3,'gap'=>2));
$pdf->ezColumnsStart(array('gap'=>20));
#c
<i>ezColumnStop</i> is used to stop multi-column mode.
2<ezColumnsStop>
This stops multi-column mode, it will leave the writing point at whatever level it was at, it is recommended that an ezNewPage() command is executed straight after this command, but for flexibility this is left up to the individual consumer.
2<ezInsertMode> ([status=1,$pageNum=1,$pos='before'])
This command can be used to stop and start page insert mode, while this mode is on then any new page will be inserted into the midst of the document. If it is called with status=1, then insert mode is started and subsequent pages are added before or after page number 'pageNum'. 'pos' can be set to 'before' or 'after' to define where the pages are put. The 'pageNum' is set to which page number this position is relative to.
All subsequent pages added with ezNewPage are then inserted within the document following the last inserted page.
Insertion page is ended by calling this command with 'status'=0, and further pages are added to the end of the document.
2<ezSetY> (y)
Positions the ezpdf writing pointer to a particular height on the page, don't forget that pdf documents have <b>y-coordinates which are zero at the bottom of the page and increase as they go up</b> the page.
2<ezSetDy> (dy [,mod])
Changes the vertical position of the writing point by a set amount, so to move the pointer 10 units down the page (making a gap in the writing), use:
#C
ezSetDy(-10)
#c
If this movement makes the writing location below the bottom margin, then a new page will automatically be made, and the pointer moved to the top of it.
The optional parameter 'mod' can be set to the value 'makeSpace', which means that if a new page is forced, then the pointer will be moved the distance 'dy' on the new page as well. The intention of this is if you needed 100 units of space to draw a picture, then doing:
#C
ezSetDy(-100,'makeSpace')
#c
guarantees that there will be 100 units of space above the final writing point.
2<ezStartPageNumbers> (x,y,size,[pos],[pattern],[num]) = setNum
Add page numbers on the pages from here, place then on the 'pos' side of the coordinates (x,y) (pos can be 'left' or 'right').
Use the given 'pattern' for display, where {PAGENUM} and {TOTALPAGENUM} are replaced as required, by default the pattern is set to '{PAGENUM} of {TOTALPAGENUM}'
If $num is set, then make the first page this number, the number of total pages will be adjusted to account for this.
the following code produces a seven page document, numbered from the second page (which will be labelled '1 of 6'), and numbered until the 6th page (labelled '5 of 6')
#C
$pdf = new Cezpdf();
$pdf->selectFont('Helvetica');
$pdf->ezNewPage();
$pdf->ezStartPageNumbers(300,500,20,'','',1);
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->line(300,400,300,600); // line drawn to check 'pos' is working
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezStopPageNumbers();
$pdf->ezStream();
#c
This function was modified in version 009 to return a page numbering set number (setNum in the call above), this allows independent numbering schemes to be started and stopped within a single document. This number is passed back into <i>ezStopPageNumbers</i> when it is called.
Here is a more complex example:
#C
$pdf->selectFont('Helvetica');
$pdf->ezNewPage();
$i=$pdf->ezStartPageNumbers(300,500,20,'','',1);
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezStopPageNumbers(1,1,$i);
$pdf->ezNewPage();
$i=$pdf->ezStartPageNumbers(300,500,20,'','',1);
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezStopPageNumbers(1,1,$i);
$pdf->ezNewPage();
$i=$pdf->ezStartPageNumbers(300,500,20,'','',1);
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->setColor(1,0,0);
$pdf->ezNewPage();
$pdf->ezStopPageNumbers(1,1,$i);
$pdf->ezNewPage();
$i=$pdf->ezStartPageNumbers(300,500,20,'','',1);
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezNewPage();
$j=$pdf->ezStartPageNumbers(300,400,20,'','',1);
$k=$pdf->ezStartPageNumbers(300,300,20,'','',1);
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezStopPageNumbers(1,1,$i);
$pdf->ezNewPage();
$pdf->ezNewPage();
$pdf->ezStopPageNumbers(1,1,$j);
$pdf->ezStopPageNumbers(0,1,$k);
$pdf->ezNewPage();
$pdf->ezNewPage();
#c
This will create a document with 23 pages, the numbering shown on each of the pages is:
#X
$array = array(
array('p'=>1,'c'=>'blank')
,array('p'=>2,'c'=>'1 of 3')
,array('p'=>3,'c'=>'2 of 3')
,array('p'=>4,'c'=>'3 of 3')
,array('p'=>5,'c'=>'1 of 3')
,array('p'=>6,'c'=>'2 of 3')
,array('p'=>7,'c'=>'3 of 3')
,array('p'=>8,'c'=>'1 of 3')
,array('p'=>9,'c'=>'2 of 3')
,array('p'=>10,'c'=>'3 of 3')
,array('p'=>11,'c'=>'4 of 4')
,array('p'=>12,'c'=>'1 of 8')
,array('p'=>13,'c'=>'2 of 8')
,array('p'=>14,'c'=>'3 of 8')
,array('p'=>15,'c'=>'4 of 8')
,array('p'=>16,'c'=>'5 of 8, 1 of 6, 1 of 8')
,array('p'=>17,'c'=>'6 of 8, 2 of 6, 2 of 8')
,array('p'=>18,'c'=>'7 of 8, 3 of 6, 3 of 8')
,array('p'=>19,'c'=>'8 of 8, 4 of 6, 4 of 8')
,array('p'=>20,'c'=>'5 of 6, 5 of 8')
,array('p'=>21,'c'=>'6 of 6, 6 of 8')
,array('p'=>22,'c'=>'blank')
,array('p'=>23,'c'=>'blank')
);
$pdf->ezTable($array,array('p'=>'page','c'=>'contents'));
#x
2<ezWhatPageNumber> (pageNum,[setNum]) = num
Returns the number of a page within the specified page numbering system.
'pageNum' => the absolute number of the page within the document (this is based on the order that they are created).
'setNum' => the page numbering set, returned from the <i>ezStartPageNumbers</i> command.
2<ezGetCurrentPageNumber>
return the page number of the current page
2<ezStopPageNumbers> ([stopTotal],[next],[setNum])
In version 009 this function was enhanced to include a number of extra parameters:
'stopTotal' => 0 or 1 (default 0), stops the totaling for the page numbering set. So for example if you start numbering a 10 page document on the second page, and stop it on the 4th page, with stopTotal set to 1, then the numbers will be reported as "x of 3".
'next' => 0 or 1, stops on the next page, not this one.
'setNum' => (defaults to 0) define which set number is to be stopped, this is the number returned from the <i>ezStartPageNumbers</i> command.
2<ezTable> (array data,[array cols],[title],[array options]) = y
<b>$data</b> The easy way to throw a table of information onto the page, can be used with just the data variable, which must contain a two dimensional array of data. This function was made with data extracted from database queries in mind, so is expecting it in that format, a two dimensional array with the first array having one entry for each row (and each of those is another array).
The table will start writing from the current writing point, and will proceed until the all the data has been presented, by default, borders will be drawn, alternate limes will be shaded gray, and the table will wrap over pages, re-printing the headers at the top of each page.
The return value from the function is the y-position of the writing pointer after the table has been added to the document.
<strong>since 0.12.27 $data can contain the follow keys to colorize cells</strong>
#C
'[columnName]Fill' => array(r,g,b) // used to fill a cell background color
'[columnName]Color' => array(r,g,b) // used to color the cell text
#c
The other options are described here below
<b>$cols</b> (optional) is an associative array, the keys are the names of the columns from $data to be presented (and in that order), the values are the titles to be given to the columns, if this is not wanted, but you do want later options then '' (the empty string) is a suitable placeholder.
<b>$title</b> (optional) is the title to be put on the top of the table
<b>$options</b> is an associative array which can contain:
'showHeadings' => 0 or 1 (enable or disable head line)
'shaded'=> 0,1,2, default is 1 (alternate lines are shaded)
0->no shading, 2->both sets are shaded
'shadeCol' => (r,g,b) array, defining the colour of the shading, default is (0.8,0.8,0.8)
'shadeCol2' => (r,g,b) array, defining the colour of the shading of the second set, default is (0.7,0.7,0.7), used when 'shaded' is set to 2.
'fontSize' => 10
'textCol' => (r,g,b) array, text colour
'titleFontSize' => 12
'rowGap' => 2 , the space between the text and the row lines on each row
'colGap' => 5 , the space between the text and the column lines in each column
'lineCol' => (r,g,b) array, defining the colour of the lines, default, black.
'xPos' => 'left','right','center','centre',or coordinate, reference coordinate in the x-direction
'xOrientation' => 'left','right','center','centre', position of the table w.r.t 'xPos'. This entry is to be used in conjunction with 'xPos' to give control over the lateral position of the table.
'width' => <number>, the exact width of the table, the cell widths will be adjusted to give the table this width.
'maxWidth' => <number>, the maximum width of the table, the cell widths will only be adjusted if the table width is going to be greater than this.
'cols' => array(<colname>=> array('justification'=>'left', 'width'=>100, 'link'=><linkColName>, 'bgcolor'=> (r,g,b)), <colname>=>....) allow the setting of other paramaters for the individual columns, each column can have its width and/or its justification set.
'innerLineThickness' => <number>, the thickness of the inner lines, defaults to 1
'outerLineThickness' => <number>, the thickness of the outer lines, defaults to 1
'protectRows' => <number>, the number of rows to keep with the heading, if there are less than this on a page, then all is moved to the next page.
'nextPageY'=> true or false (eg. 0 or 1) Sets the same Y position of the table for all future pages
<b>0.12.9:</b>
'shadeHeadingCol'=>(r,g,b) array, defining the backgound color of headings, default is empty
<b>0.12.11:</b>
'gridlines'=> EZ_GRIDLINE_* default is EZ_GRIDLINE_DEFAULT, overrides 'showLines' to provide finer control
'alignHeadings' => 'left','right','center'
<b>0.12.27:</b>
'evenColumns' => 0,1 make all column width the same size
Below is an example output of ezTable containing the following $data
#C
$data = array(
array('num'=>1,'name'=>'gandalf','type'=>'wizard')
,array('num'=>2,'name'=>'bilbo','type'=>'hobbit','url'=>'https://github.com/rospdf/pdf-php')
,array('num'=>3,'name'=>'frodo','type'=>'hobbit')
,array('num'=>4,'name'=>'saruman','type'=>'bad dude','url'=>'https://github.com/rospdf/pdf-php')
,array('num'=>5,'name'=>'sauron','type'=>'really bad dude')
);
#c
#C
$pdf->ezTable($data,$cols,'',array(
'gridlines'=> EZ_GRIDLINE_DEFAULT,
'shadeHeadingCol'=>array(0.6,0.6,0.5),
'width'=>400,
'cols'=> array(
'name'=>array('bgcolor'=>array(0.9,0.9,0.7)),
'type'=>array('bgcolor'=>array(0.6,0.4,0.2))
)
));
#c
#X
$data = array(
array('num'=>1,'name'=>'gandalf','type'=>'wizard')
,array('num'=>2,'name'=>'bilbo','type'=>'hobbit','url'=>'https://github.com/rospdf/pdf-php')
,array('num'=>3,'name'=>'frodo','type'=>'hobbit')
,array('num'=>4,'name'=>'saruman','type'=>'bad dude','url'=>'https://github.com/rospdf/pdf-php')
,array('num'=>5,'name'=>'sauron','type'=>'really bad dude')
);
$cols = array('num'=>"<b>Number</b>",'name'=>'<b>Name</b>','type'=>'<b>Type</b>');
$pdf->ezTable($data,$cols,'',array(
'gridlines'=> EZ_GRIDLINE_DEFAULT,
'shadeHeadingCol'=>array(0.6,0.6,0.5),
'alignHeadings'=>'center',
'width'=>400,
'cols'=> array(
'name'=>array('bgcolor'=>array(0.9,0.9,0.7)),
'type'=>array('bgcolor'=>array(0.6,0.4,0.2))
)
));
#x
<b>Please refer to examples/tables.php for more demos</b>
2<ezText> (text,[size],[array options]) = y
This is designed for putting blocks of text onto the page. It will add a string of text to the document (note that the string can be very large, spanning multiple pages), starting at the current drawing position. It will wrap to keep within the margins, including optional offsets from the left and the right, if $size is not specified, then it will be the last one used, or the default value (12 I think). The text will go to the start of the next line when a return code "\n" is found.
The return value from the function (y) is the vertical position on the page of the writing pointer, after the text has been added.
possible options are:
'left'=> number, gap to leave from the left margin
'right'=> number, gap to leave from the right margin
'aleft'=> number, absolute left position (overrides 'left')
'aright'=> number, absolute right position (overrides 'right')
'justification' => 'left','right','center','centre','full'
only set one of the next two items (leading overrides spacing)
'leading' => number, defines the total height taken by the line, independent of the font height.
'spacing' => a real number, though usually set to one of 1, 1.5, 2 (line spacing as used in word processing)
This function now supports the use of underlining markers (<u> </u>), these are implemented via a callback function, which is information that you need only of you want to use them in functions in the base class, as these markers will not work there and the full callback function markers wil have to be used (though note that ezPdf stillhas to be part of the class object as the callback function are included with that code base. The callback function markers would look like <c:uline>this</c:uline>.
2<ezImage> (image,[padding],[width],[resize],[justification], [angle],[array border])
This function makes it much easier to simply place an image (either jpeg or png) within the flow of text within a document. Although this function can certainly be used with full page documents, its functionality is most suited to documents that are formatted in multiple columns.
This function can be used by simply supplying the name of an image file as the first argument. The image will be resized to fit centered within the current column with the default padding of 5 on each side.
The arguments are:
<b>$image</b> is a string containing the filename and path of the jpeg or png image you want to insert into the page. If allow_url_fopen is enabled in the PHP ini settings this can be an HTTP or FTP URL.
<b>$padding</b> (optional) is the number of page units that will pad the image on all sides. The default is five (5). If you do not want any padding, you may enter 0.
<b>$width</b> (optional) is the width of the image on the page. The default is to use the actual width of the image in pixels. Whether or not you specify a width, the actual width of the image on the page will depend on what you enter for the $resize argument as well as the placement of the image on the page.
<b>$resize</b> (optional) can be one of 'full', 'width', or 'none'. The default value is 'full'.
The value 'none' means that an image will not be sized up to fit the width of a column and will not be sized down vertically to fit within the current page. If the image is too long to fit on the page it will be placed on the next page or column. If the image is too wide to fit within the current column, it will still be sized down. This is because there is no alternative, other than to actually let the image run off the page.
The value 'width' behaves the same as 'none' with the exception that images will be resized to fit the width of the current column if the given width is smaller that the current column (minus the padding).
The value 'full' behaves the same as 'width' with the exception that images will be resized down vertically to fit within the current page and column if their height is too long to fit.
<b>$justification</b> (optional) determines the horizontal position of the image within the current column. The default is 'center', and can be specified as either 'center', 'left', or 'right'. This setting has little meaning if the image has been resized to fit the column and only makes a practical difference if the width of the image is smaller than the width of the column.
<b>$angle</b> (optional) allows you the rotate the image
<b>$border</b> (optional) is an array which specifies the details of the border around the image. The default is no border if this argument is not given. You may specify any of the following border elements:
$border['width'] is the width of the border. The default is 1.
$border['cap'] is the cap type as specified in setLineStyle. The default is 'round'.
$border['join'] is the join type as specified in setLineStyle. The default is 'round'.
$border['color'] is an associative array for specifying the line color of the border.
The values are as specified in setStrokeColor and should be assigned to:
$border['color']['red'], $border['color']['green'] and $border['color']['blue'] respectively.
2<ezOutput> ([debug])
Very similar to the output function from the base class, but performs any closing tasks that ezpdf requires, such as adding the page numbers.
If you are using ezpdf, then you should use this function, rather than the one from the base class.
2<ezStream> ([options])
Very similar to the stream function from the base class (all the same options, see later in this document), but performs any closing tasks that ezpdf requires, such as adding the page numbers.
If you are using ezpdf, then you should use this function, rather than the one from the base class.
2<Inline codes>
There are a few callback functions (see callback functions) which are contained within the ezPdf class, these are intended to make life easier. They enable complex operations to be done by including codes within the text stream.
<b>Underline</b>
Though underlining is supported in the ezPdf class by using the <u> directive,
if you use the base class functions to add text (such as addtext) then this wont work, instead you can use the <i>uline</i> callback function.
(Note that what the ezPdf class does internally is convert the <u> and </u> directives into callback function calls)
So as an example, this code adds some text with two pieces of underlining, one done each way
#C
$pdf->ezText('The <u>quick brown</u> fox, <c:uline>is sick of jumping</uline> the lazy dog')
#c
The <u>quick brown</u> fox, is <c:uline>sick of jumping</c:uline> the lazy dog
<b>Links to URLs</b>
If you are adding links to a document, it is quite tricky to figure out where to put the rectange which will be clckable, especially if the text in teh link starts wrapping across pages, etc.
The <i>alink</i> callback allows for simple insertion of links, the format is:
<c:alink:<i>your_url_here</i>>text to be clickable</c:alink>
So as an example:
#C
$pdf->ezText('<c:alink:https://github.com/rospdf/pdf-php/ pdf class</c:alink>');
#c
<c:alink:https://github.com/rospdf/pdf-php/>R&OS pdf class</c:alink>
<b>Links within the document</b>
There is a directive similar to <i>alink</i>, but designed for linking within the document, this is the <i>ilink</i> callback function.
It is similar to <i>alink</i> except that instead of providing a URL the label of a pre-created destination should be used.
<c:ilink:<i>destination_label</i>>text to be clickable</c:ilink>
#C
// place required to be marked
$pdf->addDestination('xxxyyyzzz','Fit');
// add lots of stuff, new pages etc, then...
$pdf->ezText('<c:ilink:xxxyyyzzz>R&OS pdf class</c:ilink>');
#c
Click here to go to the <c:ilink:toc5>5th item</c:ilink> on the table of contents.
Note that the code for the example and the actual one shown are not identical for technical reasons.
#NP
1<Base Class Functions>
2<addText> (x,y,size,text[,width=0][,justification='left'][,angle=0][,wordSpaceAdjust=0][,test=0)
Add the text at a particular location on the page, noting that the origin on the axes in a pdf document is in the lower left corner by default.
An angle can be supplied as this will do the obvious (in degrees).
'adjust', gives the value of units to be added to the width of each space within the text. This is used mainly to support the justification options within the ezpdf ezText function.
The text stream can now (version 006) contain directives to make the text bold and/or italic. The directives are similar the basic html:
<b><b>bold text</b></b>
<i><i>italic text</i></i>
<b><i><b><i>bold italic text</i></b><i></b>
<b>Note</b> that there can be no spaces within the directives, and that they must be in lower case.
Especially <b>bold</b> and <i>italic</i> requires the style of the font being used
If you wish to print an actual '<', most of the time it would cause no problem, except in the instance where it would form a directive. Use HTML special char &lt; and &gt;
#C
$pdf->addText(150,$y,10,"the quick brown fox <b>jumps</b> <i>over</i> the lazy dog!",0, 'left',-10);
#c
#X
$pdf->ezSetDy(-40,'makeSpace');
$pdf->addText(150,$pdf->y,10,"the quick brown fox <b>jumps</b> <i>over</i> the lazy dog!",0, 'left',-10);
$pdf->ezSetDy(-5);
#x
2<setColor> (r,g,b,[force=0])
Set the fill colour to the r,g,b triplet, each in the range 0->1.
If force is set, then the entry will be forced into the pdf file, otherwise it will only be put in if it is different from the current state.
2<setStrokeColor> (r,g,b,[force=0])
Set the stroke color, see the notes for the fill color.
2<setLineStyle> ([width],[cap],[join],[dash],[phase])
This sets the line drawing style.
width, is the thickness of the line in user units
cap is the type of cap to put on the line, values can be 'butt','round','square' where the difference between 'square' and 'butt' is that 'square' projects a flat end past the end of the line.
join can be 'miter', 'round', 'bevel'
dash is an array which sets the dash pattern, is a series of length values, which are the lengths of the on and off dashes.
for example: (2) represents 2 on, 2 off, 2 on , 2 off ...
(2,1) is 2 on, 1 off, 2 on, 1 off.. etc
phase is a modifier on the dash pattern which is used to shift the point at which the pattern starts.
#C
$pdf->setLineStyle(1);
#c
#X
$pdf->setLineStyle(1);
$pdf->ezSetDy(-8,'makeSpace');
$pdf->line(100,$pdf->y,400,$pdf->y);
$pdf->ezSetDy(-5);
#x
#C
$pdf->setLineStyle(5);
#c
#X
$pdf->setLineStyle(5);
$pdf->ezSetDy(-8,'makeSpace');
$pdf->line(100,$pdf->y,400,$pdf->y);
$pdf->ezSetDy(-5);
#x
#C
$pdf->setLineStyle(5,'round');
#c
#X
$pdf->setLineStyle(5,'round');
$pdf->ezSetDy(-8,'makeSpace');
$pdf->line(100,$pdf->y,400,$pdf->y);
$pdf->ezSetDy(-5);
#x
#C
$pdf->setLineStyle(5,'','',array(5));
#c
#X
$pdf->setLineStyle(5,'','',array(5));
$pdf->ezSetDy(-8,'makeSpace');
$pdf->line(100,$pdf->y,400,$pdf->y);
$pdf->ezSetDy(-5);
#x
#C
$pdf->setLineStyle(5,'','',array(10,5));
#c
#X
$pdf->setLineStyle(5,'','',array(10,5));
$pdf->ezSetDy(-8,'makeSpace');
$pdf->line(100,$pdf->y,400,$pdf->y);
$pdf->ezSetDy(-5);
#x
#C
$pdf->setLineStyle(5,'','',array(20,5,10,5));
#c
#X
$pdf->setLineStyle(5,'','',array(20,5,10,5));
$pdf->ezSetDy(-8,'makeSpace',4);
$pdf->line(100,$pdf->y,400,$pdf->y);
$pdf->ezSetDy(-5);
#x
#C
$pdf->setLineStyle(5,'round','',array(0,15));
#c
#X
$pdf->setLineStyle(5,'round','',array(0,15));
$pdf->ezSetDy(-8,'makeSpace');
$pdf->line(100,$pdf->y,400,$pdf->y);
$pdf->ezSetDy(-5);
#x
Note that the code shown with each of these lines is just the line style command, the drawing of each line also requires a <b>line</b> command, which is not shown.
2<line> (x1,y1,x2,y2)
Draw a line from (x1,y1) to (x2,y2), set the line width using setLineStyle.
2<curve> (x0,y0,x1,y1,x2,y2,x3,y3)
Draw a Bezier curve. The end points are (x0,y0)->(x3,y3), and the control points are the other two.
Bezier curves are neat, but probably not for the novice. The <b>ellipse</b> command uses a series of Bezier curves to make the ellipse.
The distinctive feature of these curves is that the curve is guaranteed to lie within the 4 sided polygon formed from the 4 control points (they are also computationally easy to draw). An example is shown below with the control points marked.
#C
$pdf->curve(200,$y+40,250,$y+5,350,$y,400,$y+45);
#c
#X
$pdf->ezSetDy(-50,'makeSpace');
$y = $pdf->y;
$pdf->setLineStyle(2);
$pdf->curve(200,$y+40,250,$y+5,350,$y,400,$y+45);
$pdf->setLineStyle(0.5);
$pdf->ellipse(200,$y+40,5);
$pdf->ellipse(250,$y+5,5);
$pdf->ellipse(350,$y,5);
$pdf->ellipse(400,$y+45,5);
$pdf->setLineStyle(0.5,'','',array(10,5));
$pdf->line(200,$y+40,250,$y+5);
$pdf->line(250,$y+5,350,$y);
$pdf->line(350,$y,400,$y+45);
#x
Note that the Bezier curve is a tangent to the line between the control points at either end of the curve.
2<ellipse> (x0,y0,r1,[r2=0],[angle=0],[nSeg=8])
Draw an ellipse, centred ay (x0,y0), with radii (r1,r2), oriented at 'angle' (anti-clockwise), and formed from nSeg bezier curves (the default 8 gives a reasonable approximation to the required shape).
If r2 is left out, or set to zero, then it is assumed that a circle is being drawn.
#C
$pdf->ellipse(300,$y+25,20);
#c
#X
$pdf->ezSetDy(-50,'makeSpace');
$pdf->setLineStyle(2);
$pdf->ellipse(300,$pdf->y+25,20);
#x
#C
$pdf->ellipse(300,$y+25,40,20);
#c
#X
$pdf->ezSetDy(-50,'makeSpace');
$pdf->setLineStyle(2);
$pdf->ellipse(300,$pdf->y+25,40,20);
#x
#C
$pdf->ellipse(300,$y+25,40,20,45);
#c
#X
$pdf->ezSetDy(-50,'makeSpace');
$pdf->setLineStyle(2);
$pdf->ellipse(300,$pdf->y+25,40,20,45);
#x
Of course the previous line style features also apply to these lines
#C
$pdf->setLineStyle(4,'round','',array(0,6,4,6));
$pdf->ellipse(300,$y+25,40,20,45);
#c
#X
$pdf->ezSetDy(-50,'makeSpace');
$pdf->setLineStyle(4,'round','',array(0,6,4,6));
$pdf->ellipse(300,$pdf->y+25,40,20,45);
#x
2<partEllipse> (x,y,a1,a2,r1 [,r2] [,angle] [,nSeg])
Draw a part ellipse (or circle), draw an ellipse centered on (x,y) from angle 'a1' to angle 'a2' (in degrees), with radius 'r1' in the x-direction and 'r2' in the y-direction and oriented at angle 'angle'. If 'r2' is not supplied the it defaults to 'r1' and a circle is formed.
#C
$pdf->ellipse(300,$y+25,38);
$pdf->partEllipse(300,$y+25,119,421,80,12,10);
$pdf->partEllipse(300,$y+25,117,423,84,14,10);
$pdf->partEllipse(300,$y+25,115,425,85,15,10);
#c
#X
$pdf->ezSetDy(-60,'makeSpace');
$pdf->ellipse(300,$pdf->y+25,38);
$pdf->partEllipse(300,$pdf->y+25,119,421,80,12,10);
$pdf->partEllipse(300,$pdf->y+25,117,423,84,14,10);
$pdf->partEllipse(300,$pdf->y+25,115,425,85,15,10);
#x
2<polygon> (p,np,[f=0])
Draw a polygon, where there are np points, and p is an array containing (x0,y0,x1,y1,x2,y2,...,x(np-1),y(np-1)).
If f=1 then fill the area.
#C
$pdata = array(200,10,400,20,300,50,150,40);
$pdf->polygon($pdata,4);
#c
#X
$pdata = array(200,10,400,20,300,50,150,40);
$pdf->ezSetDy(-60,'makeSpace');
for ($i=1;$i<count($pdata);$i+=2){
$pdata[$i]+=$pdf->y;
}
$pdf->polygon($pdata,4);
#x
#C
$pdf->polygon($pdata,4,1);
#c
#X
$pdf->ezSetDy(-60,'makeSpace');
$pdata = array(200,10,400,20,300,50,150,40);
$pdf->ezSetDy(-60,'makeSpace');
for ($i=1;$i<count($pdata);$i+=2){
$pdata[$i]+=$pdf->y;
}
$pdf->polygon($pdata,4,1);
#x
#C
$pdf->setColor(0.9,0.9,0.9);
$pdf->polygon($pdata,4,1);
#c
#X
$pdf->ezSetDy(-60,'makeSpace');
$pdata = array(200,10,400,20,300,50,150,40);
$pdf->ezSetDy(-60,'makeSpace');
for ($i=1;$i<count($pdata);$i+=2){
$pdata[$i]+=$pdf->y;
}
$pdf->setColor(0.9,0.9,0.9);
$pdf->polygon($pdata,4,1);
#x
2<rectangle> (x1,y1,width,height)
Build a rectangle with no background, only borders
#C
$pdf->rectangle(400, $pdf->y, 120,50);
#c
#X
$pdf->rectangle(400, $pdf->y, 120,50);
#x
2<filledRectangle> (x1,y1,width,height)
Build a rectangle with filled color.
#C
$pdf->filledRectangle(400, $pdf->y, 120, 50);
#c
#X
$pdf->filledRectangle(400, $pdf->y, 120,50);
#x
2<newPage> ([insert,id,pos]) = id
Starts a new page and returns the id of the page contents, this can be safely ignored, but storing it will allow the insertion of more information back into the page later, through the use of the 'reopenObject' function.
The command is usually used without any of the options to simply add a new page to the end of the current bunch, but with the options can be used to insert a page within the existing pages. The 'insert' value can be set to 0 or 1 (use 1 to insert). 'id' should be set to a value which was returned by a previous newPage command (this is actually the object id of the contents of a page). 'pos' will determine whether the page is inserted before or after the specified page, it should be set to 'before' or 'after'.
2<getFirstPageId> () = id
A related command is this which returns the id of the first page, this page is created during the class instantiation and so does not have its id returned to the user, this is the only way to fetch it, but it can be done at any point.
2<stream> ([array options])
Used for output, this will set the required headers and output the pdf code.
The options array can be used to set a number of things about the output:
'Content-Disposition'=>'filename' sets the filename, though not too sure how well this will work as in my trial the browser seems to use the filename of the php file with .pdf on the end.
'Accept-Ranges'=>1 or 0 - if this is not set to 1, then this header is not included, off by default this header seems to have caused some problems despite the fact that it is supposed to solve them, so I am leaving it off by default.
'compress'=> 1 or 0 - apply content stream compression, this is on (1) by default.
2<getFontHeight> (size) = height
Returns the height of the current font, in the given size. This is the distance from the bottom of the descender to the top of the Capitals.
2<getFontDescender> (size) = height
Returns a number which is the distance that the descender goes beneath the Baseline, for a normal character set this is a negative number.
2<getTextWidth> (size,text) = width
Returns the width of the given text string at the given size.
2<saveState> ()
Save the graphic state.
2<restoreState> ()
Restore a saved graphics state.
2<openObject> () = id
Start an independent object. This will return an object handle, and all further writes to a page will actually go into this object, until a closeObject call is made.
2<reopenObject> (id)
Makes the point of current content insertion the numbered object, this 'id' must have been returned from a call to 'openObject' or 'newPage' for it to be a valid object to insert content into. Do not forget to call 'closeObject' to close off input to this object and return it to where it was beforehand (most likely the current page).
This will allow the user to add information to previous pages, as long as they have stored the id of the pages.
2<closeObject> ()
Close the currently open object. Further writes will now go to the current page.
2<addObject> (id,[options='add'])
Add the object specified by id to the current page (default). If a string is supplied in options, then the following may be specified:
'add' - add to the current page only.
'all' - add to every page from the current one on.
'odd' - add to all odd numbered pages from now on.
'even' - add to all even numbered pages from now on.
'next' - add to just the next page.
'nextodd' - add to all odd numbered pages from the next one.
'nexteven' - add to all even numbered pages from the next one.
2<stopObject> (id)
If the object (id) has been appearing on pages up to now, then stop it, this page will be the last one that could contain it.
2<addInfo> (label,value)
Add document information, the valid values for label are:
Title, Author, Subject, Keywords, Creator, Producer, CreationDate, ModDate, Trapped
modified in version 003 so that 'label' can also be an array of key->value pairs, in which case 'value' should not be set.
2<setPreferences> (label,value)
Set some document preferences, the valid values for label are:
HideToolbar, HideMenuBar, HideWindoUI, FitWindow, CenterWindow, NonFullScreenPageMode, Direction
modified in version 003 so that 'label' can also be an array of key->value pairs, in which case 'value' should not be set.
2<addImage> (img,x,y,w,[h],[quality=75],[angle=0])
Add an image to the document, this feature needs some development. But as it stands, img must be a handle to a GD graphics object, and one or both of w or h must be specified, if only one of them is specified, then the other is calculated by keeping the ratio of the height and width of the image constant.
The image will be placed with its lower left corner at (x,y), and w and h refer to page units, not pixels.
2<addJpegFromFile> (imgFileName,x,y,w,[h],[angle=0])
Add a JPEG image to the document, this function does not require the GD functionality, so should be usable to more people, interestingly it also seems to
be more reliable and better quality. The syntax of the command is similar to the above 'addImage' function, though 'img' is a string containing the file name of the jpeg image.
x,y are the position of the lower left corner of the image, and w,h are the width and height. Note that the resolution of the image in the document is defined only by the resolution of the image that you insert, and the size that you make it on the page. If you have an image which is 500 pixels across and then you place it on the page so that it is 72 units across then this image will be about 500 dpi (as 72 units is about 72 points which is 1 inch).
2<addPngFromFile> (imgFileName,x,y,w,[h],[angle=0])
Similar to <i>addJepgFromFile</i>, but for PNG images.
2<output> ([debug=0]) = a
As an alternative to streaming the output directly to the browser, this function simply returns the pdf code. No headers are set, so if you wish to stream at a later time, then you will have to manually set them. This is ideal for saving the code to make a pdf file, or showing the code on the screen for debug purposes.
If the 'debug' parameter is set to 1, then the only effect at the moment is that the compression option is not used for the content streams, so that they can be viewed clearly.
2<openHere> (style[,a][,b][,c])
Make the document open at a specific page when it starts. The page will be the one which is the current page when the function is called.
The style option will define how it will look when open, valid values are:
(where the extra parameters will be used to supply any values specified for the style chosen)
'XYZ' left, top, zoom <i>open at a particular coordinate on the page, with a given zoom factor</i>
'Fit' <i>fit the page to the view</i>
'FitH' top <i>fit horizontally, and at the vertical position given</i>
'FitV' left <i>fit vertically, and at the horizontal position given</i>
'FitB' <i>fit the bounding box of the page into the viewer</i>
'FitBH' top <i>fit the width of the bounding box to the viewer and set at the vertical position given</i>
'FitBV' left <i>fit bounding box vertically and set given horizontal position</i>
2<selectFont> (fontName [,encoding = ''] [, set = 1] [,subsetFont = false])
This selects a font to be used from this point in the document. Errors can occur if some of the other functions are used if a font has not been selected, so it is wise to do this early on.
In all versions prior to 0.12 it was required to "convert" ttf fonts into either *.AFM or *.UFM for unicode font files.
Since version >= 0.12.0 R&OS pdf class natively reads the information from the TTF font by using TTF.php
It also supports font supbsetting (>= 0.11.8) by using TTFsubset.php. Thanks to Thanos Efraimidis (4real.gr).
<b>The experimental version 0.12 currently does not support Type 1 fonts</b>
The encoding directive is still experimental and no guarantee its working at all in version >= 0.12. But theoretical it allows the user to re-map character numbers from the 0->255 range to any named character in the set (as most of the sets have more than 256 characters). It should be an array of <number> => <name> pairs in an associative array. This is important to ensure that the right width for the character is used within the presentation characters, it has been noticed that sometimes, although the right character appears on the page, the incorrect width has been caluclated, using this function to explicitly set that number to the named character should fix the problem.
Note that the encoding directive will be effective <b>only the first time</b> that a font is selected, and it should not be used on symbolic fonts (such as Symbol or ZapfDingbats).
#C
// use a Times-Roman font with MacExpertEncoding
$pdf->selectFont('Times-Roman','MacExpertEncoding');
// this next line should be equivalent
$pdf->selectFont('Times-Roman',array('encoding'=>'MacExpertEncoding'));
// setup the helvetica font for use with german characters
$diff=array(196=>'Adieresis',228=>'adieresis',
214=>'Odieresis',246=>'odieresis',
220=>'Udieresis',252=>'udieresis',
223=>'germandbls');
$pdf->selectFont('Helvetica'
,array('encoding'=>'WinAnsiEncoding'
,'differences'=>$diff));
#c
2<setFontFamily> (family,options)
This function defines the relationship between the various fonts that are in the system, so that when a base font is selected the program then knows which to use when it is asked for the <b>bold</b> version or the <i>italic</i> version (not forgetting of course <b><i>bold-italic</i></b>).
It maintains a set of arrays which give the alternatives for the base fonts. The defaults that are in the system to start with are:
'Helvetica'
'b'=>'Helvetica-Bold'
'i'=>'Helvetica-Oblique'
'bi'=>'Helvetica-BoldOblique'
'ib'=>'Helvetica-BoldOblique'