X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fimagefile.php;h=a328df9852bd965f33e0d0107021505f61c56281;hb=f134a423f6a9e7bb61d069c4d6281c05417bbd45;hp=71074877374e4dc38feaeed032948501846b4596;hpb=0f938ff23479d92113620552eab76b50613c87e3;p=quix0rs-gnu-social.git diff --git a/lib/imagefile.php b/lib/imagefile.php index 7107487737..a328df9852 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -95,7 +95,7 @@ class ImageFile if ($this->type == IMAGETYPE_JPEG && function_exists('exif_read_data')) { // Orientation value to rotate thumbnails properly - $exif = exif_read_data($this->filepath); + $exif = @exif_read_data($this->filepath); if (is_array($exif) && isset($exif['Orientation'])) { switch ((int)$exif['Orientation']) { case 1: // top is top @@ -150,11 +150,17 @@ class ImageFile } try { - $image = new ImageFile($file->id, $imgPath); + $image = new ImageFile($file->getID(), $imgPath); } catch (UnsupportedMediaException $e) { // Avoid deleting the original - if ($imgPath != $file->getPath()) { - unlink($imgPath); + try { + if ($imgPath !== $file->getPath()) { + @unlink($imgPath); + } + } catch (FileNotFoundException $e) { + // File reported (via getPath) that the original file + // doesn't exist anyway, so it's safe to delete $imgPath + @unlink($imgPath); } throw $e; } @@ -541,7 +547,7 @@ class ImageFile return $count > 1; } - public function getFileThumbnail($width, $height, $crop) + public function getFileThumbnail($width, $height, $crop, $upscale=false) { if (!$this->fileRecord instanceof File) { throw new ServerException('No File object attached to this ImageFile object.'); @@ -553,6 +559,15 @@ class ImageFile $crop = common_config('thumbnail', 'crop'); } + if (!$upscale) { + if ($width > $this->width) { + $width = $this->width; + } + if (!is_null($height) && $height > $this->height) { + $height = $this->height; + } + } + if ($height === null) { $height = $width; $crop = true; @@ -598,12 +613,17 @@ class ImageFile // Perform resize and store into file $this->resizeTo($outpath, $box); - // Avoid deleting the original - if ($this->getPath() != File_thumbnail::path($this->filename)) { - $this->unlink(); + try { + // Avoid deleting the original + if (!in_array($this->getPath(), [File::path($this->filename), File_thumbnail::path($this->filename)])) { + $this->unlink(); + } + } catch (FileNotFoundException $e) { + // $this->getPath() says the file doesn't exist anyway, so no point in trying to delete it! } - return File_thumbnail::saveThumbnail($this->fileRecord->id, - File_thumbnail::url($outname), + + return File_thumbnail::saveThumbnail($this->fileRecord->getID(), + null, // no url since we generated it ourselves and can dynamically generate the url $width, $height, $outname); }