如何使用PHP调整图像大小并裁剪图像?

时间:2012-05-07 00:50:20

标签: php image resize crop

我正在寻找某种功能,可以将图像大小调整为100x100,200x200等,但保持上传图像的宽高比。

我的计划是使用某种裁剪方式,以便在图像的高度或宽度达到100之后在图像的中心裁剪。

所以我的逻辑有点像这样。

if ( $currentHeight > $currentWidth ) {
  //resize width to 100 and crop top and bottom off so it is 100 high
}

elseif ( $currentWidth > $currentHeight ) {
  //resize height to 100 and crop left and right off so it is 100 wide
}

在我看来,图像将是100x100,它看起来不会奇怪!

有谁知道如何在一个整洁的功能中做到这一点??

3 个答案:

答案 0 :(得分:1)

您还可以使用纯css使用clip:rect裁剪图像以适合特定尺寸:

<style>
/*Size of div that contains the dox*/
.crop{
    float:left;
    position:relative;
    width:100px;
    height:100px;
    margin:0 auto;
    border: 2px solid #474747;
}

.crop img{
    margin:0;
    position:absolute;
    top:-25px;
    left:-25px;
    /*       (Top,Right,Bottom,Left) */
    clip:rect(25px 125px 125px 25px);
}    
</style>

<div class="crop">
    <img src="http://static.php.net/www.php.net/images/php.gif" width="200" title="" alt="" />
<div>
<br/>

<div class="crop">
    <img src="http://cdn.sstatic.net/stackoverflow/img/sprites.png?v=5" title="" alt="" />
<div>

See In Action

答案 1 :(得分:0)

如果你想裁剪中心部分,那么我认为计算坐标的逻辑可以是这样的:

1)计算作物区域的水平协调:

$horizontal_center = $current_width/2;
$left = $horizontal_center - $new_width/2;
$right = $horizontal_center + $new_width/2;

2)计算作物区域的垂直坐标:

$vertical_center = $current_height/2;
$top = $vertical_center - $new_height/2;
$bottom = $vertical_center + $new_height/2;

答案 2 :(得分:0)

这是我的回答 - 我写了一个imagemagick / php函数来执行此操作:

stackoverflow.com/questions/20927238/