XenForo
Administrative
- Thread starter
- Admin
- #1
Hello,
When Xenforo calls ImageMagick (PECL version, fwiw), it calls the 'thumbnailImage' function instead of resizeImage (or adaptiveResizeImage).
(resizeImage is only used by Xenforo for Scaling Up)
This can be seen in the php file
\upload\library\XenForo\Image\ImageMagick\Pecl.php:
Code:
Read more
Read more about this Feed . . .
When Xenforo calls ImageMagick (PECL version, fwiw), it calls the 'thumbnailImage' function instead of resizeImage (or adaptiveResizeImage).
(resizeImage is only used by Xenforo for Scaling Up)
This can be seen in the php file
\upload\library\XenForo\Image\ImageMagick\Pecl.php:
Code:
Code:
foreach ($this->_image AS $frame)
{
if ($scaleUp)
{
$frame->resizeImage($width, $height, Imagick::FILTER_QUADRATIC, .5, true);
}
else if ($oldImagick)
{...
Read more
Read more about this Feed . . .