2021-05-12 14:32:11
使用Python批次轉換SVG檔案為PNG或PDF檔案
使用Python批次轉換SVG檔案為PNG或PDF檔案
- 使用Python批次轉換SVG檔案為PNG或PDF檔案
- 使用模組
- 1 模組單獨使用
- 2 模組用於程式碼
- 範例
- 1 命令列方式
- 2 python指令碼
使用Python批次轉換SVG檔案為PNG或PDF檔案。
1. 使用模組
cairosvg模組可以對svg格式圖片進行轉換和處理的python模組,下載地址( http://cairosvg.org/download/),安裝方法:pip install cairosvg。
1.1 模組單獨使用
Usage: cairosvg.py filename [options]
Options:
-h, –help show this help message and exit
-v, –version show version and exit
-f FORMAT, –format=FORMAT
output format
-d DPI, –dpi=DPI ratio between 1in and 1px
-o OUTPUT, –output=OUTPUT
output filename
1.2 模組用於程式碼
提供API介面:
svg2pdf
svg2png
2. 範例
2.1 命令列方式
# Convert to pdf, standard output
cairosvg test.svg
# Convert to png, standard output
cairosvg test.svg -f png
# Convert to ps, write to test.ps
cairosvg test.svg -o test.ps
# Convert an SVG string to pdf, standard output
echo "<svg height='30' width='30'>
<text y='10'>123</text>
</svg>" | cairosvg -
2.2 python指令碼
#! encoding:UTF-8
import cairosvg
import os
def exportsvg(fromDir, targetDir, exportType):
print "開始執行轉換命令..."
num = 0
for a,f,c in os.walk(fromDir):#使用walk遍歷源目錄
for fileName in c:
path = os.path.join(a,fileName)#獲得檔案路徑
if os.path.isfile(path) and fileName[-3:] == "svg":#判斷檔案是否為svg型別
num += 1
fileHandle = open(path)
svg = fileHandle.read()
fileHandle.close()
exportPath = os.path.join(targetDir, fileName[:-3] + exportType)#生成目標檔案路徑
exportFileHandle = open(exportPath,'w')
if exportType == "png":
try:
cairosvg.svg2png(bytestring=svg, write_to=exportPath)#轉換為png檔案
except:
print "error in convert svg file : %s to png."%(path)
elif exportType == "pdf":
try:
cairosvg.svg2pdf(bytestring=svg, write_to=exportPath)#轉換為pdf檔案
except:
print "error in convert svg file: %s to pdf."%(path)
exportFileHandle.close()
print "Success Export ", exportType, " -> " , exportPath
print "已匯出 ", num, "個檔案"#統計轉換檔案數量
#---------------------------------------
svgDir = '/home/Ubuntu/tools/icons'#svg資料夾路徑
exportDir = '/home/ubuntu/tools/icons1'#目的資料夾路徑
exportFormat = 'png'#pdf#轉換型別
if not os.path.exists(exportDir):
os.mkdir(exportDir)
exportsvg(svgDir, exportDir, exportFormat)#轉換主函數
#---------------------------------------
cairosvg使用簡單,轉換方便。
零基礎如何入門Python http://www.linuxidc.com/Linux/2016-10/136485.htm
Ubuntu 14.04安裝Python 3.3.5 http://www.linuxidc.com/Linux/2014-05/101481.htm
CentOS上原始碼安裝Python3.4 http://www.linuxidc.com/Linux/2015-01/111870.htm
Ubuntu 14.04下Python資料處理環境搭建 http://www.linuxidc.com/Linux/2017-01/139568.htm
《Python核心程式設計 第二版》.(Wesley J. Chun ).[高清PDF中文版] http://www.linuxidc.com/Linux/2013-06/85425.htm
《Python開發技術詳解》.( 周偉,宗傑).[高清PDF掃描版+隨書視訊+程式碼] http://www.linuxidc.com/Linux/2013-11/92693.htm
在CentOS 6.5上安裝Python2.7 http://www.linuxidc.com/Linux/2016-10/136206.htm
在Ubuntu下用Python搭建桌面演算法交易研究環境 http://www.linuxidc.com/Linux/2013-11/92534.htm
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-01/139975.htm
相關文章