|
@@ -159,15 +159,17 @@ class Photo extends Module {
|
|
if ($exists===false) {
|
|
if ($exists===false) {
|
|
|
|
|
|
|
|
|
|
- if ($file['type']==='image/jpeg'&&isset($info['orientation'], $info['width'], $info['height'])&&$info['orientation']!=='') {
|
|
+ if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!=='') {
|
|
- if (!$this->adjustFile($path, $info)) Log::notice($this->database, __METHOD__, __LINE__, 'Could not adjust photo (' . $info['title'] . ')');
|
|
+ $adjustFile = $this->adjustFile($path, $info);
|
|
|
|
+ if ($adjustFile!==false) $info = $adjustFile;
|
|
|
|
+ else Log::notice($this->database, __METHOD__, __LINE__, 'Skipped adjustment of photo (' . $info['title'] . ')');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($info['takestamp']!==''&&$info['takestamp']!==0) @touch($path, $info['takestamp']);
|
|
if ($info['takestamp']!==''&&$info['takestamp']!==0) @touch($path, $info['takestamp']);
|
|
|
|
|
|
|
|
|
|
- if (!$this->createThumb($path, $photo_name)) {
|
|
+ if (!$this->createThumb($path, $photo_name, $info['type'], $info['width'], $info['height'])) {
|
|
Log::error($this->database, __METHOD__, __LINE__, 'Could not create thumbnail for photo');
|
|
Log::error($this->database, __METHOD__, __LINE__, 'Could not create thumbnail for photo');
|
|
exit('Error: Could not create thumbnail for photo!');
|
|
exit('Error: Could not create thumbnail for photo!');
|
|
}
|
|
}
|
|
@@ -235,15 +237,19 @@ class Photo extends Module {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- private function createThumb($url, $filename, $width = 200, $height = 200) {
|
|
+ private function createThumb($url, $filename, $type, $width, $height) {
|
|
|
|
|
|
|
|
|
|
- self::dependencies(isset($this->database, $this->settings, $url, $filename));
|
|
+ self::dependencies(isset($this->database, $this->settings, $url, $filename, $type, $width, $height));
|
|
|
|
|
|
|
|
|
|
$this->plugins(__METHOD__, 0, func_get_args());
|
|
$this->plugins(__METHOD__, 0, func_get_args());
|
|
|
|
|
|
- $photoName = explode(".", $filename);
|
|
+
|
|
|
|
+ $newWidth = 200;
|
|
|
|
+ $newHeight = 200;
|
|
|
|
+
|
|
|
|
+ $photoName = explode('.', $filename);
|
|
$newUrl = LYCHEE_UPLOADS_THUMB . $photoName[0] . '.jpeg';
|
|
$newUrl = LYCHEE_UPLOADS_THUMB . $photoName[0] . '.jpeg';
|
|
$newUrl2x = LYCHEE_UPLOADS_THUMB . $photoName[0] . '@2x.jpeg';
|
|
$newUrl2x = LYCHEE_UPLOADS_THUMB . $photoName[0] . '@2x.jpeg';
|
|
|
|
|
|
@@ -260,37 +266,36 @@ class Photo extends Module {
|
|
$thumb2x = clone $thumb;
|
|
$thumb2x = clone $thumb;
|
|
|
|
|
|
|
|
|
|
- $thumb->cropThumbnailImage($width, $height);
|
|
+ $thumb->cropThumbnailImage($newWidth, $newHeight);
|
|
$thumb->writeImage($newUrl);
|
|
$thumb->writeImage($newUrl);
|
|
$thumb->clear();
|
|
$thumb->clear();
|
|
$thumb->destroy();
|
|
$thumb->destroy();
|
|
|
|
|
|
|
|
|
|
- $thumb2x->cropThumbnailImage($width*2, $height*2);
|
|
+ $thumb2x->cropThumbnailImage($newWidth*2, $newHeight*2);
|
|
$thumb2x->writeImage($newUrl2x);
|
|
$thumb2x->writeImage($newUrl2x);
|
|
$thumb2x->clear();
|
|
$thumb2x->clear();
|
|
$thumb2x->destroy();
|
|
$thumb2x->destroy();
|
|
|
|
|
|
} else {
|
|
} else {
|
|
|
|
|
|
-
|
|
+
|
|
- $info = getimagesize($url);
|
|
+ $thumb = imagecreatetruecolor($newWidth, $newHeight);
|
|
|
|
+ $thumb2x = imagecreatetruecolor($newWidth*2, $newHeight*2);
|
|
|
|
|
|
-
|
|
+
|
|
- $thumb = imagecreatetruecolor($width, $height);
|
|
+ if ($width<$height) {
|
|
- $thumb2x = imagecreatetruecolor($width*2, $height*2);
|
|
+ $newSize = $width;
|
|
- if ($info[0]<$info[1]) {
|
|
|
|
- $newSize = $info[0];
|
|
|
|
$startWidth = 0;
|
|
$startWidth = 0;
|
|
- $startHeight = $info[1]/2 - $info[0]/2;
|
|
+ $startHeight = $height/2 - $width/2;
|
|
} else {
|
|
} else {
|
|
- $newSize = $info[1];
|
|
+ $newSize = $height;
|
|
- $startWidth = $info[0]/2 - $info[1]/2;
|
|
+ $startWidth = $width/2 - $height/2;
|
|
$startHeight = 0;
|
|
$startHeight = 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- switch($info['mime']) {
|
|
+ switch($type) {
|
|
case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;
|
|
case 'image/jpeg': $sourceImg = imagecreatefromjpeg($url); break;
|
|
case 'image/png': $sourceImg = imagecreatefrompng($url); break;
|
|
case 'image/png': $sourceImg = imagecreatefrompng($url); break;
|
|
case 'image/gif': $sourceImg = imagecreatefromgif($url); break;
|
|
case 'image/gif': $sourceImg = imagecreatefromgif($url); break;
|
|
@@ -300,12 +305,12 @@ class Photo extends Module {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- fastimagecopyresampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $width, $height, $newSize, $newSize);
|
|
+ fastimagecopyresampled($thumb, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth, $newHeight, $newSize, $newSize);
|
|
imagejpeg($thumb, $newUrl, $this->settings['thumbQuality']);
|
|
imagejpeg($thumb, $newUrl, $this->settings['thumbQuality']);
|
|
imagedestroy($thumb);
|
|
imagedestroy($thumb);
|
|
|
|
|
|
|
|
|
|
- fastimagecopyresampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $width*2, $height*2, $newSize, $newSize);
|
|
+ fastimagecopyresampled($thumb2x, $sourceImg, 0, 0, $startWidth, $startHeight, $newWidth*2, $newHeight*2, $newSize, $newSize);
|
|
imagejpeg($thumb2x, $newUrl2x, $this->settings['thumbQuality']);
|
|
imagejpeg($thumb2x, $newUrl2x, $this->settings['thumbQuality']);
|
|
imagedestroy($thumb2x);
|
|
imagedestroy($thumb2x);
|
|
|
|
|
|
@@ -329,10 +334,11 @@ class Photo extends Module {
|
|
|
|
|
|
$this->plugins(__METHOD__, 0, func_get_args());
|
|
$this->plugins(__METHOD__, 0, func_get_args());
|
|
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
- $newWidth = 1920;
|
|
+ $newWidth = 1920;
|
|
- $newHeight = 1080;
|
|
+ $newHeight = 1080;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -379,6 +385,8 @@ class Photo extends Module {
|
|
|
|
|
|
$this->plugins(__METHOD__, 0, func_get_args());
|
|
$this->plugins(__METHOD__, 0, func_get_args());
|
|
|
|
|
|
|
|
+ $swapSize = false;
|
|
|
|
+
|
|
if (extension_loaded('imagick')&&$this->settings['imagick']==='1') {
|
|
if (extension_loaded('imagick')&&$this->settings['imagick']==='1') {
|
|
|
|
|
|
$rotateImage = 0;
|
|
$rotateImage = 0;
|
|
@@ -387,17 +395,20 @@ class Photo extends Module {
|
|
|
|
|
|
case 3:
|
|
case 3:
|
|
$rotateImage = 180;
|
|
$rotateImage = 180;
|
|
- $imageOrientation = 1;
|
|
|
|
break;
|
|
break;
|
|
|
|
|
|
case 6:
|
|
case 6:
|
|
- $rotateImage = 90;
|
|
+ $rotateImage = 90;
|
|
- $imageOrientation = 1;
|
|
+ $swapSize = true;
|
|
break;
|
|
break;
|
|
|
|
|
|
case 8:
|
|
case 8:
|
|
- $rotateImage = 270;
|
|
+ $rotateImage = 270;
|
|
- $imageOrientation = 1;
|
|
+ $swapSize = true;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ default:
|
|
|
|
+ return false;
|
|
break;
|
|
break;
|
|
|
|
|
|
}
|
|
}
|
|
@@ -406,7 +417,7 @@ class Photo extends Module {
|
|
$image = new Imagick();
|
|
$image = new Imagick();
|
|
$image->readImage($path);
|
|
$image->readImage($path);
|
|
$image->rotateImage(new ImagickPixel(), $rotateImage);
|
|
$image->rotateImage(new ImagickPixel(), $rotateImage);
|
|
- $image->setImageOrientation($imageOrientation);
|
|
+ $image->setImageOrientation(1);
|
|
$image->writeImage($path);
|
|
$image->writeImage($path);
|
|
$image->clear();
|
|
$image->clear();
|
|
$image->destroy();
|
|
$image->destroy();
|
|
@@ -416,7 +427,6 @@ class Photo extends Module {
|
|
|
|
|
|
$newWidth = $info['width'];
|
|
$newWidth = $info['width'];
|
|
$newHeight = $info['height'];
|
|
$newHeight = $info['height'];
|
|
- $process = false;
|
|
|
|
$sourceImg = imagecreatefromjpeg($path);
|
|
$sourceImg = imagecreatefromjpeg($path);
|
|
|
|
|
|
switch ($info['orientation']) {
|
|
switch ($info['orientation']) {
|
|
@@ -424,6 +434,7 @@ class Photo extends Module {
|
|
case 2:
|
|
case 2:
|
|
|
|
|
|
|
|
|
|
|
|
+ return false;
|
|
break;
|
|
break;
|
|
|
|
|
|
case 3:
|
|
case 3:
|
|
@@ -434,11 +445,13 @@ class Photo extends Module {
|
|
case 4:
|
|
case 4:
|
|
|
|
|
|
|
|
|
|
|
|
+ return false;
|
|
break;
|
|
break;
|
|
|
|
|
|
case 5:
|
|
case 5:
|
|
|
|
|
|
|
|
|
|
|
|
+ return false;
|
|
break;
|
|
break;
|
|
|
|
|
|
case 6:
|
|
case 6:
|
|
@@ -446,11 +459,13 @@ class Photo extends Module {
|
|
$sourceImg = imagerotate($sourceImg, -90, 0);
|
|
$sourceImg = imagerotate($sourceImg, -90, 0);
|
|
$newWidth = $info['height'];
|
|
$newWidth = $info['height'];
|
|
$newHeight = $info['width'];
|
|
$newHeight = $info['width'];
|
|
|
|
+ $swapSize = true;
|
|
break;
|
|
break;
|
|
|
|
|
|
case 7:
|
|
case 7:
|
|
|
|
|
|
|
|
|
|
|
|
+ return false;
|
|
break;
|
|
break;
|
|
|
|
|
|
case 8:
|
|
case 8:
|
|
@@ -458,30 +473,38 @@ class Photo extends Module {
|
|
$sourceImg = imagerotate($sourceImg, 90, 0);
|
|
$sourceImg = imagerotate($sourceImg, 90, 0);
|
|
$newWidth = $info['height'];
|
|
$newWidth = $info['height'];
|
|
$newHeight = $info['width'];
|
|
$newHeight = $info['width'];
|
|
|
|
+ $swapSize = true;
|
|
break;
|
|
break;
|
|
|
|
|
|
- }
|
|
+ default:
|
|
-
|
|
+ return false;
|
|
-
|
|
+ break;
|
|
- if ($process===true) {
|
|
|
|
|
|
|
|
-
|
|
+ }
|
|
- $newSourceImg = imagecreatetruecolor($newWidth, $newHeight);
|
|
|
|
- imagecopyresampled($newSourceImg, $sourceImg, 0, 0, 0, 0, $newWidth, $newHeight, $newWidth, $newHeight);
|
|
|
|
- imagejpeg($newSourceImg, $path, 100);
|
|
|
|
|
|
|
|
-
|
|
+
|
|
- imagedestroy($sourceImg);
|
|
+ $newSourceImg = imagecreatetruecolor($newWidth, $newHeight);
|
|
- imagedestroy($newSourceImg);
|
|
+ imagecopyresampled($newSourceImg, $sourceImg, 0, 0, 0, 0, $newWidth, $newHeight, $newWidth, $newHeight);
|
|
|
|
+ imagejpeg($newSourceImg, $path, 100);
|
|
|
|
|
|
- }
|
|
+
|
|
|
|
+ imagedestroy($sourceImg);
|
|
|
|
+ imagedestroy($newSourceImg);
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->plugins(__METHOD__, 1, func_get_args());
|
|
$this->plugins(__METHOD__, 1, func_get_args());
|
|
|
|
|
|
- return true;
|
|
+
|
|
|
|
+
|
|
|
|
+ if ($swapSize===true) {
|
|
|
|
+ $swapSize = $info['width'];
|
|
|
|
+ $info['width'] = $info['height'];
|
|
|
|
+ $info['height'] = $swapSize;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return $info;
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|