If a picture was too small it got cropped
This commit is contained in:
parent
961440e48f
commit
7144d22cc1
|
@ -957,11 +957,16 @@ function store_photo($a, $uid, $imagedata = "", $url = "") {
|
||||||
$image["thumb"] = $a->get_baseurl()."/photo/{$hash}-3.".$ph->getExt();
|
$image["thumb"] = $a->get_baseurl()."/photo/{$hash}-3.".$ph->getExt();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($image["thumb"]))
|
// Set the full image as preview image. This will be overwritten, if the picture is larger than 640.
|
||||||
$image["preview"] = $image["thumb"];
|
$image["preview"] = $image["full"];
|
||||||
|
|
||||||
if (isset($image["small"]))
|
// Deactivated, since that would result in a cropped preview, if the picture wasn't larger than 320
|
||||||
$image["preview"] = $image["small"];
|
//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"]))
|
if (isset($image["medium"]))
|
||||||
$image["preview"] = $image["medium"];
|
$image["preview"] = $image["medium"];
|
||||||
|
|
Loading…
Reference in a new issue