dongzhou1865 2017-03-04 17:19
浏览 138
已采纳

将图像从中心裁剪成Yii2 Imagine中可以制作的最大正方形?

I'm using the Yii2 extension Imagine and I need to make 150x150 images from user uploads.

Currently I am just doing something like this:

use yii\imagine\Image;

....

Image::thumbnail($save_path, $img_size, $img_size)->save($save_path);

Obviously this can cause issues if one of the dimensions is < 150px once resized.

So what I'm trying to primarily figure out is how to crop the image into a square before it is resized, so that when I resize it there won't be any aspect ratio issues.

Now, I know you can crop the image with something like:

Image::crop($save_path, $img_size, $img_size, [5, 5]);

But problem is doing this before resizing the image will likely not give you what you want since the image may be so large and cropping it after resizing won't work either as one dimension may already have been reduced to < 150px.

So what I'm trying to work out is how can I crop the image before resizing to the maximum size square possible and from the center out?

Edit:

Ok, I have worked out a way to handle this, but was wondering if there was anyway to accomplish the below easily or will I need to code it myself?

  • Work out the smallest dimension (width or height)
  • Then take that dimension and that will be the largest square you can have
  • Work out how to position that in the center for the crop
  • Now you can do the resize
  • If after the resize either side is smaller than 150, create new white background image and then center the new image on that
  • Save image
  • Done!
  • 写回答

2条回答 默认 最新

  • douzhong1907 2017-03-12 20:14
    关注

    Another try :p

    <?php
    
    use yii\imagine\Image;
    use Imagine\Image\Box;
    use Imagine\Image\Point;
    
    // ...
    
    $thumbnail = Image::thumbnail($save_path, $img_size, $img_size);
    $size = $thumbnail->getSize();
    if ($size->getWidth() < $img_size or $size->getHeight() < $img_size) {
        $white = Image::getImagine()->create(new Box($img_size, $img_size));
        $thumbnail = $white->paste($thumbnail, new Point($img_size / 2 - $size->getWidth() / 2, $img_size / 2 - $size->getHeight() / 2));
    }
    $thumbnail->save($save_path);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料