Does anyone know how to get TCPDF to output a .GIF file with a specific number of inches width x height?
I am trying to get a GIF embedded in a PDF so that it will print at exactly 4x6 inches. I tried this:
$this->setpageUnit('in');
$this->Image($tmp, 0, 0, 4, 6, 'gif', '', '', true);
But that only seemed to result in a blank page. Any ideas?