SetAuthor('Raphael Zimmermann'); $pdf->SetTitle('Password Card'); $pdf->SetSubject('Password Card'); $pdf->SetPrintHeader(false); $pdf->SetPrintFooter(false); // add a page $pdf->AddPage(); // Mark the position to fold... $pdf->Line(95, 10, 95, 13); $pdf->Line(95, 72, 95, 75); // Add the front svg $pdf->ImageSVG( $front, // filename 10, // x 15, // y '85', // width '55' // height ); // Add the back svg $pdf->ImageSVG( $back, // filename 95, // x 15, // y '85', // width '55' // height ); //Close and output PDF document return $pdf->Output('generated.pdf', 'S'); } }