Home
last modified time | relevance | path

Searched refs:maxh (Results 1 – 3 of 3) sorted by relevance

/plugin/photogallery/
H A Dsyntax.php836 function _fit_ratio($w, $h, $maxw, $maxh){ argument
840 if($h * $ratio > $maxh){
841 $ratio = $maxh/$h;
844 elseif($h > $maxh){
845 $ratio = $maxh/$h;
853 function _fill_ratio($w, $h, $maxw, $maxh){ argument
857 if($h * $ratio < $maxh){
858 $ratio = $maxh/$h;
861 elseif($h > $maxh){
862 $ratio = $maxh/$h;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DImg.php166 $maxw = $maxh = $minw = $minh = false;
183 $maxh = $this->sizeConverter->convert(
190 $maxh = $this->sizeConverter->convert(
360 if ($maxh && $h > $maxh) {
361 $h = $maxh;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php8889 $maxh = $this->h;
8896 $maxh -= $this->watermark_size * 2;
8899 if ($h > $maxh) {
8900 $h = $maxh;
8909 $maxh = $this->h - ($this->tMargin + $this->bMargin);
8912 if ($h > $maxh) {
8913 $h = $maxh;
8919 if ($h > $maxh) {
8920 $h = $maxh;
8929 if ($h > $maxh) {
[all...]