I am using the Cezpdf Class to generate some pdfs. The paragraphs appear justified but the last line of the paragraphs should be left-justified. With my current code
while ($ix < count($string_array)){
$pdf->ezText("$string_array[$ix]", 13, array('justification'=>'full'));
$ix++;
}
all paragraphs except of the last one have also their last line justified, which looks odd since the last paragraph has its last line left-justified, as I would expect from all paragraphs. Is there a special character for this kind of linebreak?
My current pdf-Text of three identical paragraphs looks as following: