From 9f5c61b1fd7a246ae5327d133842982b8b2385ce Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 15 Oct 2015 14:52:31 +0200 Subject: reflect default image size changes in mod/photos --- mod/photos.php | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/mod/photos.php b/mod/photos.php index 65bc43b1b..6451304ff 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -252,12 +252,26 @@ function photos_post(&$a) { intval($page_owner_uid) ); + if($width > 1024 || $height > 1024) { + $ph->scaleImage(1024); + $width = $ph->getWidth(); + $height = $ph->getHeight(); + + $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 1", + dbescbin($ph->imageString()), + intval($height), + intval($width), + dbesc($resource_id), + intval($page_owner_uid) + ); + } + if($width > 640 || $height > 640) { $ph->scaleImage(640); $width = $ph->getWidth(); $height = $ph->getHeight(); - - $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 1", + + $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 2", dbescbin($ph->imageString()), intval($height), intval($width), @@ -271,7 +285,7 @@ function photos_post(&$a) { $width = $ph->getWidth(); $height = $ph->getHeight(); - $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 2", + $x = q("update photo set data = '%s', height = %d, width = %d where `resource_id` = '%s' and uid = %d and scale = 3", dbescbin($ph->imageString()), intval($height), intval($width), -- cgit v1.2.3