当前位置: 首页 > 编程笔记 >

Python实现将Excel转换成为image的方法

季森
2023-03-14
本文向大家介绍Python实现将Excel转换成为image的方法,包括了Python实现将Excel转换成为image的方法的使用技巧和注意事项,需要的朋友参考一下

我的主要思路是:

Excel -> Html -> Image

代码如下:

# -*- coding:utf-8 -*-
__author__ = 'YangXin'
import sys
import pandas as pd
import codecs
import imgkit
reload(sys)
sys.setdefaultencoding('utf-8')
 
 
# ReportImage -> report convert include multiple sheets into pictures
class ReportImage:
 
 def __init__(self):
  pass
 
 # excel_html -> convert excel include multiple sheets into multiple html file
 # excel_file -> file
 # html_path -> path
 @staticmethod
 def excel_html(excel_file, html_path):
  html_list = []
  excel_obj = pd.ExcelFile(excel_file)
  sheet_list = excel_obj.sheet_names
  index = 0
  for i in sheet_list:
   html_file = html_path + i + ".html"
   excel_data = excel_obj.parse(excel_obj.sheet_names[index])
   with codecs.open(html_file, 'w', 'utf-8') as html:
    html.write(excel_data.to_html(header=True, index=True))
   html_list.append(html_file)
   index += 1
  return html_list
 
 # html_image -> convert htmls into pictures file
 # html_list -> list
 # image_path -> path
 @staticmethod
 def html_image(html_list, image_path):
  index = 0
  for i in html_list:
   img_obj = image_path + str(index) + ".png"
   with open(i, 'r') as html_file:
    imgkit.from_file(html_file, img_obj, options={"encoding":"UTF-8"})
   index += 1
 
 
if __name__ == '__main__':
 html_list = ReportImage.excel_html("/xxx.xlsx", "/yyy/")
 ReportImage.html_image(html_list, "/zzz/")

以上这篇Python实现将Excel转换成为image的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍python实现将pvr格式转换成pvr.ccz的方法,包括了python实现将pvr格式转换成pvr.ccz的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了python实现将pvr格式转换成pvr.ccz的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的Python程序设计有所帮助。

  • 本文向大家介绍Python实现将DOC文档转换为PDF的方法,包括了Python实现将DOC文档转换为PDF的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Python实现将DOC文档转换为PDF的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的Python程序设计有所帮助。

  • 本文向大家介绍python pandas实现excel转为html格式的方法,包括了python pandas实现excel转为html格式的方法的使用技巧和注意事项,需要的朋友参考一下 如下所示: 以上这篇python pandas实现excel转为html格式的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持呐喊教程。

  • 本文向大家介绍python将excel转换为csv的代码方法总结,包括了python将excel转换为csv的代码方法总结的使用技巧和注意事项,需要的朋友参考一下 python:如何将excel文件转化成CSV格式 将Excel文件转为csv文件的python脚本 以上就是2种实例方法,感谢大家的阅读和对呐喊教程的支持。

  • 本文向大家介绍Python 实现Image和Ndarray互相转换,包括了Python 实现Image和Ndarray互相转换的使用技巧和注意事项,需要的朋友参考一下 如下所示: 而keras里面也有api来做这样的转换 然而查看源码的时候,其实会发现这两个函数仍然还是用同样的方式实现 img_to_array() 是使用np.asarray(),而array_to_img是使用Image.fro

  • 本文向大家介绍C#实现将PPT转换成HTML的方法,包括了C#实现将PPT转换成HTML的方法的使用技巧和注意事项,需要的朋友参考一下 本文是一个C#的小程序,主要实现将ppt转换成html的功能,方法很多,此处与大家分享一下,希望能对大家的项目开发起到一定的借鉴作用。 主要功能代码如下: 以上程序是使用C# 先创建一个ppt 文件并向里面写入了文字,然后再把此ppt 转换成html  ,对于上面