<?php
include_once '../MPDF54/mpdf.php';

// create object and SetAutoFont
$mpdf = new mPDF('UTF-8');
$mpdf->SetAutoFont();
$html .= "
    $this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider' => $model,
    'columns' => array(
        'id',
        'name',
        'typefood.name' ,
";
$mpdf->WriteHTML($html);
$mpdf->Output();
?>