Skip to content

Commit 54013a6

Browse files
author
Roman Syroeshko
committed
https://github.com/PHPOffice/PHPWord/issues/399.
1 parent fb863cd commit 54013a6

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Place announcement text here.
2626
Use the correspondent `getAlignment` and `setAlignment` methods instead. - @RomanSyroeshko
2727
- `left`, `right`, and `justify` alignment options for paragraphs (now are mapped to `Jc::START`, `Jc::END`, and `Jc::BOTH`). - @RomanSyroeshko
2828
- `left`, `right`, and `justify` alignment options for tables (now are mapped to `Jc::START`, `Jc::END`, and `Jc::CENTER`). - @RomanSyroeshko
29+
- `TCPDF` due to its limited HTML support. Use `DomPDF` or `MPDF` renderer instead. - @RomanSyroeshko #399
2930

3031
### Removed
3132
- `\PhpOffice\PhpWord\Style\Alignment`. Style properties, which previously stored instances of this class, now deal with strings.

src/PhpWord/TemplateProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ public function saveAs($fileName)
434434
}
435435

436436
/*
437-
* Note: we do not use ``rename`` function here, because it looses file ownership data on Windows platform.
437+
* Note: we do not use `rename` function here, because it looses file ownership data on Windows platform.
438438
* As a result, user cannot open the file directly getting "Access denied" message.
439439
*
440440
* @see https://github.com/PHPOffice/PHPWord/issues/532

src/PhpWord/Writer/PDF/TCPDF.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
/**
2323
* TCPDF writer
2424
*
25+
* @deprecated 0.13.0 Use `DomPDF` or `MPDF` instead.
26+
*
2527
* @link http://www.tcpdf.org/
2628
* @since 0.11.0
2729
*/

0 commit comments

Comments
 (0)