PHPWord/samples/old/Image.php

24 lines
563 B
PHP
Raw Normal View History

2012-05-06 18:25:40 +02:00
<?php
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();
// Add image elements
$section->addImage('_mars.jpg');
$section->addTextBreak(2);
2013-12-15 14:35:18 +01:00
$section->addImage('_earth.jpg', array('width'=>210, 'height'=>210, 'align'=>'center'));
2012-05-06 18:25:40 +02:00
$section->addTextBreak(2);
$section->addImage('_mars.jpg', array('width'=>100, 'height'=>100, 'align'=>'right'));
// Save File
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
$objWriter->save('Image.docx');