码迷,mamicode.com
首页 > 编程语言 > 详细

Python最简单的图形编程

时间:2015-06-08 01:07:03      阅读:497      评论:0      收藏:0      [点我收藏+]

标签:python   图形   编程   graphics库   

使用Python进行图像编程,要使用到Graphics库。Graphics库可以从http://mcsp.wartburg.edu/zelle/python/graphics.py获取。在Windows平台上将下载的graphics.py保存在C:\Python31\Lib\site-packages即可。


下面的代码显示了如何画点、画线、画圆、画矩形、画椭圆以及显示文字。

from graphics import *

#设置画布窗口名和尺寸
win = GraphWin('CSSA', 700, 700) 

#画点
pt = Point(100, 100)
pt.draw(win)

#画圆
cir = Circle(Point(200, 200), 75)
cir.draw(win)
cir.setOutline('red') #外围轮廓颜色
cir.setFill('yellow')	#填充颜色

#画线
line = Line(Point(650, 100), Point(250, 100))
line.draw(win)

#画矩形
rect = Rectangle(Point(300, 300), Point(400, 400))
rect.setFill('red')	#填充颜色
rect.draw(win)

#画椭圆
oval = Oval(Point(450, 450), Point(600, 600))
oval.setFill('red')	#填充颜色
oval.draw(win)

#显示文字
message = Text(Point(win.getWidth()/2, 20), 'Click anywhere to quit.')
message.draw(win)

#关闭画布窗口
win.getMouse()
win.close()


Python最简单的图形编程

标签:python   图形   编程   graphics库   

原文地址:http://blog.csdn.net/vernice/article/details/46392187

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!