Как DomPDF html в pdf направлении LTR в RTL с использованием codeigniter? - PullRequest
0 голосов
/ 22 февраля 2020

У меня проблемы с DOMPDF. Я использую PHP 7.3.6 и имею новейшую версию DOMPDF . мое представление PDF не может переместить направление LTR в RTL.

$basurl=base_url();
$url="assets/images/logo.png";
$id = $this->uri->segment(3);
$dir=($ltype=="en"?"ltr":"rtl");
$html_content = '<!DOCTYPE html><html  dir="'.$dir.'"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body>
<p align="center" style="margin:0"><img style="width:250px;border:0" src="https://mahlyat.com/images/logo.png"></p><br><br><h2 align="center" style="margin:0 0 10px 0">'.$lang1['orderview'].'</h2>
<h4 align="center" style="margin:0">'.$shopname.'</h4><p align="center" style="margin:0">+'.$q->spphone.'</p>';              
$this->pdf->loadHtml($html_content,'UTF-8');
$this->pdf->set_option('isRemoteEnabled', true);
$this->pdf->set_paper(array(0, 0, 454, 841), 'portrait');
//$this->pdf->set_paper('a4', 'landscape');
$this->pdf->render();
$this->pdf->stream("".$id."_view.pdf", array("Attachment"=>0));
...