2012-05-06 18:25:40 +02:00
|
|
|
<?php
|
2013-12-15 13:35:17 +01:00
|
|
|
require_once '../../Classes/PHPWord.php';
|
2012-05-06 18:25:40 +02:00
|
|
|
|
|
|
|
|
// New Word Document
|
|
|
|
|
$PHPWord = new PHPWord();
|
|
|
|
|
|
|
|
|
|
// New portrait section
|
|
|
|
|
$section = $PHPWord->createSection();
|
|
|
|
|
|
|
|
|
|
// Create header
|
|
|
|
|
$header = $section->createHeader();
|
|
|
|
|
|
|
|
|
|
// Add a watermark to the header
|
|
|
|
|
$header->addWatermark('_earth.jpg', array('marginTop'=>200, 'marginLeft'=>55));
|
|
|
|
|
|
|
|
|
|
$section->addText('The header reference to the current section includes a watermark image.');
|
|
|
|
|
|
|
|
|
|
// Save File
|
|
|
|
|
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
|
|
|
|
|
$objWriter->save('Watermark.docx');
|