Remove "named" parameters when calling ImageSVG in class PDFRendere

This commit is contained in:
raphi 2015-04-17 09:50:53 +00:00
parent ad923b4d70
commit fdec9c4b9d
1 changed files with 10 additions and 10 deletions

View File

@ -26,20 +26,20 @@ class PDFRenderer
// Add the front svg // Add the front svg
$pdf->ImageSVG( $pdf->ImageSVG(
$file = $front, $front, // filename
$x = 10, 10, // x
$y = 15, 15, // y
$w = '85', '85', // width
$h = '55' '55' // height
); );
// Add the back svg // Add the back svg
$pdf->ImageSVG( $pdf->ImageSVG(
$file = $back, $back, // filename
$x = 95, 95, // x
$y = 15, 15, // y
$w = '85', '85', // width
$h = '55' '55' // height
); );