Python之如何调整图片的文件大小

 更新时间:2023年03月25日 09:06:48   作者:XerCis  
这篇文章主要介绍了Python之如何调整图片的文件大小问题,具有很好的参考价值,希望对大家有所帮助。

问题描述

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

1.jpg

1.jpg

图片大小为 8KB

 

减小文件大小

使用 PIL 模块

pip install Pillow

1. 减小图片质量

代码

import os
from PIL import Image


def 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

效果

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

2. 减小图片尺寸

import os
from PIL import Image


def 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)

效果

增加文件大小

Windows

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

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

import os
import time
import subprocess

imagefile = '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 os
import time
import subprocess

imagefile = '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)

效果

图片的分辨率没变

封装

import os
import time
import platform
import subprocess
from PIL import Image


def 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异常处理知识点总结

    Python异常处理知识点总结

    在本篇文章中小编给大家分享了关于Python异常处理的相关知识点以及对应的实例内容,需要的朋友们学习下。
    2019-02-02
  • 一文教你实现Python重试装饰器

    一文教你实现Python重试装饰器

    在写业务代码时候,有许多场景需要重试某块业务逻辑,例如网络请求、购物下单等,希望发生异常的时候多重试几次。本文分享如何利用Python 的装饰器来进行面向切面(AOP)的方式实现自动重试器,希望对大家有所帮助
    2023-02-02
  • Python 多线程实例详解

    Python 多线程实例详解

    这篇文章主要介绍了Python 多线程实例详解的相关资料,需要的朋友可以参考下
    2017-03-03
  • Keras搭建分类网络平台VGG16 MobileNet ResNet50

    Keras搭建分类网络平台VGG16 MobileNet ResNet50

    这篇文章主要为大家介绍了Keras搭建分类网络平台VGG16 MobileNet ResNet50,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-05-05
  • Python如何用NumPy读取和保存点云数据

    Python如何用NumPy读取和保存点云数据

    这篇文章主要介绍了Python如何用NumPy读取和保存点云数据,文章围绕主题展开详细的内容介绍,具有一定的参考价值,需要的小伙伴可以参考一下
    2022-08-08
  • python分割一个文本为多个文本的方法

    python分割一个文本为多个文本的方法

    这篇文章主要为大家详细介绍了python分割一个文本为多个文本,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-07-07
  • Python如何使用函数做字典的值

    Python如何使用函数做字典的值

    这篇文章主要介绍了Python如何使用函数做字典的值,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2019-11-11
  • python读csv文件时指定行为表头或无表头的方法

    python读csv文件时指定行为表头或无表头的方法

    这篇文章主要介绍了python读csv文件时指定行为表头或无表头的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-06-06
  • Python 数据类型--集合set

    Python 数据类型--集合set

    这篇文章主要介绍了Python 数据类型集合set,在集合中的元素是无序的、唯一的、不可变的类型,它还有一个特殊的列表,可以对数据去重,下面来对其进行更彻底的认识吧,需要的小伙伴可以参考一下
    2022-02-02
  • Python TypeError: ‘float‘ object is not subscriptable错误解决

    Python TypeError: ‘float‘ object is not subscriptable错

    发现问题写python的时候出现了这个错,所以想着给大家总结下,这篇文章主要给大家介绍了关于Python TypeError: ‘float‘ object is not subscriptable错误的解决办法,需要的朋友可以参考下
    2022-12-12

最新评论