Para exportar a Excel no utilizo ninguna libreria en especial solo este trozo de codigo:
Código PHP:
// funciontexto() muestra un texto especifico.
$table1 = '<table width="620" border="1" cellspacing="20" cellpadding="25"><tr><td width="400">';
$table2 = '</td><td width="220" valign="top">';
$table3 = '</td></tr></table>';
$encuesta = '';
$encuesta .= $table1;
$encuesta .= '<img src="http://www.mipagina.com/imagen.png" width="400" height="400" align="top">';
$encuesta .= $table2;
$encuesta .= funciontexto();
$encuesta .= $table3;
header("Content-type: application/vnd-ms-excel; charset=iso-8859-1");
header("Content-Disposition: attachment; filename=encuesta_".date('d-m-Y').".xls");
echo $encuesta;