使用Python保存网页上的图片或者保存页面为截图


Posted in Python onMarch 05, 2016

Python保存网页图片
这个是个比较简单的例子,网页中的图片地址都是使用'http://。。。。.jpg'这种方式直接定义的。

使用前,可以先建立好一个文件夹用于保存图片,本例子中使用的文件夹是 d:\\pythonPath这个文件夹

代码如下:

# -*- coding: UTF-8 -*- 
import os,re,urllib,uuid 
 
#首先定义云端的网页,以及本地保存的文件夹地址 
urlPath='http://gamebar.com/' 
localPath='d:\\pythonPath' 
 
 
#从一个网页url中获取图片的地址,保存在 
#一个list中返回 
def getUrlList(urlParam): 
  urlStream=urllib.urlopen(urlParam) 
  htmlString=urlStream.read() 
  if( len(htmlString)!=0 ): 
    patternString=r'http://.{0,50}\.jpg' 
    searchPattern=re.compile(patternString) 
    imgUrlList=searchPattern.findall(htmlString) 
    return imgUrlList 
 
     
#生成一个文件名字符串  
def generateFileName(): 
  return str(uuid.uuid1()) 
 
   
#根据文件名创建文件  
def createFileWithFileName(localPathParam,fileName): 
  totalPath=localPathParam+'\\'+fileName 
  if not os.path.exists(totalPath): 
    file=open(totalPath,'a+') 
    file.close() 
    return totalPath 
   
 
#根据图片的地址,下载图片并保存在本地  
def getAndSaveImg(imgUrl): 
  if( len(imgUrl)!= 0 ): 
    fileName=generateFileName()+'.jpg' 
    urllib.urlretrieve(imgUrl,createFileWithFileName(localPath,fileName)) 
 
 
#下载函数 
def downloadImg(url): 
  urlList=getUrlList(url) 
  for urlString in urlList: 
    getAndSaveImg(urlString) 
     
downloadImg(urlPath)

保存的文件如下:

使用Python保存网页上的图片或者保存页面为截图

网页的一部分保存为图片
主要思路是selenium+phantomjs(中文网页需要设置字体)+PIL切图

def webscreen():
  url = 'http://www.xxx.com'
  driver = webdriver.PhantomJS()
  driver.set_page_load_timeout(300)
  driver.set_window_size(1280,800)
  driver.get(url)
  imgelement = driver.find_element_by_id('XXXX')
  location = imgelement.location
  size = imgelement.size
  savepath = r'XXXX.png'
  driver.save_screenshot(savepath)
  im = Image.open(savepath)
  left = location['x']
  top = location['y']
  right = left + size['width']
  bottom = location['y'] + size['height']
  im = im.crop((left,top,right,bottom))
  im.save(savepath)
Python 相关文章推荐
Python使用代理抓取网站图片(多线程)
Mar 14 Python
Python 12306抢火车票脚本 Python京东抢手机脚本
Feb 06 Python
Django中的CBV和FBV示例介绍
Feb 25 Python
python3.4.3下逐行读入txt文本并去重的方法
Apr 29 Python
对python列表里的字典元素去重方法详解
Jan 21 Python
python实现桌面气泡提示功能
Jul 29 Python
Django中的cookie和session
Aug 27 Python
PyCharm配置anaconda环境的步骤详解
Jul 31 Python
详解python 支持向量机(SVM)算法
Sep 18 Python
Python 实现PS滤镜的旋涡特效
Dec 03 Python
Python爬取某拍短视频
Jun 11 Python
Python Django ORM连表正反操作技巧
Jun 13 Python
Python发送form-data请求及拼接form-data内容的方法
Mar 05 #Python
Python多线程爬虫简单示例
Mar 04 #Python
使用Python来开发Markdown脚本扩展的实例分享
Mar 04 #Python
使用py2exe在Windows下将Python程序转为exe文件
Mar 04 #Python
用Python编写简单的微博爬虫
Mar 04 #Python
python相似模块用例
Mar 04 #Python
Python程序中用csv模块来操作csv文件的基本使用教程
Mar 03 #Python
You might like
浅谈使用 PHP 进行手机 APP 开发(API 接口开发)
2014/08/11 PHP
PHP实现支持SSL连接的SMTP邮件发送类
2015/03/05 PHP
PHP面向对象五大原则之依赖倒置原则(DIP)详解
2018/04/08 PHP
PHP实现用户登录的案例代码
2018/05/10 PHP
在一个form用一个SUBMIT(或button)分别提交到两个处理表单页面的代码
2007/02/15 Javascript
模仿jQuery each函数的链式调用
2009/07/22 Javascript
IE和firefox浏览器的event事件兼容性汇总
2009/12/06 Javascript
JQuery循环滚动图片代码
2011/12/08 Javascript
Javascript图像处理—平滑处理实现原理
2012/12/28 Javascript
解析Javascript中难以理解的11个问题
2013/12/09 Javascript
javascript的tab切换原理与效果实现方法
2015/01/10 Javascript
js实现从中间开始往上下展开网页窗口的方法
2015/03/02 Javascript
原生js和jquery实现图片轮播淡入淡出效果
2015/04/23 Javascript
浅谈Jquery为元素绑定事件
2015/04/27 Javascript
JavaScript和JQuery的鼠标mouse事件冒泡处理
2015/06/19 Javascript
javascript html5 canvas实现可拖动省份的中国地图
2016/03/11 Javascript
Linux使用Node.js建立访问静态网页的服务实例详解
2017/03/21 Javascript
利用JQuery操作iframe父页面、子页面的元素和方法汇总
2017/09/10 jQuery
67 个节约开发时间的前端开发者的工具、库和资源
2017/09/12 Javascript
JavaScript canvas实现围绕旋转动画
2017/11/18 Javascript
layui插件表单验证提交触发提交的例子
2019/09/09 Javascript
详解vue-flickity的fullScreen功能实现
2020/04/07 Javascript
python保存文件方法小结
2018/07/27 Python
浅谈Python爬虫原理与数据抓取
2020/07/21 Python
matplotlib运行时配置(Runtime Configuration,rc)参数rcParams解析
2021/01/05 Python
css3 transform及原生js实现鼠标拖动3D立方体旋转
2016/06/20 HTML / CSS
详解CSS3浏览器兼容
2016/12/14 HTML / CSS
澳大利亚在线消费电子产品商店:TobyDeals
2020/01/05 全球购物
opencv实现图像平移效果
2021/03/24 Python
车辆工程专业求职信
2014/04/28 职场文书
运动会宣传口号
2014/06/09 职场文书
公司门卫岗位职责范本
2014/07/08 职场文书
2014年信贷员工作总结
2014/11/18 职场文书
教师节感谢信
2015/01/22 职场文书
酒店工程部主管岗位职责
2015/04/16 职场文书
严以修身专题学习研讨会发言材料
2015/11/09 职场文书