Mathematica 8支持多種圖形輸出格式,包括:
1. PDF(Portable Document Format)
2. PNG(Portable Network Graphics)
3. JPEG(Joint Photographic Experts Group)
4. SVG(Scalable Vector Graphics)
5. EPS (Encapsulated PostScript)
6. GIF (Graphical Interchange Format)
7. BMP (Bitmap Image File)
8. TIFF (Tagged Image File Format)
9. FITS (Flexible Image Transport System)
要將圖形轉換為其他格式,可以使用Export
函數。例如,將圖形導出為PNG格式:
Export["example.png", plot]
其中plot
是你要轉換的圖形對象。