2012-05-06 18:25:40 +02:00
|
|
|
<?php
|
2014-03-15 22:39:57 +07:00
|
|
|
include_once 'Sample_Header.php';
|
2012-05-06 18:25:40 +02:00
|
|
|
|
|
|
|
|
// New Word Document
|
2015-01-01 20:41:42 +04:00
|
|
|
echo date('H:i:s') , ' Create new PhpWord object' , EOL;
|
2014-03-23 10:32:08 +04:00
|
|
|
$phpWord = new \PhpOffice\PhpWord\PhpWord();
|
2014-05-01 23:56:55 +07:00
|
|
|
$phpWord->addFontStyle('rStyle', array('bold' => true, 'italic' => true, 'size' => 16, 'allCaps' => true, 'doubleStrikethrough' => true));
|
2015-10-10 19:06:23 +04:00
|
|
|
$phpWord->addParagraphStyle('pStyle', array('alignment' => \PhpOffice\PhpWord\SimpleType\ST_Jc::CENTER, 'spaceAfter' => 100));
|
2014-03-20 16:54:12 +04:00
|
|
|
$phpWord->addTitleStyle(1, array('bold' => true), array('spaceAfter' => 240));
|
2012-05-06 18:25:40 +02:00
|
|
|
|
|
|
|
|
// New portrait section
|
2014-04-02 11:02:56 +07:00
|
|
|
$section = $phpWord->addSection();
|
2012-05-06 18:25:40 +02:00
|
|
|
|
2014-03-13 19:09:35 +07:00
|
|
|
// Simple text
|
2015-02-06 22:28:31 +04:00
|
|
|
$section->addTitle(htmlspecialchars('Welcome to PhpWord', ENT_COMPAT, 'UTF-8'), 1);
|
|
|
|
|
$section->addText(htmlspecialchars('Hello World!', ENT_COMPAT, 'UTF-8'));
|
2012-05-06 18:25:40 +02:00
|
|
|
|
2014-03-13 19:09:35 +07:00
|
|
|
// Two text break
|
2012-05-06 18:25:40 +02:00
|
|
|
$section->addTextBreak(2);
|
|
|
|
|
|
2014-03-13 19:09:35 +07:00
|
|
|
// Defined style
|
2015-02-06 22:28:31 +04:00
|
|
|
$section->addText(htmlspecialchars('I am styled by a font style definition.', ENT_COMPAT, 'UTF-8'), 'rStyle');
|
|
|
|
|
$section->addText(htmlspecialchars('I am styled by a paragraph style definition.', ENT_COMPAT, 'UTF-8'), null, 'pStyle');
|
|
|
|
|
$section->addText(htmlspecialchars('I am styled by both font and paragraph style.', ENT_COMPAT, 'UTF-8'), 'rStyle', 'pStyle');
|
2014-05-13 02:43:44 +07:00
|
|
|
|
2014-06-04 22:57:59 +07:00
|
|
|
$section->addTextBreak();
|
2014-03-13 19:09:35 +07:00
|
|
|
|
|
|
|
|
// Inline font style
|
|
|
|
|
$fontStyle['name'] = 'Times New Roman';
|
|
|
|
|
$fontStyle['size'] = 20;
|
2014-05-13 02:43:44 +07:00
|
|
|
|
2014-06-04 22:57:59 +07:00
|
|
|
$textrun = $section->addTextRun();
|
2015-02-06 22:28:31 +04:00
|
|
|
$textrun->addText(htmlspecialchars('I am inline styled ', ENT_COMPAT, 'UTF-8'), $fontStyle);
|
|
|
|
|
$textrun->addText(htmlspecialchars('with ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('color', ENT_COMPAT, 'UTF-8'), array('color' => '996699'));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('bold', ENT_COMPAT, 'UTF-8'), array('bold' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('italic', ENT_COMPAT, 'UTF-8'), array('italic' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('underline', ENT_COMPAT, 'UTF-8'), array('underline' => 'dash'));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('strikethrough', ENT_COMPAT, 'UTF-8'), array('strikethrough' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('doubleStrikethrough', ENT_COMPAT, 'UTF-8'), array('doubleStrikethrough' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('superScript', ENT_COMPAT, 'UTF-8'), array('superScript' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('subScript', ENT_COMPAT, 'UTF-8'), array('subScript' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('smallCaps', ENT_COMPAT, 'UTF-8'), array('smallCaps' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('allCaps', ENT_COMPAT, 'UTF-8'), array('allCaps' => true));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('fgColor', ENT_COMPAT, 'UTF-8'), array('fgColor' => 'yellow'));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('scale', ENT_COMPAT, 'UTF-8'), array('scale' => 200));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('spacing', ENT_COMPAT, 'UTF-8'), array('spacing' => 120));
|
|
|
|
|
$textrun->addText(htmlspecialchars(', ', ENT_COMPAT, 'UTF-8'));
|
|
|
|
|
$textrun->addText(htmlspecialchars('kerning', ENT_COMPAT, 'UTF-8'), array('kerning' => 10));
|
|
|
|
|
$textrun->addText(htmlspecialchars('. ', ENT_COMPAT, 'UTF-8'));
|
2014-03-13 19:09:35 +07:00
|
|
|
|
|
|
|
|
// Link
|
2015-02-06 22:28:31 +04:00
|
|
|
$section->addLink('https://github.com/PHPOffice/PHPWord', htmlspecialchars('PHPWord on GitHub', ENT_COMPAT, 'UTF-8'));
|
2014-03-13 19:09:35 +07:00
|
|
|
$section->addTextBreak();
|
|
|
|
|
|
|
|
|
|
// Image
|
2014-03-14 00:49:27 +07:00
|
|
|
$section->addImage('resources/_earth.jpg', array('width'=>18, 'height'=>18));
|
2012-05-06 18:25:40 +02:00
|
|
|
|
2014-03-12 21:55:20 +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';
|
2014-03-12 21:55:20 +07:00
|
|
|
}
|