天宫鹤

上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页

2024年7月15日

Python读Excel数据,创建Word文档上下文字典列表,元素为字典

摘要: # 读Excel数据,创建Word文档上下文字典列表,元素为每个培训人员的上下文字典 def read_sheet(_path_excel): """ :param _path_excel:Excel全路径 功能:读Excel数据,创建Word文档上下文字典列表,元素为每个培训人员的上下文字典 字典 阅读全文

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

2024年7月11日

Python获取指定文件夹下倒数第二个文件夹的全路径列表

摘要: # 获取指定文件夹下倒数第二个文件夹的全路径列表 def get_penultimate_folder_list(path): """ :param path:指定文件夹 功能:返回指定文件夹下倒数第二个文件夹的全路径列表 """ path = Path(path) assert path.exis 阅读全文

posted @ 2024-07-11 10:06 GoGrid 阅读(21) 评论(0) 推荐(0) 编辑

2024年7月6日

Python以边沿裁剪图片

摘要: 1 # 以边沿裁剪图片 2 def crop_image_by_border(image, l_mm=0, t_mm=0, r_mm=0, b_mm=0): 3 # 计算新的宽度和高度(像素单位) 4 l_dot = int(l_mm / inch_to_mm * dpi) # 左边 5 t_dot 阅读全文

posted @ 2024-07-06 17:14 GoGrid 阅读(19) 评论(0) 推荐(0) 编辑

Python以中心裁剪图片,一个中国大陆身份证的尺寸是88mm*55mm,通常使用的身份证像素分辨率是336*256

摘要: 1 # 以中心裁剪图片 2 # 一个中国大陆身份证的尺寸是88mm*55mm,通常使用的身份证像素分辨率是336*256 3 def crop_image_by_center(input_image_path, width_mm=88, height_mm=55): 4 # 打开图片 5 image 阅读全文

posted @ 2024-07-06 17:13 GoGrid 阅读(26) 评论(0) 推荐(0) 编辑

Python按身份证实际大小调整图片尺寸

摘要: # 按身份证实际大小调整图片尺寸 def resize_image_by_id(image, width_mm=86, height_mm=55): # 四周裁掉5mm # image = crop_image_by_border(image, 5, 5, 5, 5) # 四周裁掉5mm # 计算新 阅读全文

posted @ 2024-07-06 17:09 GoGrid 阅读(14) 评论(0) 推荐(0) 编辑

Python按证件照实际大小调整图片尺寸,2英寸证件照:35mmx49mm

摘要: # 按证件照实际大小调整图片尺寸,2英寸证件照:35mmx49mm(2024年7月6日) def resize_image_by_ip(input_image_path, width_mm=35, height_mm=49): input_image_path = Path(input_image_ 阅读全文

posted @ 2024-07-06 17:05 GoGrid 阅读(36) 评论(0) 推荐(0) 编辑

2024年7月2日

转发:Python_关于使用【zipfile】解压路径中文乱码问题-直接修改【zipfile.py】源码 —— 简单粗暴且有效

摘要: 参考网址:https://blog.csdn.net/weixin_45681435/article/details/133276120 阅读全文

posted @ 2024-07-02 17:47 GoGrid 阅读(3) 评论(0) 推荐(0) 编辑

2024年6月21日

Python win32com读写Word文档中的表格单元格

摘要: # 读Word表格单元格def read_cell(_table, _row, _column): _w_cells = _table.Cell(_row, _column) return _w_cells.Range.Text[:-2]# 写Word表格单元格def write_cell(_tab 阅读全文

posted @ 2024-06-21 15:56 GoGrid 阅读(99) 评论(0) 推荐(0) 编辑

2024年5月31日

Python-pptx正确设置中文字体

摘要: 使用pptx_ea_font库设置中文字体: 1.安装pptx_ea_font库:pip install pptx-ea-font 2.p = text_frame.paragraphs[0] # 取文本段落 run = p.runs[0] # 取文本运行对象,该对象为段落的子元素 pptx_ea_ 阅读全文

posted @ 2024-05-31 20:03 GoGrid 阅读(246) 评论(1) 推荐(1) 编辑

2024年5月5日

python-pptx删除幻灯片

摘要: # 删除多余幻灯片del prs.slides._sldIdLst[起始:结束] # 删除幻灯片 阅读全文

posted @ 2024-05-05 07:31 GoGrid 阅读(95) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页

导航