<?php
require_once('print_logo.inc.php');
/*
note: $align
1 = top left.
2 = top right
3 = bottom right
4 = bottom left
5 = bottom center
6 = top center
*/
$printlogo = new PrintLogo();
$printlogo->createImageAndLogo("pic.jpg", "logo.png");
$printlogo->InsertLogo(5);
$printlogo->showImage();
?>