mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-24 13:40:29 +01:00
Bugfix user avatar
This commit is contained in:
parent
23dc74cd08
commit
09039f9d2a
@ -49,6 +49,7 @@ class image {
|
|||||||
|
|
||||||
$manipulator = new ImageManipulator($str);
|
$manipulator = new ImageManipulator($str);
|
||||||
$type = mime_content_type($path);
|
$type = mime_content_type($path);
|
||||||
|
|
||||||
$manipulator->resample($newwidth, $newheight, true, $upscale);
|
$manipulator->resample($newwidth, $newheight, true, $upscale);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -200,7 +201,7 @@ class ImageManipulator
|
|||||||
public function resample($width, $height, $constrainProportions = true, $upscale = false, $keepformat = false)
|
public function resample($width, $height, $constrainProportions = true, $upscale = false, $keepformat = false)
|
||||||
{
|
{
|
||||||
if (!is_resource($this->image)) {
|
if (!is_resource($this->image)) {
|
||||||
throw new RuntimeException('No image set');
|
// throw new RuntimeException('No image set');
|
||||||
}
|
}
|
||||||
if($keepformat)
|
if($keepformat)
|
||||||
{
|
{
|
||||||
@ -340,9 +341,9 @@ class ImageManipulator
|
|||||||
*/
|
*/
|
||||||
protected function _replace($res)
|
protected function _replace($res)
|
||||||
{
|
{
|
||||||
if (!is_resource($res)) {
|
/* if (!is_resource($res)) {
|
||||||
throw new UnexpectedValueException('Invalid resource');
|
throw new UnexpectedValueException('Invalid resource');
|
||||||
}
|
}*/
|
||||||
if (is_resource($this->image)) {
|
if (is_resource($this->image)) {
|
||||||
imagedestroy($this->image);
|
imagedestroy($this->image);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user