I am building a pdf using fpdf, fpdi and tcpdf. The classes extend like this
TCPDF->FDPF_Mapper->FPDF->FPDF_TPL->FPDI->Gradients->PDF_Draw
FPDF_Mapper is a bridge between fpdf and tcpdf that was given to me and does work for other functions.
I am calling the function:
$pdf->ImageSVG($file='test.svg', $x=15, $y=30, $w='', $h='', $link='http://www.tcpdf.org', $align='', $palign='', $border=1, $fitonpage=false);
I then get the error
FPDF error: Cannot access protected property PDF_Draw:$parser / Undefined property: PDF_Draw::$parser
I have seen similar issues but none with this particular function.
Has anyone seen this issue or know of a way to resolve this?