Home
last modified time | relevance | path

Searched refs:textvar (Results 1 – 5 of 5) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php222 var $textvar; // mPDF 5.7.1
3513 } elseif (($this->textvar & TextVars::FC_SMALLCAPS) && isset($this->upperCase[ord($c)])) { // mPDF 5.7.1
3560 elseif (($this->textvar & TextVars::FC_SMALLCAPS) && isset($this->upperCase[$char])) { // mPDF 5.7.1
3606 function GetStringWidth($s, $addSubset = true, $OTLdata = false, $textvar = 0, $includeKashida = false)
3656 if (($textvar & TextVars::FC_SMALLCAPS) && isset($this->upperCase[$char])) {
3698 if (($textvar & TextVars::FC_KERNING) && $lastchar) {
3716 if (($textvar & TextVars::FC_SMALLCAPS) && isset($this->upperCase[ord($s[$i])])) { // mPDF 5.7.1
3727 if (($textvar & TextVars::FC_KERNING) && $i > 0) { // mPDF 5.7.1
3735 if ($textvar & TextVars::FC_KERNING) {
4348 function Text($x, $y, $txt, $OTLdata = [], $textvar
231 var $textvar; // mPDF 5.7.1 global() variable in Mpdf\\Mpdf
3578 GetStringWidth($s, $addSubset = true, $OTLdata = false, $textvar = 0, $includeKashida = false) global() argument
4318 Text($x, $y, $txt, $OTLdata = [], $textvar = 0, $aixextra = '', $coordsys = '', $return = false) global() argument
4704 Cell($w, $h = 0, $txt = '', $border = 0, $ln = 0, $align = '', $fill = 0, $link = '', $currentx = 0, $lcpaddingL = 0, $lcpaddingR = 0, $valign = 'M', $spanfill = 0, $exactWidth = false, $OTLdata = false, $textvar = 0, $lineBox = false) global() argument
5388 applyGPOSpdf($txt, $aix, $x, $y, $OTLdata, $textvar = 0) global() argument
10421 _dounderline($x, $y, $txt, $OTLdata = false, $textvar = 0) global() argument
[all...]
H A DDirectWrite.php459 $textvar = 0;
467 $textvar |= TextVars::FC_KERNING;
493 $sz = $this->mpdf->GetStringWidth($text, true, $OTLdata, $textvar);
511 $this->mpdf->Cell($r2 - $r1, $y2, $text, 0, 1, 'C', 0, '', 0, 0, 0, 'M', 0, false, $OTLdata, $textvar);
H A DOtl.php973 if (!(($this->mpdf->textvar & TextVars::FC_SMALLCAPS) && $scriptblock == Ucdn::SCRIPT_LATIN && strpos($useGSUBtags, 'smcp') === false)) {
1077 if (!(($this->mpdf->textvar & TextVars::FC_SMALLCAPS) && $scriptblock == Ucdn::SCRIPT_LATIN && strpos($useGSUBtags, 'smcp') === false)) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DTd.php142 $this->mpdf->textvar |= TextVars::FC_SMALLCAPS;
161 $this->mpdf->textvar |= TextVars::FC_SMALLCAPS;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DSvg.php2685 $textvar = 0;
2700 $textvar = ($textvar | TextVars::FC_KERNING);
2716 $sw = $this->mpdf->GetStringWidth($txt, true, $OTLdata, $textvar); // also adds characters to subset
2728 $path_cmd .= $this->mpdf->Text($pdfx, $pdfy, $txt, $OTLdata, $textvar, $aixextra, 'SVG', true);