软件介绍本地GIF图生成网页预览工具免费版是一款可以快速生成图片预览效果的图像工具,我们可以通过这款软件来将GIF图片进行快速预览,从而让你可以了解这些动图都有什么样的内容。 本地GIF图生成网页预览工具免费版软件简介不过您内存要是真的没多大(比如电脑4g内存,2g内存), 一定慎重加载超多图片!!! 这次的创意. 来自获取了一堆Gif后,懒着懒着突然有的灵感!...这次软件特别好写, 要是有兄台想模仿或者二次创作, 请一定要艾特我呦!!!之前我写的一些原创, 有些被人模仿去了, 然没见艾特我的就很郁闷..有艾特的我的就超开心! 软件代码import os import traceback def makeweb(xpath): filespath="" contentfiles=[] try: list_dirs = os.walk(xpath) for Root, _dirs, files in list_dirs: for f in files: f=f.lower() bool1 = f.endswith(".gif") bool2 = f.endswith(".jpg") bool3 = f.endswith(".png") bool4 = f.endswith(".bmp") if bool1 or bool2 or bool3 or bool4: shortpath=root[len(xpath)+1:len(root)] if len(shortpath)>0: filespath=shortpath+"\\"+f contentfiles.append(filespath) else: filespath=f contentfiles.append(filespath) if len(contentfiles)>0: effecttype = os.path.basename(xpath)#带后缀的文件名 #effecttype="火焰" filename = xpath+'\\'+effecttype+'.html' with open(filename, 'w',encoding="utf-8") as file_object: file_object.write("<!DOCTYPE html>\n") file_object.write("<html>\n") file_object.write("<title>"+effecttype+"</title>\n") file_object.write("<style type=\"text/css\">.left{float: left;}.pic {/*max-width: 300px;height:auto;*/max-height: 130px;width: auto;} </style>\n") file_object.write("<head><link rel=\"icon\" type=\"image/x-icon\" href=\""+contentfiles[0]+"\" /></head>\n") file_object.write("<body>\n") file_object.write("<h5>可以按住Ctrl + 鼠标滚轮 放大缩小页面,Ctrl + 0 重置页面</h5>\n") file_object.write("<h5>"+effecttype+"分类</h5>\n") for i in contentfiles: file_object.write("<div class=\"left\"><a href=\""+i+"\" target=\"_blank\"><img class=\"pic\" src=\""+i+"\" ></a></div>\n") file_object.write("</body>\n") file_object.write("</html>\n") else: print("目标文件夹里没有图片文件(bmp,jpg,png,gif),请选择一个有这些图片类型的文件夹后重新生成网页") return False totalpath=xpath+"\\"+effecttype totalpath=totalpath.replace("\\\\","\\") print(totalpath+".html 网页制作完成") os.system("explorer /select, "+'\"'+filename+'\"') except Exception as _ex: print("程序出现错误,请把下面的错误复制给制作者用于修改,谢谢!") print("--------------------------------------------------------") print('traceback.format_exc():\n%s' % traceback.format_exc()) print("--------------------------------------------------------") print(effecttype+"网页制作失败,请联系制作者") if __name__ == '__main__': print("图片生成网页预览(gif,png,bmp,jpg) 吾爱破解论坛 52pojie.cn") path=input("请粘贴或者拖拽一个图片文件夹的路径,用来生成网页:\r\n") while True: path=path.replace("\"", "") if os.path.exists(path): bool1 = path.endswith("\\") if bool1: path=path.strip('\\') makeweb(path) else: print("目标文件夹不存在,请重新选择一个有效的文件夹来生成图片网页") path=input("本次操作完毕,继续操作请再次粘贴或者拖拽一个图片文件夹的路径,结束请直接关闭本窗口:\r\n") |