自学内容网 自学内容网

批量压缩tif文件到指定物理宽度mm,同时保持DPI大于300

压缩代码:

import os
from PIL import Image


def resize_imageto_width_mm(image_path, desired_width_mm):
    # 打开图像文件
    with Image.open(image_path) as img:
        # 尝试获取图像的DPI,如果不存在,则默认为300 DPI
        dpi = max(

原文地址:https://blog.csdn.net/qq_41517071/article/details/143609797

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!