PHPWord/samples/Sample_04_Textrun.php

47 lines
2.1 KiB
PHP
Raw Normal View History

2014-03-04 10:54:14 -07:00
<?php
2014-03-15 22:39:57 +07:00
include_once 'Sample_Header.php';
2014-03-04 10:54:14 -07:00
// New Word Document
2015-01-01 20:41:42 +04:00
echo date('H:i:s'), ' Create new PhpWord object', EOL;
$phpWord = new \PhpOffice\PhpWord\PhpWord();
2014-03-04 10:54:14 -07:00
// Ads styles
2015-01-01 20:41:42 +04:00
$phpWord->addParagraphStyle('pStyle', array('spacing' => 100));
$phpWord->addFontStyle('BoldText', array('bold' => true));
$phpWord->addFontStyle('ColoredText', array('color' => 'FF8080', 'bgColor' => 'FFFFCC'));
$phpWord->addLinkStyle(
'NLink',
array('color' => '0000FF', 'underline' => \PhpOffice\PhpWord\Style\Font::UNDERLINE_SINGLE)
);
2014-03-04 10:54:14 -07:00
// New portrait section
$section = $phpWord->addSection();
2014-03-04 10:54:14 -07:00
// Add text run
$textrun = $section->addTextRun('pStyle');
2014-03-04 10:54:14 -07:00
$textrun->addText(htmlspecialchars('Each textrun can contain native text, link elements or an image.', ENT_COMPAT, 'UTF-8'));
$textrun->addText(htmlspecialchars(' No break is placed after adding an element.', ENT_COMPAT, 'UTF-8'), 'BoldText');
$textrun->addText(htmlspecialchars(' Both ', ENT_COMPAT, 'UTF-8'));
$textrun->addText(htmlspecialchars('superscript', ENT_COMPAT, 'UTF-8'), array('superScript' => true));
$textrun->addText(htmlspecialchars(' and ', ENT_COMPAT, 'UTF-8'));
$textrun->addText(htmlspecialchars('subscript', ENT_COMPAT, 'UTF-8'), array('subScript' => true));
$textrun->addText(htmlspecialchars(' are also available.', ENT_COMPAT, 'UTF-8'));
2015-01-01 20:41:42 +04:00
$textrun->addText(
htmlspecialchars(' All elements are placed inside a paragraph with the optionally given p-Style.', ENT_COMPAT, 'UTF-8'),
2015-01-01 20:41:42 +04:00
'ColoredText'
);
$textrun->addText(htmlspecialchars(' Sample Link: ', ENT_COMPAT, 'UTF-8'));
$textrun->addLink('https://github.com/PHPOffice/PHPWord', htmlspecialchars('PHPWord on GitHub', ENT_COMPAT, 'UTF-8'), 'NLink');
$textrun->addText(htmlspecialchars(' Sample Image: ', ENT_COMPAT, 'UTF-8'));
$textrun->addImage('resources/_earth.jpg', array('width' => 18, 'height' => 18));
$textrun->addText(htmlspecialchars(' Sample Object: ', ENT_COMPAT, 'UTF-8'));
$textrun->addObject('resources/_sheet.xls');
$textrun->addText(htmlspecialchars(' Here is some more text. ', ENT_COMPAT, 'UTF-8'));
2014-03-04 10:54:14 -07:00
// Save file
2014-04-12 10:12:24 +07:00
echo write($phpWord, basename(__FILE__, '.php'), $writers);
if (!CLI) {
include_once 'Sample_Footer.php';
}