Actions
Bug #14994
closedExtend size limitation in showpic.php script
Start date:
2005-09-28
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.7.0
PHP Version:
5
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The size for image enlargement is limited to 1000*750 in showpic.php (lines 184 & 185).
I try to increase these values and it works well
$this->height = t3lib_div::intInRange($this->height,0,1280);
$this->width = t3lib_div::intInRange($this->width,0,1600);
It could be useful to be able to define the size limits, at least at Typo3 install, at best via TypoScript or Template constants.
(issue imported from #M1503)
Updated by Michael Stucki almost 19 years ago
Should be fixed in the next version, please check.
Actions