Lines Matching refs:ch

2053 	function _resizeBackgroundImage($imw, $imh, $cw, $ch, $resize, $repx, $repy, $pba = [], $size = [])
2063 $ch = $pba['h'];
2067 $ch = $ch * Mpdf::SCALE;
2079 if ($h > $ch) {
2080 $w = $w * $ch / $h;
2081 $h = $ch;
2088 if ($h < $ch) {
2089 $w = $w * $h / $ch;
2090 $h = $ch;
2101 $size['h'] = ($ch * $size['h']);
2121 } elseif ($resize == 2 && $imh > $ch) {
2122 $w = $imw * $ch / $imh;
2123 return [$w, $ch, $repx, $repy];
2131 if ($h > $ch) {
2132 $w = $w * $ch / $h;
2133 $h = $ch;
2140 $w = $imw * $ch / $imh;
2141 return [$w, $ch, $repx, $repy];
2143 return [$cw, $ch, $repx, $repy];
4455 $ch = $this->CurrentFont['desc']['CapHeight'];
4457 $ch = 700;
4459 $adjusty = (-$ch / 1000 * $this->FontSize) * 0.35;
5306 $ch = $this->fonts[$decorationfontkey]['desc']['CapHeight'];
5308 $ch = 700;
5310 $adjusty = (-$ch / 1000 * $decorationfontsize) * $this->baselineS;
5345 $ch = $this->fonts[$decorationfontkey]['desc']['CapHeight'];
5347 $ch = 700;
5349 $adjusty = (-$ch / 1000 * $decorationfontsize) * $this->baselineO;
14627 $ch = $clip_y1 - $y;
14628 $this->writer->write(sprintf('%.3F %.3F %.3F %.3F re %s', $x * Mpdf::SCALE, ($this->h - $y) * Mpdf::SCALE, $w * Mpdf::SCALE, -$ch * Mpdf::SCALE, $op));
14630 $tmp = "q\n" . sprintf('%.3F %.3F %.3F %.3F re %s', $x * Mpdf::SCALE, ($this->h - $y) * Mpdf::SCALE, $w * Mpdf::SCALE, -$ch * Mpdf::SCALE, $op);
16590 $ch = $this->y - $bak_y;
16593 return $ch;
20405 $ch = ($tempch ) + $extrh;
20418 $ch = $tempch + $extrh;
20420 // If height is defined and it is bigger than calculated $ch then update values
20421 if (isset($c['h']) && $c['h'] > $ch) {
20422 $c['mih'] = $ch; // in order to keep valign working
20423 $ch = $c['h'];
20425 $c['mih'] = $ch;
20429 } elseif ($heightrow < $ch) {
20430 $heightrow = $ch;
20449 $headerrowheight += $ch;
20450 $headerrowheightplus += $ch + $extra;
20454 $footerrowheight += $ch;
20455 $footerrowheightplus += $ch + $extra;
20458 $checkmaxheight = max($checkmaxheight, $ch);
20459 $checkmaxheightplus = max($checkmaxheightplus, $ch + $extra);
20462 $firstrowheight = max($ch, $firstrowheight);