Definition:
function _image_get_preview_ratio($w, $h) {}
Parameters
- $w
- $h
Source code
function _image_get_preview_ratio($w, $h) { $max = max($w, $h); return $max > 400 ? (400 / $max) : 1; }
4331
Definition:
function _image_get_preview_ratio($w, $h) {}
function _image_get_preview_ratio($w, $h) { $max = max($w, $h); return $max > 400 ? (400 / $max) : 1; }
4331
No comments yet... Be the first to leave a reply!