aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/filestore.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/filestore.php')
-rw-r--r--engine/lib/filestore.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/engine/lib/filestore.php b/engine/lib/filestore.php
index c52599af5..b40baf4e7 100644
--- a/engine/lib/filestore.php
+++ b/engine/lib/filestore.php
@@ -516,12 +516,12 @@
$newheight = $height;
if ($width > $maxwidth) {
- $newwidth = $maxwidth;
$newheight = floor($height * ($maxwidth / $width));
+ $newwidth = $maxwidth;
}
if ($newheight > $maxheight) {
- $newheight = $maxheight;
- $newwidth = floor($newwidth * ($maxheight / $newheight));
+ $newwidth = floor($newwidth * ($maxheight / $newheight));
+ $newheight = $maxheight;
}
$accepted_formats = array(
@@ -539,8 +539,10 @@
// Resize and return the image contents!
imagecopyresized($newimage, $oldimage, 0,0,0,0,$newwidth,$newheight,$width,$height);
- imagejpeg($newimage, $_FILES[$input_name]['tmp_name'] . $newwidth . $newheight . ".tmp", 90);
- return file_get_contents($_FILES[$input_name]['tmp_name'] . $newwidth . $newheight . ".tmp");
+ ob_start();
+ imagejpeg($newimage, null, 90);
+ $jpeg = ob_get_clean();
+ return $jpeg;
}