天宫鹤

2024年7月18日

Python按照图片尺寸(毫米mm)调整图片尺寸(像素pixel)

摘要: # 按照图片尺寸(毫米mm)调整图片尺寸(像素) def resize_image_by_mm(input_image_path, output_image_path, width_mm=35, height_mm=49): """ 输入参数: :param input_image_path:原图片 阅读全文

posted @ 2024-07-18 21:21 GoGrid 阅读(2) 评论(0) 推荐(0) 编辑

Python获取EXCEL实用行数

摘要: # 获取EXCEL实用行数 def get_excel_rows(_excel_path): """ 输入参数: :param _excel_path:Excel全路径 功能:获取Excel实际行数,即培训人员数量 """ if not _excel_path.exists(): print(f'{ 阅读全文

posted @ 2024-07-18 11:42 GoGrid 阅读(2) 评论(0) 推荐(0) 编辑

导航