Si ma non ho capito bene come fare...anche per posizionare l'immagine. Ti posto il codice che crea quel PDF che ho postato:
[PHP]$pdf->SetFont('Helvetica','B',7);
$pdf->Cell(65,7,'Cognome e Nome','',0,'L',0);
$pdf->Cell(25,7,'3 Foto','',0,'L',0);
$pdf->Cell(25,7,'Cert. Medico','',0,'L',0);
$pdf->Cell(35,7,'Autocertificazione','',0,'L',0);
$pdf->Cell(25,7,'Cod. Fiscale','',0,'L',0);
$pdf->Cell(25,7,'Privacy','',0,'L',0);
$pdf->Cell(25,7,$acconto.',00 ?','',0,'L',0);
$pdf->Cell(25,7,$quota1.',00 ?','',0,'L',0);
$pdf->Cell(25,7,$quota2.',00 ?','',1,'L',0);
}
$img='../img/quadrato.gif';
$sqlIscr=@mysql_query("SELECT COUNT(idRelazione) AS totale FROM rel_corsi_corsisti_sit WHERE codCorso='".$_GET['id']."' AND eliminato='n' AND sospeso='n'");
$rigaIscr=mysql_fetch_array($sqlIscr);
$totIscr=$rigaIscr['totale'];
$sql="SELECT nome, cognome, email,dataNascita,cell FROM corsisti INNER JOIN rel_corsi_corsisti_sit ON idCorsista=codCorsista WHERE codCorso=".$idCorso." AND rel_corsi_corsisti_sit.eliminato='n' AND sospeso='n' ORDER BY cognome,nome";
if($totIscr>$max)
$sql.=",dataIscrizione";
$ris=@mysql_query($sql);
$i=1;
while($riga=mysql_fetch_array($ris)){
$nome=$riga['nome'];
$cognome=$riga['cognome'];
$pdf->SetFont('Helvetica','',8);
$pdf->Cell(0,5,$cognome.' '.$nome,'BLR',1,'L',0);
}[/PHP]