<?php

//path to  the CreateDocx class within your PHPDocX installation
require_once '../../../classes/CreateDocx.inc';
$docx = new CreateDocxFromTemplate('../../files/placeholderImageFootnote.docx');
$image_1 = array('height' => 2, 'width' => 2, 'target' => 'footnote');
$docx->replacePlaceholderImage('FOOTNOTEIMG', '../../img/logo_header.jpg', $image_1);
$docx->createDocx('example_replacePlaceholderImages_2');
<?php

//path to  the CreateDocx class within your PHPDocX installation
require_once '../../../classes/CreateDocx.inc';
$docx = new CreateDocxFromTemplate('../../files/placeholderImage.docx');
$image_1 = array('height' => 3, 'width' => 3, 'target' => 'header');
$docx->replacePlaceholderImage('HEADERIMG', '../../img/logo_header.jpg', $image_1);
$docx->replacePlaceholderImage('LOGO', '../../img/imageP3.png');
$docx->createDocx('example_replacePlaceholderImages_1');