when creating the pdf (html2pdf) with this library if the pdf is displayed in the browser, assign a favicon by default, someone knows how to change it or assign a specific one?
$content = '<H3>HOLA MUNDO</h3>'
require_once(dirname(__FILE__).'/../vendor/autoload.php');
try
{
$html2pdf = new HTML2PDF('P', 'A4', 'fr');
$html2pdf->setDefaultFont('Arial');
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
$html2pdf->Output('exemple00.pdf');
}
catch(HTML2PDF_exception $e) {
echo $e;
exit;
}