Hi,
I found this solution :
In the file html2fpdf.php in
c:\pathtoyousite\...\wp-content\plugins\ibegin_share\share\share\plugins\mypc\html2fpdf
i added this near line 340 in function WriteHTML
function WriteHTML($html)
{
//! @desc HTML parser
//! @return void
/* $e == content */
$this->ReadMetaTags($html);
$html= iconv("UTF-8", "ISO-8859-1//TRANSLIT",$html);// Permet de décoder les caractéres accentués et les '
By