Python PIL按比例裁剪图片


Posted in Python onMay 11, 2022

PIL图片如何按比例裁剪

问题描述

如图片比例为 1:1 裁剪为 4:3

1.jpg

Python PIL按比例裁剪图片

解决方案

from PIL import Image
def image_clip(filename, savename, width_scale, height_scale):
    """图像裁剪
    :param filename: 原图路径
    :param savename: 保存图片路径
    :param width_scale: 宽的比例
    :param height_scale: 高的比例
    """
    image = Image.open(filename)
    (width, height), (_width, _height) = image.size, image.size
    _height = width / width_scale * height_scale
    if _height > height:
        _height = height
        _width = width_scale * height / height_scale
    image.crop((0, 0, _width, _height)).save(savename)  # 左上角
    # image.crop((0, height - _height, _width, height)).save(savename)  # 左下角
    # image.crop((width - _width, 0, width, _height)).save(savename)  # 右上角
    # image.crop((width - _width, height - _height, width, height)).save(savename)  # 右下角
if __name__ == '__main__':
    filename = '1.jpg'
    savename = 'result.jpg'
    image_clip(filename, savename, width_scale=4, height_scale=3)
    # image_clip(filename, savename, width_scale=3, height_scale=4)

效果

Python PIL按比例裁剪图片

PIL调整图片大小

使用 PIL 在图片比例不变的情况下修改图片大小。

介绍

Image.resize

def resize(self, size, resample=BICUBIC, box=None, reducing_gap=None):
    """
    Returns a resized copy of this image.
    返回此图像的大小调整后的副本。
    :param size: The requested size in pixels, as a 2-tuple:
       (width, height).
     param size: 请求的大小(以像素为单位),是一个二元数组:(width, height)
    :param resample: An optional resampling filter.  This can be
       one of :py:attr:`PIL.Image.NEAREST`, :py:attr:`PIL.Image.BOX`,
       :py:attr:`PIL.Image.BILINEAR`, :py:attr:`PIL.Image.HAMMING`,
       :py:attr:`PIL.Image.BICUBIC` or :py:attr:`PIL.Image.LANCZOS`.
       Default filter is :py:attr:`PIL.Image.BICUBIC`.
       If the image has mode "1" or "P", it is
       always set to :py:attr:`PIL.Image.NEAREST`.
       See: :ref:`concept-filters`.
     param resample: 一个可选的重采样过滤器。
    :param box: An optional 4-tuple of floats providing
       the source image region to be scaled.
       The values must be within (0, 0, width, height) rectangle.
       If omitted or None, the entire source is used.
     param box: 可选的4元浮点数,提供要缩放的源映像区域。
    :param reducing_gap: Apply optimization by resizing the image
       in two steps. First, reducing the image by integer times
       using :py:meth:`~PIL.Image.Image.reduce`.
       Second, resizing using regular resampling. The last step
       changes size no less than by ``reducing_gap`` times.
       ``reducing_gap`` may be None (no first step is performed)
       or should be greater than 1.0. The bigger ``reducing_gap``,
       the closer the result to the fair resampling.
       The smaller ``reducing_gap``, the faster resizing.
       With ``reducing_gap`` greater or equal to 3.0, the result is
       indistinguishable from fair resampling in most cases.
       The default value is None (no optimization).
     param reducing_gap: 通过两个步骤调整图像大小来应用优化。
    :returns: An :py:class:`~PIL.Image.Image` object.
     returns: 返回一个 PIL.Image.Image 对象
    """

看代码吧

from PIL import Image
 
 
image = Image.open('图片路径')
 
# 调整图片大小,并保持比例不变
# 给定一个基本宽度
base_width = 50
 
# 基本宽度与原图宽度的比例
w_percent = base_width / float(image.size[0])
 
# 计算比例不变的条件下新图的长度
h_size = int(float(image.size[1]) * float(w_percent))
 
# 重新设置大小
# 默认情况下,PIL使用Image.NEAREST过滤器进行大小调整,从而获得良好的性能,但质量很差。
image = image.resize((base_width, h_size), Image.ANTIALIAS)

Tags in this post...

Python 相关文章推荐
python执行子进程实现进程间通信的方法
Jun 02 Python
Python中遇到的小问题及解决方法汇总
Jan 11 Python
快速了解Python相对导入
Jan 12 Python
详解TensorFlow在windows上安装与简单示例
Mar 05 Python
Python with语句用法原理详解
Jul 03 Python
Django集成MongoDB实现过程解析
Dec 01 Python
python进行二次方程式计算的实例讲解
Dec 06 Python
Python hashlib和hmac模块使用方法解析
Dec 08 Python
Python经典五人分鱼实例讲解
Jan 04 Python
OpenCV3.3+Python3.6实现图片高斯模糊
May 18 Python
python中的None与NULL用法说明
May 25 Python
Python道路车道线检测的实现
Jun 27 Python
python 学习GCN图卷积神经网络
May 11 #Python
Python+Pillow+Pytesseract实现验证码识别
May 11 #Python
Python 绘制多因子柱状图
PyCharm 配置SSH和SFTP连接远程服务器
May 11 #Python
Python 文字识别
May 11 #Python
解决Python保存文件名太长OSError: [Errno 36] File name too long
May 11 #Python
Python 匹配文本并在其上一行追加文本
May 11 #Python
You might like
php删除与复制文件夹及其文件夹下所有文件的实现代码
2013/01/23 PHP
PHP获取栏目的所有子级和孙级栏目的ID号示例
2014/04/01 PHP
PHP数据库编程之MySQL优化策略概述
2017/08/16 PHP
php使用scandir()函数扫描指定目录下所有文件示例
2019/06/08 PHP
无语,javascript居然支持中文(unicode)编程!
2007/04/12 Javascript
javascript cookies 设置、读取、删除实例代码
2010/04/12 Javascript
颜色选择器 Color Picker,IE,Firefox,Opera,Safar
2010/11/25 Javascript
jQuery实现指定内容滚动同时左侧或其它地方不滚动的方法
2015/08/08 Javascript
AngularJS实用开发技巧(推荐)
2016/07/13 Javascript
Angular之指令Directive用法详解
2017/03/01 Javascript
jquery.uploadifive插件怎么解决上传限制图片或文件大小问题
2017/05/08 jQuery
JavaScript设置名字输入不合法的实现方法
2017/05/23 Javascript
Node.js文件编码格式的转换的方法
2018/04/27 Javascript
javascript自定义日期比较函数用法示例
2019/07/22 Javascript
详解用async/await来处理异步
2019/08/28 Javascript
vue实现简易的双向数据绑定
2020/12/29 Vue.js
python中类的一些方法分析
2014/09/25 Python
Python实现简单的文件传输与MySQL备份的脚本分享
2016/01/03 Python
python 回调函数和回调方法的实现分析
2016/03/23 Python
Python实现多并发访问网站功能示例
2017/06/19 Python
python3如何将docx转换成pdf文件
2018/03/23 Python
数组保存为txt, npy, csv 文件, 数组遍历enumerate的方法
2018/07/09 Python
如何通过Python实现标签云算法
2019/07/02 Python
python等待10秒执行下一命令的方法
2020/07/19 Python
python实现b站直播自动发送弹幕功能
2021/02/20 Python
家庭户外服装:Hawkshead
2017/11/02 全球购物
骨干教师培训制度
2014/01/13 职场文书
十八届三中全会报告学习材料
2014/02/17 职场文书
成绩单家长评语大全
2014/04/16 职场文书
计算机求职自荐信范文
2014/04/19 职场文书
市场营销调查计划书
2014/05/02 职场文书
绿里奇迹观后感
2015/06/15 职场文书
2016年秋季开学典礼新闻稿
2015/11/25 职场文书
2016教师校本培训心得体会
2016/01/08 职场文书
人事部:年度述职报告范文
2019/07/12 职场文书
SQL注入篇学习之盲注/宽字节注入
2022/03/03 MySQL