Skip to content

Commit 45c2a26

Browse files
author
ole
authored
Removed error_reporting (#140)
* Removed error_reporting * Fixed full justification during line breaks using $pdf->ezText()
1 parent 1e8421d commit 45c2a26

17 files changed

Lines changed: 17 additions & 48 deletions

data.txt

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Note that this document was generated using the demo script 'readme.php' which c
3131

3232
3<0.12.61>
3333
- Fixed issue #139
34+
- Fixed full justification during line breaks using $pdf->ezText()
3435

3536
3<0.12.60>
3637
- Compatibility for php 7.4 using PR #136
@@ -52,11 +53,6 @@ Note that this document was generated using the demo script 'readme.php' which c
5253
- Fixed addTextWrap method
5354
- Fixed issue #132
5455

55-
3<0.12.55>
56-
57-
- Image quality never greater 75% in addImage method #130
58-
- Possible fix for infinite loop when a word does not fit cell #129
59-
6056
Please refer to https://github.com/rospdf/pdf-php/releases for all previous changes
6157

6258
#NP
@@ -544,8 +540,7 @@ Note that the code for the example and the actual one shown are not identical fo
544540

545541
2<addText> (x,y,size,text[,width=0][,justification='left'][,angle=0][,wordspace=0][,test=0)
546542

547-
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.
548-
An angle can be supplied as this will do the obvious (in degrees).
543+
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).
549544

550545
'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.
551546

examples/annotations.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
error_reporting(E_ALL);
43
set_time_limit(1800);
54
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
65

examples/barcode.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
2-
3-
error_reporting(E_ALL);
42
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
53

64
include 'Cezpdf.php';

examples/color.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
2-
3-
error_reporting(E_ALL);
42
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
53
date_default_timezone_set('UTC');
64

examples/encryption.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
2-
3-
error_reporting(E_ALL);
42
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
53
date_default_timezone_set('UTC');
64

examples/fonts.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
2-
3-
error_reporting(E_ALL);
42
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
53
date_default_timezone_set('UTC');
64

examples/image.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
2-
3-
error_reporting(E_ALL);
42
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
53
date_default_timezone_set('UTC');
64

examples/imageObjectHash.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
2-
3-
error_reporting(E_ALL);
42
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
53
date_default_timezone_set('UTC');
64

examples/imagetext.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
error_reporting(E_ALL);
32
set_include_path('../src/'.PATH_SEPARATOR.get_include_path());
43
date_default_timezone_set('UTC');
54

examples/table-enhancements.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
<?php
2-
3-
error_reporting(E_ALL);
42
date_default_timezone_set('UTC');
53

64
include_once '../src/Cezpdf.php';

0 commit comments

Comments
 (0)