Để truy xuất danh sách các định dạng tệp được hỗ trợ cho matplotlib savefig () , chúng ta có thể sử dụng get_supported_filetypes ().
Các bước
- Đầu tiên, hãy xem con số hiện tại.
- Đặt canvas có chứa hình.
- Sử dụng get_supported_filetypes () phương pháp.
- Lặp lại các mục loại tệp.
- Để hiển thị hình này, hãy sử dụng show () phương pháp.
Ví dụ
from matplotlib import pyplot as plt fs = plt.gcf().canvas.get_supported_filetypes() for key, val in fs.items(): print(key, ":", val)
Đầu ra
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