python实现按长宽比缩放图片


Posted in Python onJune 07, 2018

使用python按图片固定长宽比缩放图片到指定图片大小,空白部分填充为黑色。

代码

# -*- coding: utf-8 -*-

from PIL import Image

class image_aspect():

 def __init__(self, image_file, aspect_width, aspect_height):
  self.img = Image.open(image_file)
  self.aspect_width = aspect_width
  self.aspect_height = aspect_height
  self.result_image = None

 def change_aspect_rate(self):
  img_width = self.img.size[0]
  img_height = self.img.size[1]

  if (img_width / img_height) > (self.aspect_width / self.aspect_height):
   rate = self.aspect_width / img_width
  else:
   rate = self.aspect_height / img_height

  rate = round(rate, 1)
  print(rate)
  self.img = self.img.resize((int(img_width * rate), int(img_height * rate)))
  return self

 def past_background(self):
  self.result_image = Image.new("RGB", [self.aspect_width, self.aspect_height], (0, 0, 0, 255))
  self.result_image.paste(self.img, (int((self.aspect_width - self.img.size[0]) / 2), int((self.aspect_height - self.img.size[1]) / 2)))
  return self

 def save_result(self, file_name):
  self.result_image.save(file_name)


if __name__ == "__main__":
 image_aspect("./source/test.jpg", 1920, 1080).change_aspect_rate().past_background().save_result("./target/test.jpg")

感言

有兴趣的朋友可以将图片路径,长宽值,背景颜色等参数化
封装成api做为个公共服务

本文源码下载

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
实例讲解Python编程中@property装饰器的用法
Jun 20 Python
Python实现随机选择元素功能
Sep 14 Python
Python实现的朴素贝叶斯分类器示例
Jan 06 Python
Python实现的寻找前5个默尼森数算法示例
Mar 25 Python
python opencv旋转图像(保持图像不被裁减)
Jul 26 Python
python与C、C++混编的四种方式(小结)
Jul 15 Python
python中class的定义及使用教程
Sep 18 Python
python对指定字符串逆序的6种方法(小结)
Apr 02 Python
Django实现列表页商品数据返回教程
Apr 03 Python
Python 判断时间是否在时间区间内的实例
May 16 Python
call在Python中改进数列的实例讲解
Dec 09 Python
python 合并多个excel中同名的sheet
Jan 22 Python
python实现批量修改图片格式和尺寸
Jun 07 #Python
python实现批量图片格式转换
Jun 16 #Python
python脚本实现验证码识别
Jun 07 #Python
python 创建一个空dataframe 然后添加行数据的实例
Jun 07 #Python
使用Python处理Excel表格的简单方法
Jun 07 #Python
python实现验证码识别功能
Jun 07 #Python
通过Pandas读取大文件的实例
Jun 07 #Python
You might like
mysql 中InnoDB和MyISAM的区别分析小结
2008/04/15 PHP
linux iconv方法的使用
2011/10/01 PHP
探讨捕获php错误信息方法的详解
2013/06/09 PHP
Codeigniter实现发送带附件的邮件
2015/03/19 PHP
帝国cms常用标签汇总
2015/07/06 PHP
Yii框架表单模型和验证用法
2016/05/20 PHP
php生成mysql的数据字典
2016/07/07 PHP
PHP中的正则表达式实例详解
2017/04/25 PHP
[原创]PHP实现SQL语句格式化功能的方法
2017/07/28 PHP
JS(jQuery)实现聊天接收到消息语言自动提醒功能详解【提示“您有新的消息请注意查收”】
2019/04/16 PHP
JS中的substring和substr函数的区别说明
2013/05/07 Javascript
js中apply方法的使用详细解析
2013/11/04 Javascript
微信小程序实现单列下拉菜单效果
2019/04/25 Javascript
vue + axios get下载文件功能
2019/09/25 Javascript
深入学习Vue nextTick的用法及原理
2019/10/08 Javascript
解决js中的setInterval清空定时器不管用问题
2020/11/17 Javascript
python获取文件扩展名的方法
2015/07/06 Python
matplotlib给子图添加图例的方法
2018/08/03 Python
django 微信网页授权认证api的步骤详解
2019/07/30 Python
python通过实例讲解反射机制
2019/10/17 Python
python3实现在二叉树中找出和为某一值的所有路径(推荐)
2019/12/26 Python
Python用摘要算法生成token及检验token的示例代码
2020/12/01 Python
Linux如何命名文件--使用文件名时应注意
2012/01/22 面试题
行政副总岗位职责
2014/02/23 职场文书
党委班子剖析材料
2014/08/21 职场文书
滞留工资返还协议书
2014/10/19 职场文书
2014年计生协会工作总结
2014/11/21 职场文书
精神文明建设先进个人事迹材料
2014/12/24 职场文书
2015年药店工作总结
2015/04/20 职场文书
2016年公务员六五普法心得体会
2016/01/21 职场文书
《搭石》教学反思
2016/02/18 职场文书
暑假开始了,你的暑假学习计划写好了吗?
2019/07/04 职场文书
Ruby GDBM操作简介及数据存储原理
2022/04/19 Ruby
MySQL 数据库范式化设计理论
2022/04/22 MySQL
Mybatis-Plus 使用 @TableField 自动填充日期
2022/04/26 Java/Android
postgresql之greenplum字符串去重拼接方式
2023/05/08 PostgreSQL