Images


// open document sample.docx
$doc = new PNDocx("templates/sample.docx");

// get the paragraphs containing {#some}
$p = $doc->p("some");
// insert image
$p->image("http://images.google.de/intl/de_ALL/images/logos/images_logo_lg.gif");

// get the drawing with the alternative text "googlelogo"
$d = $doc->d("googlelogo");
// replace image
$d->replace("http://l.yimg.com/a/i/ww/met/yahoo_logo_de_061509.png");

// send document to browser
$doc->send();

Show the result
templates/sample.docx

  1. No comments yet.
  1. No trackbacks yet.
You must be logged in to post a comment.