Despues de revisar los archivos de la classe FPDF, estoy seguro que tengo que insertar mi script para remplazar acentos en el archivo mysql_table.php mas exacto en la function Table, pero no encuentro la variable a utilizar.
Código PHP:
Ver originalfunction Table
($query,$prop=array()) {
//Issue query
//Add all columns if none was specified
if(count($this->aCols)==0) {
for($i=0;$i<$nb;$i++)
$this->AddCol();
}
//Retrieve column names when not specified
foreach($this->aCols as $i=>$col)
{
if($col['c']=='')
{
$this->aCols[$i]['c']=ucfirst($col['f']); else
}
}
//Handle properties
if(!isset($prop['width'])) $prop['width']=0;
if($prop['width']==0)
$prop['width']=$this->w-$this->lMargin-$this->rMargin;
if(!isset($prop['align'])) $prop['align']='C';
if(!isset($prop['padding'])) $prop['padding']=$this->cMargin;
$cMargin=$this->cMargin;
$this->cMargin=$prop['padding'];
if(!isset($prop['HeaderColor'])) $prop['HeaderColor']=array(); $this->HeaderColor=$prop['HeaderColor'];
if(!isset($prop['color1'])) if(!isset($prop['color2'])) $this->RowColors=array($prop['color1'],$prop['color2']); //Compute column widths
$this->CalcWidths($prop['width'],$prop['align']);
//Print header
$this->TableHeader();
//Print rows
$this->SetFont('Arial','',11);
$this->ColorIndex=0;
$this->ProcessingTable=true;
$this->Row($row);
$this->ProcessingTable=false;
$this->cMargin=$cMargin;
}