python实现自动网页截图并裁剪图片


Posted in Python onJuly 30, 2018

本文实例为大家分享了python自动网页截图并裁剪图片的具体代码,供大家参考,具体内容如下

代码:

# coding=utf-8
import time
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from PIL import Image
import os

all_urls = ['http:/****edit']
def login():
  chrome_options = Options()
  chrome_options.add_argument('--headless')
  driver = webdriver.Chrome(executable_path='./chromedriver',chrome_options=chrome_options)
  driver.set_window_size(1200, 741)
  driver.implicitly_wait(2)
  print('初始化中...')
  driver.get("http://x*****e")
  print('填写登录信息中...')
  acc = driver.find_element_by_id('login-email')
  pwd = driver.find_element_by_id('login-pass')
  btn = driver.find_element_by_tag_name('button')
  acc.send_keys('***')
  pwd.send_keys('***')
  btn.click()
  print('跳转到验证码页面中...')
  time.sleep(2)
  capta = driver.find_element_by_id('code')
  capta_input = input('请输入两步验证码:')
  capta.send_keys(capta_input)
  btn1 = driver.find_element_by_tag_name('button')
  btn1.click()
  time.sleep(2)
  print('跳转到创意编辑页面中...')
  return driver

def get_screen(driver,urls):
  count = 1
  for url in urls:
    driver.get(url)
    print('正在抓取--> %s'% url)
    count +=1
    time.sleep(2)
    uid = url.split('/')[-2]
    cid = url.split('/')[-5]
    driver.get_screenshot_as_file("./screen_shot/{}-{}.png".format(uid,cid))
    print("创意--> {}-{}.png 已经保存".format(uid,cid))
    print('还剩 %s 个'% str(len(urls)-count))

def crop_img():
  for img in os.listdir('./screen_shot'):
    if img.endswith('.png'):
      print('%s裁剪中。。'% img)
      im = Image.open('./screen_shot/%s'% img)
      x = 755
      y = 162
      w = 383
      h = 346
      region = im.crop((x, y, x+w, y+h))
      region.save("./screenshot_final/%s" % img)


if __name__ == '__main__':
  driver = login()
  get_screen(driver,all_urls)
  driver.quit()
  print('所有抓取结束')
  crop_img()
  print('所有裁剪结束')

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python绘制条形图方法代码详解
Dec 19 Python
Python程序运行原理图文解析
Feb 10 Python
Python之批量创建文件的实例讲解
May 10 Python
Python操作Sql Server 2008数据库的方法详解
May 17 Python
python实现排序算法解析
Sep 08 Python
只需7行Python代码玩转微信自动聊天
Jan 27 Python
详解Python time库的使用
Oct 10 Python
python next()和iter()函数原理解析
Feb 07 Python
Python实现链表反转的方法分析【迭代法与递归法】
Feb 22 Python
Python 字典一个键对应多个值的方法
Sep 29 Python
python生成随机数、随机字符、随机字符串
Apr 06 Python
python中24小时制转换为12小时制的方法
Jun 18 Python
python中redis查看剩余过期时间及用正则通配符批量删除key的方法
Jul 30 #Python
对PyTorch torch.stack的实例讲解
Jul 30 #Python
Python 中字符串拼接的多种方法
Jul 30 #Python
TensorFlow Session会话控制&Variable变量详解
Jul 30 #Python
TensorFlow Session使用的两种方法小结
Jul 30 #Python
教你利用Python玩转histogram直方图的五种方法
Jul 30 #Python
对TensorFlow中的variables_to_restore函数详解
Jul 30 #Python
You might like
PHP3 safe_mode 失效漏洞
2006/10/09 PHP
PHP注释实例技巧
2008/10/03 PHP
thinkphp文件处理类Dir.class.php的用法分析
2014/12/08 PHP
phpstorm 正则匹配删除空行、注释行(替换注释行为空行)
2018/01/21 PHP
Laravel多用户认证系统示例详解
2018/03/13 PHP
PHP7 弃用功能
2021/03/09 PHP
TNC vs IO BO3 第二场2.13
2021/03/10 DOTA
一个简单的动态加载js和css的jquery代码
2014/09/01 Javascript
Jquery实现顶部弹出框特效
2015/08/08 Javascript
javascript 小数乘法结果错误的处理方法
2016/07/28 Javascript
Vue.js render方法使用详解
2017/04/05 Javascript
js+html5生成自动排列对话框实例
2017/10/09 Javascript
jquery实现侧边栏左右伸缩效果的示例
2017/12/19 jQuery
vue嵌套路由与404重定向实现方法分析
2018/05/04 Javascript
用js编写留言板
2020/03/17 Javascript
vue模块移动组件的实现示例
2020/05/20 Javascript
python批量生成本地ip地址的方法
2015/03/23 Python
Python的字典和列表的使用中一些需要注意的地方
2015/04/24 Python
python实现LRU热点缓存及原理
2019/10/29 Python
Python文本处理简单易懂方法解析
2019/12/19 Python
pytorch 实现cross entropy损失函数计算方式
2020/01/02 Python
Python使用windows设置定时执行脚本
2020/11/12 Python
python3爬虫中多线程进行解锁操作实例
2020/11/25 Python
经济实惠的豪华背包和行李袋:Packs Project
2018/10/17 全球购物
Trench London官方网站:高级风衣和意大利皮夹克
2020/07/11 全球购物
毕业生物理教师求职信
2013/10/17 职场文书
管理信息系学生的自我评价
2014/01/11 职场文书
市场调查策划方案
2014/06/10 职场文书
2014年依法行政工作总结
2014/11/19 职场文书
离婚协议书的范本
2015/01/27 职场文书
2015年招商引资工作总结
2015/04/25 职场文书
小学班主任心得体会
2016/01/07 职场文书
祝福语集锦:朋友新店开业祝福语
2019/12/10 职场文书
Python中异常处理用法
2021/11/27 Python
无线电通信名词解释
2022/02/18 无线电
DQL数据查询语句使用示例
2022/12/24 MySQL