Home
last modified time | relevance | path

Searched refs:TextVars (Results 1 – 8 of 8) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Css/
H A DTextVars.php5 class TextVars class
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DCssManager.php6 use Mpdf\Css\TextVars; alias
2040 if ($bilp['textvar'] & TextVars::FD_LINETHROUGH) {
2041 if ($bilp['textvar'] & TextVars::FD_UNDERLINE) {
2046 } elseif ($bilp['textvar'] & TextVars::FD_UNDERLINE) {
2052 if ($bilp['textvar'] & TextVars::FA_SUPERSCRIPT) {
2054 } elseif ($bilp['textvar'] & TextVars::FA_SUBSCRIPT) {
2060 if ($bilp['textvar'] & TextVars::FT_CAPITALIZE) {
2062 } elseif ($bilp['textvar'] & TextVars::FT_UPPERCASE) {
2064 } elseif ($bilp['textvar'] & TextVars::FT_LOWERCASE) {
2070 if ($bilp['textvar'] & TextVars
[all...]
H A DDirectWrite.php6 use Mpdf\Css\TextVars; alias
467 $textvar |= TextVars::FC_KERNING;
H A DMpdf.php9 use Mpdf\Css\TextVars;
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
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) {
4397 if ($this->usingCoreFont && !($textvar & TextVars::FC_SMALLCAPS) && !($textvar & TextVars
11 use Mpdf\Css\TextVars; global() alias
[all...]
H A DOtl.php7 use Mpdf\Css\TextVars; alias
973 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.php6 use Mpdf\Css\TextVars; alias
142 $this->mpdf->textvar |= TextVars::FC_SMALLCAPS;
161 $this->mpdf->textvar |= TextVars::FC_SMALLCAPS;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DSvg.php6 use Mpdf\Css\TextVars; alias
2700 $textvar = ($textvar | TextVars::FC_KERNING);
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md111 - Moved `TextVars` constants to separate class