python下面有什么库可以绘制图形,比如gif或者png,jpg等。不一定要显示...
发布网友
发布时间:2022-04-28 10:49
我来回答
共4个回答
热心网友
时间:2022-04-06 15:45
可以有 makeEmtryPicture 创建一个新的图片,至于图片的话,初始的颜色是白色,即255,255,255,因为python用的是RGB,如果你想画什么图形的话,需要自己添加for循环来创造颜色线条等等。。
热心网友
时间:2022-04-06 17:03
用PIL模块.
例子:
import Image, ImageDraw
size = (100,50)
im = Image.new('RGB', size)
draw = ImageDraw.Draw(im)
red = (255,0,0)
text_pos = (10,10)
text = "Hello World!"
draw.text(text_pos, text, fill=red)
im.save("test.png");
热心网友
时间:2022-04-06 18:38
PIL 库应该是可以,地址:
http://www.pythonware.com/procts/pil/index.htm
热心网友
时间:2022-04-06 20:29
matplotlib PIL