Forum


Replies: 3   Views: 3496
Addshape adds extra row after
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 kobbe  · 18-08-2016 - 08:22

$options = [
        'from' => '0,0',
        'to' => '640,0',
        'strokecolor' => '#000000',
        'strokeweight' => '1',
        'position' => 'relative',
];
$docx->addShape('line', $options);
$docx->addText('test test test');

When I use this the result becomes:

-------

[enter]

test test test

 

 

Is there a way to remove this extra row? I need text on the very next row without the space inbetween.

 

Also the from value... I do not undestand what convertion I need to use if i want the line to stop at 190mm (20 mm from right side on A4 paper).

 

Thanks!

 

(Using 6.0 Corporate)