Home
last modified time | relevance | path

Searched refs:maxwidth (Results 1 – 2 of 2) sorted by path

/dokuwiki/inc/
H A DJpegMeta.php475 * @param int $maxwidth
479 function getResizeRatio($maxwidth,$maxheight=0){
480 if(!$maxheight) $maxheight = $maxwidth;
487 if($w >= $maxwidth){
488 $ratio = $maxwidth/$w;
495 }elseif($w > $maxwidth){
496 $ratio = $maxwidth/$w;
476 getResizeRatio($maxwidth, $maxheight = 0) global() argument
H A Dtemplate.php1173 * @param int $maxwidth - maximal width of the image
1179 function tpl_img($maxwidth = 0, $maxheight = 0, $link = true, $params = null)
1191 if ($maxwidth && $w >= $maxwidth) {
1192 $ratio = $maxwidth / $w;
1198 } elseif ($maxwidth && $w > $maxwidth) {
1199 $ratio = $maxwidth / $w;
1106 tpl_img($maxwidth = 0, $maxheight = 0, $link = true, $params = null) global() argument