本文实例讲述了python使用PyGame绘制图像并保存为图片文件的方法。分享给大家供大家参考。具体实现方法如下:
''' pg_draw_circle_save101.py
draw a blue solid circle on a white background
save the drawing to an image file
for result see http://huoche.7234.cn/images/jb51/hv2e0j2jl1x .tga .png or .jpg
f
本文实例讲述了Python使用matplotlib模块绘制图像并设置标题与坐标轴等信息。分享给大家供大家参考,具体如下:
进行图像绘制有时候需要设定坐标轴以及图像标题等信息,示例代码如下:
#-*- coding: utf-8 -*-
#!/usr/bin/python
import matplotlib.pyplot as plt
from numpy.random import randn
x = range(100)
y = randn(100)
fig = plt.figure()
a