Home
last modified time | relevance | path

Searched refs:t (Results 76 – 100 of 2068) sorted by last modified time

12345678910>>...83

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DCode11.php117 $t = $j % 2 === 0;
121 $bararray['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0];
H A DCode128.php288 $t = true; // bar
290 $t = false; // space
293 $bararray['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0];
H A DCode39.php116 $t = true; // bar
118 $t = false; // space
127 $bararray['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0];
131 $bararray['bcode'][$k] = ['t' => false, 'w' => 1, 'h' => 1, 'p' => 0];
H A DCode93.php145 $t = true; // bar
147 $t = false; // space
150 $bararray['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0];
156 $bararray['bcode'][$k] = ['t' => true, 'w' => 1, 'h' => 1, 'p' => 0];
H A DEanUpc.php248 $t = true; // bar
250 $t = false; // space
252 $bararray['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0];
H A DI25.php84 $t = true; // bar
86 $t = false; // space
95 $bararray['bcode'][$k] = ['t' => $t, 'w' => $w, 'h' => 1, 'p' => 0];
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Conversion/
H A DDecToHebrew.php37 for ($t = 0; $t < $additiveNumsCount; $t++) {
39 $ct = $additive_nums[$t];
43 if (is_array($additive_glyphs[$t])) {
44 foreach ($additive_glyphs[$t] as $ag) {
53 $s = UtfString::code2utf($additive_glyphs[$t]) . $s;
55 $s .= UtfString::code2utf($additive_glyphs[$t]);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DCssManager.php216 $CSSstr = preg_replace('/[\s\n\r\t\f]/s', ' ', $CSSstr);
294 // Ignores -webkit-gradient so doesn't override -moz-
316 $t = '';
323 $t = trim($tags[0]);
336 $tag = $t;
338 $tag = $t . '>>PSEUDO>>' . $m[1];
343 $tag = $t . '>>NAMED>>' . $t2;
345 $tag = $t . '>>NAMED>>' . $t2 . '>>PSEUDO>>' . $m[1];
360 $t = trim($tags[0]);
363 if ($t) {
1343 _mergeCSS($p, & $t) global() argument
1377 _mergeFullCSS($p, & $t, $tag, $classes, $id, $lang) global() argument
[all...]
H A DDirectWrite.php134 // JUSTIFY J using Unicode fonts (Word spacing doesn't work)
303 $t = 0;
310 $t+=$w[$i];
325 $t+=$tk;
328 $t+=$w[$i];
334 $t+=$this->mpdf->GetStringWidth(' ');
336 $t+=$this->mpdf->GetStringWidth(' ');
339 $fontsizePt = $this->mpdf->FontSizePt * 0.5 * $u / $t;
341 $fontsizePt = $this->mpdf->FontSizePt * $u / $t;
349 $d = ($t /
[all...]
H A DMpdf.php700 * Can be useful when using CDN with HTTPS and if you don't want to configure settings with SSL certificates.
1306 // sets l r t margin
2870 // Don't re-open tags for lowest level elements - so need to do some adjustments
3007 // Don't correct more than once for background DIV containing a Float
3337 list($name, $c, $m, $y, $k) = preg_split("/\t/", $sc);
3839 $this->AddCJKFont($family); // don't need to add style
4111 $this->AddCJKFont($family); // don't need to add style
4326 if ($this->keep_block_together) { // don't write yet
5153 } elseif ($this->falseBoldWeight && strpos($this->ReqFontStyle, "B") !== false && strpos($this->FontStyle, "B") === false && !($textvar & TextVars::FC_SMALLCAPS)) { // can't use together with OUTLINE or Small Caps // mPDF 5.7.1 ??? why not with SmallCaps ???
5206 $t
9044 _getObjAttr($t) global() argument
15700 _saveTextBuffer($t, $link = '', $intlink = '', $return = false) global() argument
15765 _saveCellTextBuffer($t, $link = '', $intlink = '') global() argument
[all...]
H A DOtl.php323 // Don't use MYANMAR shaper unless using v2 scripttag
337 throw new \Mpdf\MpdfException('Can\'t open file ' . $this->fontCache->tempFilename($this->fontkey . '.GSUBGPOStables.dat'));
499 /* This isn't in the spec, but using MS WORD as a basis, give a lower priority to the 3 characters already checked
1233 $t = $m[1][$i];
1235 if (isset($Features[$t]) && strpos($omittags, $t) === false && (!$onlytags || strpos($tags, $t) !== false )) {
1236 $usetags .= ' ' . $t;
1246 $t = $m[1][$i];
1248 if (isset($Features[$t])
[all...]
H A DOtlDump.php250 foreach ($this->tables as $t) {
251 if ($t['length'] > 0 && $t['length'] < $this->maxStrLenRead) { // 1.02
252 $table = $this->get_chunk($t['offset'], $t['length']);
254 if ($t['tag'] == 'head') {
260 $xchecksum = $t['checksum'];
262 throw new \Mpdf\Exception\FontException(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename, dechex($checksum[0]) . dechex($checksum[1]), $t['tag'], dechex($xchecksum[0]) . dechex($xchecksum[1])));
1196 foreach ($ffeats as $t => $o) {
1209 $ffeats[$t]
[all...]
H A DTTFontFile.php323 foreach ($this->tables as $t) {
324 if ($t['length'] > 0 && $t['length'] < $this->maxStrLenRead) { // 1.02
325 $table = $this->get_chunk($t['offset'], $t['length']);
327 if ($t['tag'] === 'head') {
333 $xchecksum = $t['checksum'];
335 throw new \Mpdf\Exception\FontException(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename, dechex($checksum[0]) . dechex($checksum[1]), $t['tag'], dechex($xchecksum[0]) . dechex($xchecksum[1])));
1407 // This doesn't seem to do anything useful?
1460 foreach ($ffeats as $t
[all...]
H A DTableOfContents.php444 * Ensure the TOC Page Number Style doesn't effect the TOC Numbering (added automatically in `AddPage()` above)
464 foreach ($this->_toc as $t) {
465 if ($t['toc_id'] === '_mpdf_all' || $t['toc_id'] === $toc_id) {
466 $html .= '<div class="mpdf_toc_level_' . $t['l'] . '">';
468 $html .= '<a class="mpdf_toc_a" href="#__mpdfinternallink_' . $t['link'] . '">';
470 $html .= '<span class="mpdf_toc_t_level_' . $t['l'] . '">' . $t['t'] . '</span>';
480 $html .= '<a class="mpdf_toc_a" href="#__mpdfinternallink_' . $t['lin
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DImageProcessor.php535 // Don't need to apply gamma correction if == default i.e. 2.2
632 $t = substr($data, $p + 4, $n);
634 $trns = [$this->translateValue(substr($t, 0, 2), $bpc)];
637 $trns[0] = $this->translateValue(substr($t, 0, 2), $bpc);
638 $trns[1] = $this->translateValue(substr($t, 2, 2), $bpc);
639 $trns[2] = $this->translateValue(substr($t, 4, 2), $bpc);
822 $t = substr($data, $p, $n);
825 $trns = [ord(substr($t, 1, 1))];
827 $trns = [ord(substr($t, 1, 1)), ord(substr($t,
[all...]
H A DSvg.php1161 $t=atan2($vv[1],$vv[3]);
1162 $t=atan2(-$vv[2],$vv[0]); // Should be the same value or skew has been applied
1165 $t *= -1;
1168 $ma = $sx * cos($t);
1169 $mb = $sy * sin($t);
1170 $mc = -$sx * sin($t);
1171 $md = $sy * cos($t);
1923 case 't': // bezier quadratic avec point de control simetrique a lancien point de control
1925 if (!($this->lastcommand == 'Q' || $this->lastcommand == 'q' || $this->lastcommand == 'T' || $this->lastcommand == 't')) {
2125 $t
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Pdf/
H A DProtection.php161 $t = $rc4[$i];
162 $j = ($j + $t + ord($k[$i])) % 256;
164 $rc4[$j] = $t;
178 $t = $rc4[$a];
179 $b = ($b + $t) % 256;
181 $rc4[$b] = $t;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Shaper/
H A DIndic.php131 } /* Khmer Bindu doesn't like to be repositioned. */
432 * i.e. It doesn't form Reph. */
595 * The normalize() routine has already decomposed matras for us, so we don't
669 * Uniscribe doesn't move the Halant with Left Matra.
674 * We don't want to move the virama with the left matra.
834 * request eyelash form of Ra, so we wouldbn't inhibit it
881 * being there, since we don't skip them for the CJCT
950 if ($start + 1 < $end && $start < $base) { /* Otherwise there can't be any pre-base matra characters. */
984 if ($old_pos < $base && $base <= $new_pos) { /* Shouldn't actually happen. */
1005 * shouldn't mov
[all...]
H A DMyanmar.php109 't', /* Vowel posT */
186 $cat = self::OT_D; /* XXX The spec says D0, but Uniscribe doesn't seem to do. */
274 if (preg_match('/^(RaH)?([C|R]|V|d|D)[s]?(H([C|R|V])[s]?)*(H|[a]*[n]?[l]?((m[k]?|k)[a]?)?[e]*[v]*[b]*[A]*(N[a]?)?(t[k]?[a]*[v]*[A]*(N[a]?)?)*(p[A]*(N[a]?)?)*S*[J|Z]?)/', substr($s, $ptr), $ma)) {
278 elseif (preg_match('/^(RaH)?s?(H|[a]*[n]?[l]?((m[k]?|k)[a]?)?[e]*[v]*[b]*[A]*(N[a]?)?(t[k]?[a]*[v]*[A]*(N[a]?)?)*(p[A]*(N[a]?)?)*S*[J|Z]?)/', substr($s, $ptr), $ma)) {
357 * i.e. It doesn't form Reph. */
535 $t = $arr[$j];
537 $arr[$j + 1] = $t;
H A DSea.php122 't',
182 if (preg_match('/^(C|V|G)(p|a|b|t|HC|M|R|T|A)*/', substr($s, $ptr), $ma)) {
186 elseif (preg_match('/^(p|a|b|t|HC|M|R|T|A)+/', substr($s, $ptr), $ma)) {
389 $t = $arr[$j];
391 $arr[$j + 1] = $t;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DColumns.php37 if ($t = $this->getTagInstance($this->mpdf->blk[$b]['tag'])) {
38 $t->close($ahtml, $ihtml);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DMetadataWriter.php562 } // doesn't really matter
671 if (isset($pl['opt']['t']) && is_string($pl['opt']['t'])) {
672 $annot .= ' /T ' . $this->writer->utf16BigEndianTextString($pl['opt']['t']);
/plugin/dw2pdf/vendor/mpdf/qrcode/data/
H A Dqrv6_2.dat321  fp��v���nX�v`�p�˂���rXQJ`�ے�Jl��t�d��rtA�J�vp�fH��~�����v�`�JXQ�r��˂p�JtAd���|��ZdQ�bt��l��Jfp��v���nX�v`���nX�v`��f���~H�XQJ`�ے���bHAZd��rtA�Jl��t��b�~���f`�p�fے`�r��˂p�ZHA��ے`��ZdQ�bt��l��Jtfp��v���nX�v`��f��H�fp�f���~H�fp��v�����bHAZp�˂���rl��t��bdQ�Z|�`�vX��n��JXQr���ZHA�b��ہJXQ�r���l��JtA�rd���|nX�v`��f���~H���v���n�fp��v���nX�v`�p�˂���rXQJ`�ےdQ�Z|���vX��n���vp�fH�ZHA�b��ے`�JXQ�bt��l��A�rd���|��ZdQ�btf���~H�fp��v���rXQJ`�ے��HAZp�˂���rXQJ`�ے�Jl��t��bdQ�Z|��fH����f`�vX��n���vp�fے`�JXQ�r��˂p�JtAd���|��ZdQ�bt��l��Jfp��v���nX�v`�˒��HAZp�˂���rXQJ`�ے�Jl��t��bdQ�Z|��fH����f`�vX��n���vp�fZHA�b��ۀ�ۑpJAHr?�f�H~ㅐftJ�l����˂���rXQJ`�ے�Jl��t��bdQ�Z|���d�tA�Jl�vX��n���vp�fH�`�JXQ�r��˂p�ZHA��ے`��ZdQ�bt��l��Jtfp��v���nX�v`��f��H�fp�˂���rXQJ`�ے�Jl��t��bdQ�Z|���d�tA�Jl�vX��n���vp�fHZHA�b��ے`�JXQ�Hr?ˁ�H~ㅐf۝`v�Xntb�AdZ��QJ`�ے���bHAZpbdQ�Z|���d��rtA���t��b��vp�fH��~���f`r��˂p�ZHA�b��ہJXQ�r���l��JtA�rd���|nX�v`��f���~H���v���n�QJ`�ے���bHAZpbdQ�Z|���d��rtA���t��b��vp�fH��~���f`�`�JXQ�r��˂p��`ZQXb�۝`v�Xn�vˍp�|��dr�Q��bHAZp�˂���rX�d��rtA�Jl��t��
[all...]
H A Dqrv6_3.dat321  fp��v���nX�v`�p�˂���rXQJ`�ے�Jl��t�d��rtA�J�vp�fH��~�����v�`�JXQ�r��˂p�JtAd���|��ZdQ�bt��l��Jfp��v���nX�v`�˒��HAZp�˂���rXQJ`�ے�Jl��t���nX�v`��f���~H�XQJ`�ے���bHAZd��rtA�Jl��t��b�~���f`�p�fے`�r��˂p�ZHA��ے`��ZdQ�bt��l��Jtfp��v���nX�v`��f��H�fp�˂���rXQJ`�ے�Jl��t��bdQ�Z|���f���~H�fp��v�����bHAZp�˂���rl��t��bdQ�Z|�`�vX��n��JXQr���ZHA�b��ہJXQ�r���l��JtA�rd���|nX�v`��f���~H���v���n�QJ`�ے���bHAZpbdQ�Z|���d��rtA�fp��v���nX�v`�p�˂���rXQJ`�ےdQ�Z|���vX��n���vp�fH�ZHA�b��ے`�JXQ�bt��l��A�rd���|��ZdQ�btf���~H�fp��v���rXQJ`�ۙ�bHAZp�˂���rX�d��rtA�Jl��t��bdQ�Z|��fH����f`�vX��n���vp�fے`�JXQ�r��˂p�JtAd���|��ZdQ�bt��l��Jfp��v���nX�v`�˒��HAZp�˂���rXQJ`�ے�Jl��t��bdQ�Z|��fH����f`�vX��n���vp�fZHA�b��ۀ�ۑpJAHr?�f�H~ㅐftJ�l����d�tA�Jl�vX��n���vp�fH�`�JXQ�r��˂p�ZHA��ے`��ZdQ�bt��l��Jtfp��v���nX�v`��f��H�fp�˂���rXQJ`�ے�Jl��t��bdQ�Z|���d�tA�Jl�vX��n���vp�fHZHA�b��ے`�JXQ�Hr?ˁ�H~ㅐf۝`v�Xntb�AdZ����t��b��vp�fH��~���f`r��˂p�ZHA�b��ہJXQ�r���l��JtA�rd���|nX�v`��f���~H���v���n�QJ`�ے���bHAZpbdQ�Z|���d��rtA���t��
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/ttfonts/
H A Docrbinfo.txt43 not be within my power to grant that myself because I didn't write the

12345678910>>...83