可以用python直接匯出為.eps檔。指令:plt.savefig("./plteps.eps", format='eps', dpi=1000)
##實例: (推薦學習:Python影片教學)
import matplotlib.pyplot as plt from math import sin i = [x for x in xrange(-10,10,1)] j = [x**2 for x in i] plt.plot(i, j, linewidth=2.0, color='r') # plt.show() plt.savefig('./plteps.eps', format='eps', dpi=1000)
#不能開啟plt.show 否則,產生不了有效的eps檔案
#註解掉show,即可以正常產生eps檔。
note:
圖形無法設定字體為Times New Roman,否則,生成不了。
font = {'family' : 'Times New Roman', #'serif', 'color' : 'black', 'weight' : 'normal', 'size' : 35, }
Python教學欄位學習!
以上是怎麼匯出eps文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!