I'm placing a textflow with UTF-16 text in PHP (PDF_create_textflow,PDF_fit_textflow) which works fine.
How do I get justified Text "" without seeing the BOM sign (Up Arrow) in the Document?
Any other way I could style text justified rather than with inline option alignment?
$compo_txt = html_entity_decode($compo_txt, ENT_QUOTES, 'UTF-8');
$compo_txt = "<alignment=justify>".$compo_txt;
$compo_txt = iconv("UTF-8", "UTF-16", $compo_txt);
$len = strlen($compo_txt);
$compo_flow = PDF_create_textflow($p, $compo_txt, "fontname=arial fontsize=".$compo_size." encoding=unicode textlen=" . $len . " embedding=true");
$flow_warning = PDF_fit_textflow(
$p, $compo_flow, $compo_x + $compo_w,
$compo_y, $compo_x, $compo_y - $compo_h,
'orientate=' . $compo_o
);