Hi I'm using the built in PDFLib in PHP and I need to right justify some numeric columns...
please tell me this is possible!
The code im currently using looks like this ;
pdf_set_parameter($pdf, "FontOutline", "Arial Bold=c://windows//fonts//arialbd.ttf");
$arial = pdf_findfont($pdf, "Arial Bold", "host", 1); pdf_setfont($pdf, $arial, 7);
pdf_show_xy($pdf, "PN", 30, 500);
pdf_show_xy($pdf, "Project Title", 50, 500);
pdf_show_xy($pdf, "$jan_value", 240, 500);
pdf_show_xy($pdf, "$feb_value", 280, 500);
Can I right justify the $jan_value and $feb_value fields easily?
Many Thanks
Mark