from PIL import Image img = Image.open('F:\desktop\爬取的图片\pic.jpg') (picW,picH) = img.size # 欲裁剪为4*3 bili = 4/3 if picW/picH>=bili: print('weight pic') ...
分类:
编程语言 时间:
2020-07-19 16:13:22
阅读次数:
67
一.代码+注解 import os from PIL import Image import requests import io def save_img(): headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) Appl ...
分类:
编程语言 时间:
2020-07-18 19:54:15
阅读次数:
82
Python第三方库 jieba - 分词 matplotlib - 绘图 PIL - 图片处理 numpy - 矩阵运算 sqlite3 - sqlite数据库 Flask - web框架 urllib - URL处理,网页爬虫 bs4 - 解析文档-html re - 正则表达式,文字匹配 xl ...
分类:
编程语言 时间:
2020-07-18 15:31:09
阅读次数:
65
图片 转 字符 from PIL import Image def main(): for a in range(0, 100): print(a) if a < 10: pic = "001 - 2333000" + str(a) + ".jpg" if a >= 10 and a < 100: ...
分类:
其他好文 时间:
2020-07-18 00:49:39
阅读次数:
98
我们会从Python最基础的数据结构开始:元组、列表、字典和集合。然后会讨论创建你自己的、可重复使用的Python函数。最后,会学习Python的文件对象,以及如何与本地硬盘交互。 3.1 数据结构和序列 Python的数据结构简单而强大。通晓它们才能成为熟练的Python程序员。 元组 元组是一个 ...
分类:
编程语言 时间:
2020-07-17 22:25:18
阅读次数:
93
做自动化过程中时长会遇到一些截图操作,那么在做客户端的时候,应该怎么进行截图呢? 窗口截图 在pywinauto中存在自带的截图函数 capture_as_image() 源码: def capture_as_image(self, rect=None): """ Return a PIL imag ...
学习使用PIL生成随机验证码图片的实例! 效果: 代码: # 使用生成随机验证码图片 # Python 3.5.1 import string from random import randint, sample from PIL import Image, ImageDraw, ImageFont ...
分类:
其他好文 时间:
2020-07-16 12:26:42
阅读次数:
69
Python通过re模块提供对正则表达式的支持。使用re的一般步骤是先将正则表达式的字符串形式编译为pattern实例,然后使用pattern实例处理文本并获得匹配结果。 import re pattern = re.compile(r'hello') # 将正则表达式编译成pattern对象 st ...
分类:
其他好文 时间:
2020-07-15 22:45:50
阅读次数:
53
是因为pom.xml文件中没有指定java的jdk版本导致的 <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> < ...
分类:
其他好文 时间:
2020-07-15 12:45:46
阅读次数:
50
[size=medium][b]1.python截屏的方法:方法一使用PIL库,方法二使用win32[/b][/size]PIL库截屏简单 [size=medium][b]2.PIL库截屏[/b][/size]coordinate = (0, 0, 60,20) pic = ImageGrab.gr ...
分类:
编程语言 时间:
2020-07-12 14:07:32
阅读次数:
64