文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Python怎么调整图片的文件大小

2023-07-05 16:12

关注

本篇内容主要讲解“Python怎么调整图片的文件大小”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Python怎么调整图片的文件大小”吧!

问题描述

Python调整图片文件的占用空间大小,而不是分辨率

jpg

Python怎么调整图片的文件大小

图片大小为 8KB

减小文件大小

使用 PIL 模块

pip install Pillow

1. 减小图片质量

代码

import osfrom PIL import Imagedef compress_under_size(imagefile, targetfile, targetsize):    """压缩图片尺寸直到某一尺寸    :param imagefile: 原图路径    :param targetfile: 保存图片路径    :param targetsize: 目标大小,单位byte    """    currentsize = os.path.getsize(imagefile)    for quality in range(99, 0, -1):  # 压缩质量递减        if currentsize > targetsize:            image = Image.open(imagefile)            image.save(targetfile, optimize=True, quality=quality)            currentsize = os.path.getsize(targetfile)if __name__ == '__main__':    imagefile = '1.jpg'  # 图片路径    targetfile = 'result.jpg'  # 目标图片路径    targetsize = 2 * 1024  # 目标图片大小    compress_under_size(imagefile, targetfile, targetsize)  # 将图片压缩到2KB

效果

Python怎么调整图片的文件大小

注意!无法实现图片无限压缩,若文件太小,辨识度也会大大降低

2. 减小图片尺寸

import osfrom PIL import Imagedef image_compress(filename, savename, targetsize):    """图像压缩    :param filename: 原图路径    :param savename: 保存图片路径    :param targetsize: 目标大小,单位为byte    """    image = Image.open(filename)    size = os.path.getsize(filename)    if size <= targetsize:        return    width, height = image.size    num = (targetsize / size) ** 0.5    width, height = round(width * num), round(height * num)    image.resize((width, height)).save(savename)if __name__ == '__main__':    filename = '1.jpg'    savename = 'result.jpg'    targetsize = 2 * 1024    image_compress(filename, savename, targetsize)

效果

Python怎么调整图片的文件大小

增加文件大小

Windows

通过 subprocess 模块调用系统命令 fsutil file createnew filename filesize 创建指定大小的文件

再用 copy/b 命令合并数据到图片上

import osimport timeimport subprocessimagefile = '1.jpg'  # 图片路径targetfile = 'result.jpg'  # 目标图片路径targetsize = 10 * 1024 * 1024  # 目标图片大小tempfile = str(int(time.time()))  # 临时文件路径tempsize = str(targetsize - os.path.getsize(imagefile))  # 临时文件大小subprocess.run(['fsutil', 'file', 'createnew', tempfile, tempsize])  # 创建临时文件subprocess.run(['copy/b', '{}/b+{}/b'.format(imagefile, tempfile), targetfile], shell=True)  # 合并生成新图片os.remove(tempfile)

Linux

通过 subprocess 模块调用系统命令 fallocate -l filesize filename 创建指定大小的文件

再用 cat > 命令合并数据到图片上

import osimport timeimport subprocessimagefile = '1.jpg'  # 图片路径targetfile = 'result.jpg'  # 目标图片路径targetsize = 10 * 1024 * 1024  # 目标图片大小tempfile = str(int(time.time()))  # 临时文件路径tempsize = str(targetsize - os.path.getsize(imagefile))  # 临时文件大小subprocess.run(['fallocate', '-l', tempsize, tempfile])  # 创建临时文件subprocess.run('cat {} {} > {}'.format(imagefile, tempfile, targetfile), shell=True)  # 合并生成新图片os.remove(tempfile)

效果

Python怎么调整图片的文件大小

图片的分辨率没变

封装

import osimport timeimport platformimport subprocessfrom PIL import Imagedef resize_picture_filesize(imagefile, targetfile, targetsize):    """调整图片文件大小    :param imagefile: 原图路径    :param targetfile: 保存图片路径    :param targetsize: 目标文件大小,单位byte    """    currentsize = os.path.getsize(imagefile)  # 原图文件大小    if currentsize > targetsize:  # 需要缩小        for quality in range(99, 0, -1):  # 压缩质量递减            if currentsize > targetsize:                image = Image.open(imagefile)                image.save(targetfile, optimize=True, quality=quality)                currentsize = os.path.getsize(targetfile)    else:  # 需要放大        system = platform.system()        tempfile = str(int(time.time()))  # 临时文件路径        tempsize = str(targetsize - os.path.getsize(imagefile))  # 临时文件大小        if system == 'Windows':            subprocess.run(['fsutil', 'file', 'createnew', tempfile, tempsize])  # 创建临时文件            subprocess.run(['copy/b', '{}/b+{}/b'.format(imagefile, tempfile), targetfile], shell=True)  # 合并生成新图片        elif system == 'Linux':            subprocess.run(['fallocate', '-l', tempsize, tempfile])  # 创建临时文件            subprocess.run('cat {} {} > {}'.format(imagefile, tempfile, targetfile), shell=True)  # 合并生成新图片        os.remove(tempfile)if __name__ == '__main__':    imagefile = '1.jpg'  # 8KB的图片    resize_picture_filesize(imagefile, 'reduce.jpg', 2 * 1024)  # 缩小到2KB    resize_picture_filesize(imagefile, 'increase.jpg', 800 * 1024)  # 放大到800KB

到此,相信大家对“Python怎么调整图片的文件大小”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯