Image.php 554 B

123456789101112131415161718192021222324
  1. <?php
  2. require_once '../PHPWord.php';
  3. // New Word Document
  4. $PHPWord = new PHPWord();
  5. // New portrait section
  6. $section = $PHPWord->createSection();
  7. // Add image elements
  8. $section->addImage('_mars.jpg');
  9. $section->addTextBreak(2);
  10. $section->addImage('_earth.JPG', array('width'=>210, 'height'=>210, 'align'=>'center'));
  11. $section->addTextBreak(2);
  12. $section->addImage('_mars.jpg', array('width'=>100, 'height'=>100, 'align'=>'right'));
  13. // Save File
  14. $objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
  15. $objWriter->save('Image.docx');
  16. ?>