Forum


Replies: 4   Views: 3412
Font size ignored ?
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by WTO  · 13-02-2018 - 09:24

Ok, fair enough. I suggest you put a warning about that in the doc, as it's not immediately obvious that it will be half of what you define. Furthermore, if I put the font-size explicitly when adding something, like so:

$docx->addHeading('My heading', 1, array(
  'fontSize' => 26,
));
$docx->addText($text, array('pStyle' => 'myStyle', 'fontSize' => 32));

It doesn't divide it by 2; the font size is 26 for the heading, and 32 for the text, and not 13 and 16. So it's not very intuitive.