gd – imagecrop()替代PHP <5.5

前端之家收集整理的这篇文章主要介绍了gd – imagecrop()替代PHP <5.5前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一个由好奇心驱动的简单问题,可能是一个复杂的答案:是否可以通过组合其他GD函数来模拟早期版本中的新 PHP 5.5 imagecrop(),如5.4.

Awn ..但是没有imagecrop()black line bug,请. :p

这应该是imagecrop()的替代品(没有bug …):
function mycrop($src,array $rect)
{
    $dest = imagecreatetruecolor($rect['width'],$rect['height']);
    imagecopy(
        $dest,$src,$rect['x'],$rect['y'],$rect['width'],$rect['height']
    );

    return $dest;
}

用法

$img = mycrop($img,['x' => 10,'y' => 10,'width' => 100,'height' => 100]);

请注意,该错误显然已在PHP 5.6.12中修复.

原文链接:https://www.f2er.com/php/134837.html

猜你在找的PHP相关文章