Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-11Prevent loading images that would require too much memory.Joachim Bauch
For most image formats, the header specifies the width/height. PHP allocates an image object from that size, even if the actual image data is much smaller. This image object size is not limited by the limit configured in PHP. The memory limit can be configured through "config.php" setting "preview_max_memory" and defaults to 128 MBytes which should be enough for most images without filling up all memory. Signed-off-by: Joachim Bauch <bauch@struktur.de>
2021-10-28Revert "Do not run image tests on php8"Côme Chilliet
This reverts commit d690f909284ae4bb4dee7d00318104ee76720bfa. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2020-12-07php cs fixRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-12-07Do not run image tests on php8Roeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2020-04-10Add visibility to all methods and position of static keywordChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2020-03-26Use the short array syntax, everywhereChristoph Wurst
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2019-11-27Make phpunit8 compatibleRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-01-18Improve OC_Image code to not guess the type of input, but actually request ↵Morris Jobke
the specific methods to be called Followup to #7836 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-11-27Remove unused mimetype detection method in OC_ImageMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-02-22Use 90% JPEG quality for thumbnails and previews by defaultJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2016-07-08Remove unneeded checks if it runs on a Windows machineMorris Jobke
* the setup check is still there
2016-05-19Fix lib/Joas Schilling