From 73082a338b108f11fc27e48746f10ffc11e034fc Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 15 Oct 2015 12:56:22 +0200 Subject: (re)add default image-size 320px - it is good for gallery preview. this size has the suffix -3 now --- include/photos.php | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include/photos.php') diff --git a/include/photos.php b/include/photos.php index 240f3d1c4..2fc25b4bf 100644 --- a/include/photos.php +++ b/include/photos.php @@ -211,6 +211,15 @@ function photo_upload($channel, $observer, $args) { $errors = true; } + if(($width > 320 || $height > 320) && (! $errors)) { + $ph->scaleImage(320); + $p['scale'] = 3; + $r3 = $ph->save($p); + $smallest = 3; + if(! $r3) + $errors = true; + } + if($errors) { q("delete from photo where resource_id = '%s' and uid = %d", dbesc($photo_hash), -- cgit v1.2.3