• 大小: 270B
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: Python
  • 标签: python  图像处理  

资源简介

python 实现图片像素大小设置,可以实现图像的任意大小输出。

资源截图

代码片段和文件信息

from PIL import Image 
img = Image.open(“1.jpg“)
#车牌大小统一成440*142
new_img = img.resize((400300)Image.BILINEAR)
new_i

评论

共有 条评论