Searched refs:maxheight (Results 1 – 12 of 12) sorted by relevance
/plugin/gallery/ |
H A D | syntax.php |
|
/plugin/orphanmedia/ |
H A D | syntax.php | 813 function getResizeRatio($maxwidth,$maxheight=0){ argument 814 if(!$maxheight) $maxheight = $maxwidth; 818 elseif($h > $maxheight) { $ratio = $maxheight/$h; } 821 if($h >= $maxheight) { $ratio = $maxheight/$h; }
|
/plugin/orphanmedia2/ |
H A D | syntax.php | 814 function getResizeRatio($maxwidth,$maxheight=0){ argument 815 if(!$maxheight) $maxheight = $maxwidth; 819 elseif($h > $maxheight) { $ratio = $maxheight/$h; } 822 if($h >= $maxheight) { $ratio = $maxheight/$h; }
|
/plugin/odt/ODT/ |
H A D | ODTUtility.php | 191 * @param int $maxheight The maximum height the image shall have 196 public static function getImageSize($src, $maxwidth=NULL, $maxheight=NULL){ argument 210 if ($maxheight && $height > $maxheight) { 211 $width = $width * ($maxheight/$height); 212 $height = $maxheight;
|
H A D | ODTDocument.php | 1545 public function getImageSize($src, $maxwidth=NULL, $maxheight=NULL){ argument 1546 return ODTUtility::getImageSize($src, $maxwidth, $maxheight);
|
/plugin/photogallery/phpThumb/ |
H A D | phpthumb.functions.php | 302 …public static function ScaleToFitInBox($width, $height, $maxwidth=null, $maxheight=null, $allow_en… argument 304 $maxheight = (null === $maxheight ? $height : $maxheight); 310 if (($height > $maxheight) || ($height < $maxheight)) { 311 $scale_y = ($maxheight / $height);
|
H A D | phpthumb.class.php | 3389 $maxheight = min($this->h, $this->w / $original_aspect_ratio); 3392 $maxheight = $this->w / $original_aspect_ratio; 3395 $maxheight = $this->h; 3398 $maxheight = $this->thumbnailCropH; 3402 …$maxheight = phpthumb_functions::nonempty_min($this->h, $this->thumbnailCropH, $this->config_outpu… 3404 $maxwidth = min($maxwidth, $maxheight * $original_aspect_ratio); 3405 $maxheight = min($maxheight, $maxwidth / $original_aspect_ratio); 3410 $this->thumbnail_image_height = $maxheight; 3412 $this->thumbnail_height = $maxheight;
|
/plugin/imageflow/ |
H A D | script.js | 23 this.maxheight = this.root.width() * this.widthfactor; 116 this.root.addClass('scripting_active').html("").height(this.maxheight + 20); 382 if ( new_img_h > _self.maxheight ) { 383 new_img_h = _self.maxheight;
|
/plugin/oembed/docs/ |
H A D | dokuwiki-oembed.txt | 32 …en extra options in the form ''%%{{>url?options}}%%'' such as ''%%maxwidth%%'' or ''%%maxheight%%''
|
H A D | dokuwiki-oembed.org | 36 …viders can be given extra options in the form ~{{>url?options}}~ such as ~maxwidth~ or ~maxheight~
|
/plugin/odt/renderer/ |
H A D | page.php | 1689 public function _odtGetImageSize($src, $maxwidth=NULL, $maxheight=NULL){ argument 1690 return $this->document->getImageSize($src, $maxwidth, $maxheight);
|
/plugin/xlsx2dw/packages/xlsx/ |
H A D | xlsx.mjs | 18417 case 'maxheight' /*case 'MaxHeight'*/: break;
|