I have an issue with aligning a multicell with fPDF. The 3rd column should be next to the 2nd column.
foreach ($order_items as $item_id => $item) {
$item_data = $item->get_data();
$pdf->Cell(35, 5, get_post_meta($item_data['product_id'], 'bdsc_ean_code', true), 1, 0);
$line_height = 2;
$width = 60;
$text = ("fjkbdshjbfbdsjhfbjesfbqwfbjqwefbhwfbhjwebjhfjhqwfbhqwefjbwfhbqwhjfbqwjfjfwqwfbjhefhbq");
$height = (ceil(($pdf->GetStringWidth($text) / $width)) * $line_height);
$pdf->Multicell($width,$height,$text,1,0);
$pdf->Cell(40, 5, '', 1, 0);
$pdf->Cell(20, 5, $item_data['quantity'], 1, 0);
$pdf->Cell(34, 5, number_format(round($item_data['total'] + $item_data['subtotal_tax'], 2), 2), 1, 1, 'R');//end of line
}