注:在使用 create_arc 繪製弧時,和 程式設計客棧create_oval 的用法相似,因為弧是橢圓的一部分,因此同樣也是指定左上角和右下角兩個點的座標。
預設總是繪製從 (x_1,y_1)開始,程式可通過 start 改變起始角度,也可通過 extent 改變轉過的角度(逆時針旋轉)。
from tkinter
import *
root = tk()
root.title('wjz')
cv = canvas(root, background = 'white',
width = 200, height = 200)
cv.pack(fill = both, expand = yes)
# 繪製左上角半圓
cv.create_arc((5, 5, 85, 85),
width = 2,
outline = "red",
start = 0,
knqkby extent = 180,程式設計客棧
style = arc)# 繪製右上角半圓
cv.create_arc((85, 5, 165, 85),
width = 2,
outline = "red",
start = 0,
extent = 180,
style = arc)# 繪製下方半圓
cv.create_arc((5, -45, 165, 125),
width = 2,
outline = "red",
start = 180,
extent = 180,
style = arc)
root.mainloop()
**執行結果:
本文標題: python tkinter canvas使用例項
本文位址: /jiaoben/python/283707.html
Response AddHeader使用例項收集
response.addheader refresh 60 url newpath newpage.asp 這等同於客戶機端元素 頁面轉向 response.status 302 object moved response.addheader location newpath newpage.asp...
使用ServletFileUpload實現上傳
1.首先我們應該為上傳的檔案建乙個存放的位置,一般位置分為臨時和真是資料夾,那我們就需要獲取這倆個資料夾的絕對路徑,在servlet中我們可以這樣做 然後建立檔案工廠即倉庫乙個引數表示存放多大後flush,fileitemfactory factory new diskfileitemfactory...
使用ServletFileUpload實現上傳
1.首先我們應該為上傳的檔案建乙個存放的位置,一般位置分為暫時和真是目錄,那我們就須要獲取這倆個目錄的絕對路徑,在servlet中我們能夠這樣做 然後建立檔案工廠即倉庫乙個引數表示存放多大後flush,fileitemfactory factory new diskfileitemfactory c...