หากต้องการดึงรายการรูปแบบไฟล์ที่รองรับสำหรับ matplotlib savefig() ฟังก์ชัน เราสามารถใช้ get_supported_filetypes()
ขั้นตอน
- หาตัวเลขปัจจุบันก่อน
- กำหนดผืนผ้าใบที่มีฟิกเกอร์
- ใช้ get_supported_filetypes() วิธีการ
- ทำซ้ำรายการประเภทไฟล์
- หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
from matplotlib import pyplot as plt fs = plt.gcf().canvas.get_supported_filetypes() for key, val in fs.items(): print(key, ":", val)
ผลลัพธ์
eps : Encapsulated Postscript jpg : Joint Photographic Experts Group jpeg : Joint Photographic Experts Group pdf : Portable Document Format pgf : PGF code for LaTeX png : Portable Network Graphics ps : Postscript raw : Raw RGBA bitmap rgba : Raw RGBA bitmap svg : Scalable Vector Graphics svgz : Scalable Vector Graphics tif : Tagged Image File Format tiff : Tagged Image File Format