38 public function render($dimension =
'width') {
39 if ($dimension !==
'width' && $dimension !==
'height') {
40 throw new \TYPO3\CMS\Install\ViewHelpers\Exception(
41 'Dimension must be either \'width\' or \'height\'',
46 if (!is_file($absolutePathToFile)) {
47 throw new \TYPO3\CMS\Install\ViewHelpers\Exception(
52 $actualDimension = getimagesize($absolutePathToFile);
53 if ($dimension ===
'width') {
54 $size = $actualDimension[0];
56 $size = $actualDimension[1];
render($dimension='width')