1. 怎麼把svg轉成jpg
方法/步驟
1
首先右鍵點擊svg文件,選擇打開方法,可以使用IE瀏覽器或Edge瀏覽器打開。
總結
1、使用IE瀏覽器或Edge瀏覽器打開svg文件。
2、右鍵點擊圖片,再點擊【圖片另存為】。
3、修改【保存類型】為PNG。
4、保存文件。
2. win10怎麼批量svg轉png
使用python批量轉換SVG文件為PNG或pdf文件
命令行方式
# 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)#轉換主函數
#---------------------------------------
3. APP安卓原生 設計該怎麼切圖給開發
安卓的機器的確比較多,各廠商各種機型的屏幕大小不一,碎片化比較嚴重。但只考慮原生的分類,應該也不會很多啊。mdpi,xhdpi,xxhdpi各做一套應該就行了吧。