1 Star 0 Fork 0

小荷才露尖尖角/UnderstandingDeepLearning-ZH-CN

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
png.py 837 Bytes
一键复制 编辑 原始数据 按行查看 历史
CareyWYR 提交于 2024-07-13 23:05 . latex
import os
import subprocess
def convert_svg_to_png(svg_file, png_file):
subprocess.run(['inkscape', svg_file, '--export-filename', png_file], check=True)
def process_directory(input_dir, output_dir):
for root, _, files in os.walk(input_dir):
for file in files:
if file.endswith('.svg'):
svg_file = os.path.join(root, file)
relative_path = os.path.relpath(svg_file, input_dir)
png_file = os.path.join(output_dir, relative_path)
png_file = png_file.replace('.svg', '.png')
os.makedirs(os.path.dirname(png_file), exist_ok=True)
convert_svg_to_png(svg_file, png_file)
if __name__ == '__main__':
input_directory = 'figures'
output_directory = 'png'
process_directory(input_directory, output_directory)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Heconnor/UnderstandingDeepLearning-ZH-CN.git
git@gitee.com:Heconnor/UnderstandingDeepLearning-ZH-CN.git
Heconnor
UnderstandingDeepLearning-ZH-CN
UnderstandingDeepLearning-ZH-CN
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385