Sample 29 Line

12:05:53 Create new PhpWord object
12:05:53 Write to Word2007 format
12:05:53 Write to ODText format
12:05:53 Write to RTF format
12:05:53 Write to HTML format
12:05:53 Write to PDF format ... NOT DONE!
12:05:53 Write to EPub3 format
12:05:53 Done writing file(s)
12:05:53 Peak memory usage: 2 MB

 

Results: docx odt rtf html epub

<?php

include_once 'Sample_Header.php';

// New Word document
echo date('H:i:s'), ' Create new PhpWord object', EOL;
$phpWord = new PhpOffice\PhpWord\PhpWord();

// New section
$section = $phpWord->addSection();

// Add Line elements
// See Element/Line.php for all options
$section->addText('Horizontal Line (Inline style):');
$section->addLine(
    [
        'width' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(4),
        'height' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(0),
        'positioning' => 'absolute',
    ]
);
$section->addText('Vertical Line (Inline style):');
$section->addLine(
    [
        'width' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(0),
        'height' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(1),
        'positioning' => 'absolute',
    ]
);
// Two text break
$section->addTextBreak(1);

$section->addText('Positioned Line (red):');
$section->addLine(
    [
        'width' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(4),
        'height' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(1),
        'positioning' => 'absolute',
        'posHorizontalRel' => 'page',
        'posVerticalRel' => 'page',
        'marginLeft' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(10),
        'marginTop' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(8),
        'wrappingStyle' => PhpOffice\PhpWord\Style\Image::WRAPPING_STYLE_SQUARE,
        'color' => 'red',
    ]
);

$section->addText('Horizontal Formatted Line');
$section->addLine(
    [
        'width' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(15),
        'height' => PhpOffice\PhpWord\Shared\Converter::cmToPixel(0),
        'positioning' => 'absolute',
        'beginArrow' => PhpOffice\PhpWord\Style\Line::ARROW_STYLE_BLOCK,
        'endArrow' => PhpOffice\PhpWord\Style\Line::ARROW_STYLE_OVAL,
        'dash' => PhpOffice\PhpWord\Style\Line::DASH_STYLE_LONG_DASH_DOT_DOT,
        'weight' => 10,
    ]
);

// Save file
echo write($phpWord, basename(__FILE__, '.php'), $writers);
if (!CLI) {
    include_once 'Sample_Footer.php';
}