does anyone know how to define the html2pdf favicon?

0

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;
}
    
asked by Dan Padilla 02.08.2017 в 22:45
source

0 answers