canvas.create_oval (13,13, 240,240,fill="green",outline="blue") canvas .pack() win . mainloop() 保存为 .pyw 文件后,直接双击运行该文件,结果如图 5 所示: 图5:程序运行结果 6) create_polygon(x0, y0, x1, y1, ... , xn, yn, options) 创建一个至少三个点的多边形。其中,参数 x0、y0...
canvas.create.oval(x1,y1,x2,y2,可选项) 四个坐标对应的位置如图: 4. create_arc − 创建弧形 语法格式如下: 1 canvas.create_arc(x1,y1,x2,y2,start=angle,extent=width,可选项) 其中,坐标对应的和上图中椭圆对应的一致,start中的值对应的是弧形的起始角度,extent是对应的是弧形逆时针角度范围。 ...
cv.create_oval(50,30,300,200,fill="lightblue",outline="",width=3) cv.pack() mainloop() 属性有:outline,stipple(貌似无效),tags 其他方法:delete,coords.itemconfigure 1.5画弧形(Arc) 方法:create_arc(x0,y0,x1,y1,*options) x0,y0,x1,y1给出包含定义弧的椭圆的矩形对角坐标。在坐标之后可以是任...
w.create_rectangle(40, 20, 160, 80, fill ="green") w.create_rectangle(65, 35, 135, 65, fill ="yellow") w.create_text(100, 50, text ="Python") root.mainloop() 使用create_oval() 方法绘制椭圆形(或圆形),参数是指定一个限定矩形(Tkinter 会自动在这个矩形内绘制一个椭圆): importtkinter...
方法说明create_line(x0, y0, x1, y1, … , xn, yn, options)1. 根据给定的坐标创建一条或者多条线段; 2. 参数 x0,y0,x1,y1,…,xn,yn 定义线条的坐标; 3. 参数 options 表示其他可选参数create_oval(x0, y0, x1, y1, options)1. 绘制一个圆形或椭圆形; ...
line = canvas.create_line(x1, y1, x2, y2, fill="red") # 画圆 oval = canvas.create_oval(x1, y1, x2, y2, fill="yellow") # 画半圆,start参数代表开始的角度,extent代表最后的角度,所有画出一个半圆 arc = canvas.create_arc(x1 + 30, y1 + 30, x2 + 30, y2 + 30, start=0, ...
canvas.create_line(0, 0, 200, 200) #从坐标(0, 0)到(200, 200)绘制一条直线 ``` 3.绘制矩形: ``` canvas.create_rectangle(50, 50, 150, 150, fill="red") ``` 4.绘制椭圆: ``` canvas.create_oval(50, 50, 150, 100) ``` 5.绘制文本: ``` canvas.create_text(200, 200, text...
graph={'create_arc','create_line','create_oval','create_rectangle','create_polygon'}image={'create_bitmap','create_image'}text={'create_text'}window={'create_window'} 下面逐一介绍这些函数之间的参数的区别与联系。 1 通用参数 1.1 通用:graph + image + text + window ...
canvas.create_oval(space / 2 + col * space - r, space / 2 + row * space - r, space / 2 + col * space + r, space / 2 + row * space + r, fill=go_color) # add number if number>0: canvas.create_text(space / 2 + col * space, space / 2 + row * space, ...