If a picture was too small it got cropped

This commit is contained in:
Michael Vogel 2014-09-02 02:36:04 +02:00
parent 961440e48f
commit 7144d22cc1
1 changed files with 9 additions and 4 deletions

View File

@ -957,11 +957,16 @@ function store_photo($a, $uid, $imagedata = "", $url = "") {
$image["thumb"] = $a->get_baseurl()."/photo/{$hash}-3.".$ph->getExt();
}
if (isset($image["thumb"]))
$image["preview"] = $image["thumb"];
// Set the full image as preview image. This will be overwritten, if the picture is larger than 640.
$image["preview"] = $image["full"];
if (isset($image["small"]))
$image["preview"] = $image["small"];
// Deactivated, since that would result in a cropped preview, if the picture wasn't larger than 320
//if (isset($image["thumb"]))
// $image["preview"] = $image["thumb"];
// Unsure, if this should be activated or deactivated
//if (isset($image["small"]))
// $image["preview"] = $image["small"];
if (isset($image["medium"]))
$image["preview"] = $image["medium"];