bonjour
j'ai 2 fonctions qui génèrent une barre de progression
[code]
function Initialize($gauche,$haut,$largeur,$hauteur,$bord_col,$txt_col,$bg_col)
{
$tailletxt=$hauteur-10;
echo '<div id="pourcentage" style="position:absolute;top:'.$haut;
echo ';left:'.$gauche;
echo ';width:'.$largeur.'px';
echo ';height:'.$hauteur.'px;border:1px solid '.$bord_col.';font-family:Tahoma;font-weight:bold';
echo ';font-size:'.$tailletxt.'px;color:'.$txt_col.';z-index:1;text-align:center;">0%</div>';
echo '<div id="progrbar" style="position:absolute;top:'.($haut+1); //+1
echo ';left:'.($gauche+1); //+1
echo ';width:0px';
echo ';height:'.$hauteur.'px';
echo ';background-color:'.$bg_col.';z-index:0;"></div>';
}
function ProgressBar($indice)
{
echo "\n<script>";
echo "document.getElementById(\"pourcentage\").innerHTML='".$indice."%';";
echo "document.getElementById('progrbar').style.width=".($indice*2).";\n";
echo "</script>";
flush();
}
[/code]
je n'arrive pas à l'intégrer au code qui génère mon pdf
[code]
ob_start();
include(dirname(__FILE__).'/catalogue.php');
$content = ob_get_clean();
require_once(dirname(__FILE__).'/html2pdf/html2pdf.class.php');
$html2pdf = new HTML2PDF('P','A4','fr', array(0, 0, 0, 0));
// affichage de la page en entier
$html2pdf->pdf->SetDisplayMode('fullpage');
$html2pdf->WriteHTML($content);
// ajout de l'index (obligatoirement en fin de document)
$html2pdf->setNewPage();
$html2pdf->pdf->CreateIndex('Index', 25, 12);
$html2pdf->Output('catalogue.pdf');
[/code]
un petit coup de pouce please
merci a+ gilles