Draw oval using Python : Python examples (example source code) » 2D » Oval

C++
Python
Java Products
Java Articles
Python Home  »   2D   » [  Oval  ]  Screenshots 
 



Draw oval using Python




from Tkinter import *

class AllTkinterWidgets:
    def __init__(self, master):
        frame = Frame(master, width=500, height=400, bd=1)
        frame.pack()

        iframe5 = Frame(frame, bd=2, relief=RAISED)
        iframe5.pack(expand=1, fill=X, pady=10, padx=5)
        c = Canvas(iframe5, bg='white', width=340, height=100)
        c.pack()
        for i in range(25):
            c.create_oval(5+(4*i),5+(3*i),(5*i)+60,(i)+60, fill='gray70')
        c.create_text(26080, text='Canvas', font=('verdana', 10'bold'))
        iframe5.pack(expand=1, fill=X, pady=10, padx=5)
root = Tk()
all = AllTkinterWidgets(root)
root.title('Tkinter Widgets')
root.mainloop()
Related examples in the same category
1.  Draw a Oval with fill Draw a Oval with fill
2.  Draw oval Draw oval








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.