Hvala za ove linkove. Pregledao sam dosta ovih modifikovanih klasa gde je odradjena podrska za UTF-8 i vidim da to fantasticno radi. Testirao sam neke jednostavne skripte i uspeo dobiti pdf gde se slova sa kvakicama uredno prikazuju. Evo npr TCPDF klasa radi taj posao. Vracam se sad na moj problem gde treba da u tabelu sa par kolona smestim podatke iz mysql tabele. Npr za pocetak da krenem od ovoga sto sam vec postavio:
PHP kôd:
require_once('tcpdf.php');
include ('include/config.php');
class PDF extends TCPDF
{
//Load
function LoadData($file)
{
//Linije
$lines=file($file);
$data=array();
foreach($lines as $line)
$data[]=explode(';',chop($line));
return $data;
}
//Funkcija koja iscrtava tabelu sa 6 kolona
function FancyTable($header,$data)
{
//Boja,font,
$this->SetFillColor(255,0,0);
$this->SetTextColor(255);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
//Heder
$w=array(20,30,55,25,25,25);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
$this->Ln();
//Setovanje boje i fonta
$this->SetFillColor(224,235,255);
$this->SetTextColor(0);
$this->SetFont('');
//Data
$fill=false;
foreach($data as $row)
{
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
$this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
$this->Cell($w[3],6,$row[3],'LR',0,'C',$fill);
$this->Cell($w[4],6,number_format($row[4]),'LR',0,'R',$fill);
$this->Cell($w[5],6,number_format($row[5]),'LR',0,'R',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
//Kreiranje pdf i sql upit
$pdf=new TCPDF();
$header=array('Ime','Prezime','Br. kancelarije','Lokal','Dekt','VPN');
$strSQL = "SELECT * FROM radnik";
$objQuery = mysql_query($strSQL);
$resultData = array();
for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
$result = mysql_fetch_array($objQuery);
array_push($resultData,$result);
}
$pdf->AddPage();
$pdf->Ln(35);
$pdf->FancyTable($header,$resultData);
$pdf->Output("MyPDF.pdf","F");