How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 - Canva Video Tutorials for Beginners

In this video I'll show you how to drive lines, rectangles, and ovals with the tKinter Canvas widget. With the Canvas Widget, we can do ...















In this video I'll show you how to drive lines, rectangles, and ovals with the tKinter Canvas widget.


With the Canvas Widget, we can do all sorts of cool things. In this intro to the canvas video, I'll walk you through drawing basic shapes; lines, rectangles, squares, ovals, and circles.


We''ll talk a little about the canvas coordinate system and discuss the X,Y axis and how to use it.












How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68

Video and Tutorial canva tutorial From YouTube

How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68
Video and Tutorial Total Views : How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
28393
Video and Tutorial Rating : How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
4.91
Video and Tutorial Date : How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
2020-05-12 17:01:38
The Video and Tutorial Duration : How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
00:14:26
Video and Tutorial Maker Name for : How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
Codemy.com Channel
How many people who likes video and tutorial : How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
629

Related Keyword of How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
tkinter canvas widget,tkinter canvas rectangle,tkinter canvas draw line,tkinter canvas,tkinter canvas line,tkinter canvas oval,tkinter canvas circle,tkinter canvas elipse,python tkinter canvas tutorial,python tkinter canvas line,python tkinter canvas examples,python tkinter canvas background color,python tkinter canvas draw circle,python tkinter canvas parameters,python tkinter canvas,tkinter canvas coordinates,python tkinter gui,tkinter playlist
Video and Tutorial Link for How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
https://www.youtube.com/watch?v=HrK9Kmz3_9A
Image of How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 From YouTube
 Video and  Tutorial   How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68

How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68





التعليقات

بلوجر: 28
  1. Thank you, great Tutorial! I did some testing and got confused with the cordinate-system.
    Y-axis goes down not up! So 0, 0 is the point at the top left corner not bottom left corner

    ردحذف
  2. ▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My YouTube Channel:
    http://bit.ly/2UFLKgj http://bit.ly/2IGzvOR
    ▶️ See More At: ✅ Join My Facebook Group:
    https://Codemy.com http://bit.ly/2GFmOBz
    ▶️ Learn to Code at https://Codemy.com ✅ Buy a Codemy T-Shirt!
    Take $30 off with coupon code: youtube1 http://bit.ly/2VC9WUN

    ردحذف
  3. I have one problem : I want to draw a line on canvas of python tkinter which appears slowly on screen. I tried time.sleep to delay the process of drawing the line point by point but it does not work. The program on execution waits for some time and abruptly draws the line.
    I also tried "after" option which also does not work.
    Request you to suggest me some solution.

    My code as below :

    # Code - draw line slowly

    import time
    from tkinter import *
    mw = Tk()

    mw.minsize( width=600,height=600)

    mc = Canvas(mw, width=500, height=500, background = "white")
    mc.place(x=50, y = 0)

    stline = 0

    for i in range ( 0,400):
    mc.create_line(stline,100,i,100)
    stline = i
    time.sleep(0.001)

    mc.mainloop()

    ردحذف
  4. Codes to draw a red line and says "Now let's run it."
    Cut to commercial for computer game with super cool graphics.
    Me: holy shit!

    ردحذف
  5. when I write-
    my_canvas.create_line(0,300,200,100, fill = "red)
    it shows an error written as 'nonetype' object has no attribute 'create_line

    ردحذف
  6. You are, by far, the coolest YouTube python teacher.....I mean your way of speaking and way of teaching is impeccable.Your endeavors are self rewarding. Anyone with no knowledge of programming can understand what does a certain line of code mean if s/he watches your video. Best of Luck man...Loved it....

    ردحذف
  7. how to add a Label right Next to the canvas created? Like as Select File: Canvas Shape(ex:Rectangle) and next a Browse Button next to it

    ردحذف
  8. Your coordinate system (as illustrated at 4:24 and after) is upside down. The origin is in the upper left corner, not lower left. If you create a line from (0,0) to (200, 100), for example, it starts in the upper left corner and goes down and to the right. It didn't affect any of your examples, since they're all vertically symmetric about the middle of the canvas.

    ردحذف
  9. John, thanks for this and all of your Tkinter videos.


    One thing...

    There appears to be an error in one important part of the explanation.

    The origin of the coordinate system is not lower left but rather

    upper left. Positive y is down.

    (Also see comment by Joseph Lopez)


    This can be demonstrated by adding another rectangle to the code:

    my_canvas.create_rectangle(50,50,250,0,fill="green")


    the will result in a green rectangle above the existing pink rectangle.


    After seeing this, and not understanding why, I googled

    "Tkinter The Canvas Coordinate System" and came across this explanation from:


    https://docstore.mik.ua/orelly/perl3/tk/ch09_02.htm


    "The x coordinates behave normally: the larger coordinates are to the right

    and the smaller ones are to the left.

    The y coordinates look like they have been drinking vodka:

    the larger y coordinates are on the bottom rather than on the top,

    because the (0, 0) point is in the upper-left corner.

    Although it is rare, you can use negative coordinates in a Canvas."


    Best regards

    ردحذف
  10. thanks for the video. how do you drawing line at the runtime . ie using mouse drawing straight line (similar to autocad line tool). Thanks.

    ردحذف
  11. I just learned the pygame graph systeme and now I need to learn another one

    ردحذف
  12. Sir please can you tell me that how to make qr generator

    ردحذف
  13. Thats what i need! I was huge confused about canvas and now my topic has cleared. Thank you so much sir ❤❤❤

    ردحذف
  14. Thank you very much for all tutorials in the paid package do you have libusb, os module and Django covered?

    ردحذف
  15. hi, can you record the video for Scrolling multiple window, not list, just window (with class). for example: I have one window with many buttons, So it needs Scroll. When I click on any buttons, I i pop up to a new window and it need to scroll there as well. In any case, you are the best <3

    ردحذف
  16. Glad the the co-ordinate system has 0,0 at the bottom left. Oppps not true.

    ردحذف
  17. Liked subscribed and shared, not just coz your great but also look a lot like one of best friends.

    ردحذف
  18. Is the coordinate system platform or system dependent? I'm doing mine on Windows 10 on Python 3.8 and my 0,0 seems to be in the top left of the canvas when I experimented with different numbers.

    ردحذف
  19. Thats really good . Could you make program like somthing whick exactly work program .it is like your geography porgram.

    ردحذف
  20. Excuse me me Jhon elder from codemy.com where I can get all your courses for a one time fee of 27 dollars ( which is insanely cheap) , do you offer a completion certificate for your courses and is there a course on python fundamentals it self ? ( also I hope you got the joke in the beginning lol )

    ردحذف
  21. Would you like to make a playlist of c++ gui programming.

    ردحذف
  22. Nice stuff! You deserve a lot more views! We should really help each other.

    ردحذف

خصومات كبيره من جوميا Flash Sales
الاسم

128,1,545,1,آيفون,1,اثاث مكتبي,537,أجزاء ماكينة الخياطة,486,أجهزة الطبخ والمطبخ,2050,أجهزة تحميص,32,أجهزة حلل طبخ أرز بالبخار,94,اجهزة رياضية,99,اجهزة مطابخ منزلية,20326,اجهزة مطبخ خاصة,100,أحدث موبايلات,1021,أخبار,3,استضافة مواقع,365,اسعار افضل المنتجات في مصر,3,أسود,2,اعلانات,302,اعلانات طنطا,255,أفضل بوتاجازات فى مصر,530,أفضل لاب توب فى مصر,1184,أفضل موبايلات سوق كوم مصر,40,أفضل موبايلات فى مصر,646,اكسسوارات موبايل سوق كوم,98,اكسسوارات موبايلات,179,الدهون,1,الربح من الانترنت,29,الرياضة,2,الريجيم,1,السمنة,1,الشريحة,1,ألعاب,747,ألعاب بلاي ستيشن,2339,العلاج بالأعشاب,1,المال والأعمال,12,النصاب جودة محمد عواد,88,اليوتيوب,6,امازون,38,باور بانك,1097,باور بانك 2,1015,باور بانك جوميا,212,باور بانك سوق كوم,960,باور بانك محمول من جوميا,212,بايت,2,بلت ان,16,بلوجر,3,بلوفرات رجالي,598,بوتاجازات,1348,بوتجازات,743,بوصة,3,تابلت,884,تابلت ايباد جوميا,116,تابلت جوميا,124,تابلت سوق كوم,313,تخسيس,1,ترسيب,1,تقييمات,14,تكييفات,1690,تلفزيونات,704,تلفزيونات جوميا,439,ثلاجات,703,ثنائى,1,جاكيت رجالي,1649,جزامة احذية,539,جودة عواد,56,جودة محمد عواد,481,جوميا,1371,جوميا مصر,152,جيجا,4,حقيقة دكتور جودة عواد,85,خلاطات,1513,دايت وتخسيس,30,دفايات كهربائية,660,دكتور,1,دكتور جودة عواد,79,دكتور جودة عواد نصاب,83,دكتور جودة محمد عواد,16,دكتور دكتور جودة عواد نصاب,62,دكتور كريم على,162,ديب فريزر,200,ذهبي,1,زيوت السيارات,531,ساعات ذكية سمارت,399,ساعات ذكية سمارت 4,50,سماعات الراس,1108,سوق كوم مصر,2157,شاحن البطارية,1172,شاشات كمبيوتر,302,شواحن,368,شواحن موبايلات,179,شواحن موبايلات جوميا,81,ضيق الأوردة,1,طابعات,518,طب وصحه,315,طبخ,88,عصارات,222,غسالات,761,غسالات اطباق,521,غلايات الماء الكهربائية,300,فرن حائط,44,فضي,1,فِكر تاني,172,فلاشات يو اس بي,426,فوتوشوب,1,فيديو مشايات,391,فيديوهات,121,فيديوهات طبخ,3072,فيديوهات طنطا 2,170,فيديوهات كوميديه مضحكه,26,فيديوهات موبايلات,243,قلايات كهربائية,114,قناة دكتور جودة عواد,18,قناة دكتور جودة محمد عواد,19,قناة فِكر تاني,176,كاميرات,594,كريم الشيخوخة والتجاعيد,375,كمبيوتر وانترنت,1,كورس انجليزى,2,لاب توب,1396,ماكينات القهوة,941,ماكينات خياطة,1049,محضرات الساندويشات و الوافل,111,محضرات الطعام,455,مذيبات الدهون,1,مشايات جوميا,140,مشايات رياضية,164,مشايات رياضية سوق كوم,35,مشايات كهربائية ومانيوال,330,مفرمة لحمة,76,مكانس كهربائية,242,مكاوي كهربائية,288,مكبرات صوت,413,منتجات مميزة,247,منظفات بالبخار,32,منوعات,38,موازين قياس الوزن,422,موبايل,4,موبايلات,1581,موبايلات ابل ايفون,130,موبايلات ابل ايفون جوميا,35,موبايلات اتش تي سي,45,موبايلات اتش تي سي جوميا,16,موبايلات ال جي,8,موبايلات انفنکس,103,موبايلات انفنکس جوميا,43,موبايلات إنفنيكس infinix,19,موبايلات اوبو,122,موبايلات اوبو جوميا,18,موبايلات ايفون ابل,38,موبايلات تكنو,69,موبايلات تكنو جوميا,24,موبايلات جوميا,1527,موبايلات رخيصة,119,موبايلات رخيصة بمواصفات عالية,15,موبايلات ريلمي,104,موبايلات ريلمي جوميا,12,موبايلات سامسونج,261,موبايلات سامسونج جوميا,67,موبايلات سوق كوم,716,موبايلات سوني,23,موبايلات سوني جوميا,21,موبايلات سيكو,61,موبايلات سيكو جوميا,29,موبايلات شاومي,315,موبايلات شاومي جوميا,45,موبايلات لينوفو,25,موبايلات لينوفو جوميا,7,موبايلات نوكيا,199,موبايلات نوكيا جوميا,73,موبايلات نوكيا مايكروسوفت,54,موبايلات هواوى,115,موبايلات هواوي,23,موبايلات هواوى جوميا,43,موبايلات هونر,103,موبايلات هونر جوميا,40,ميرش,32,ميرش امازون,33,ميكرويف,178,نصائح,100,هارد ديسك,351,يوتيوب,3,Apple,1,Canva,2293,Français,2432,Garcinia Cambogia Francais,257,Pro,1,Realme,2,Redmi,1,XIAOMI,1,
rtl
item
هجوم: How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 - Canva Video Tutorials for Beginners
How to Draw Lines and Shapes With Canvas - Python Tkinter GUI Tutorial #68 - Canva Video Tutorials for Beginners
https://i.ytimg.com/vi/HrK9Kmz3_9A/hqdefault.jpg
https://i.ytimg.com/vi/HrK9Kmz3_9A/default.jpg
هجوم
http://www.hogom.com/2021/07/how-to-draw-lines-and-shapes-with.html
http://www.hogom.com/
http://www.hogom.com/
http://www.hogom.com/2021/07/how-to-draw-lines-and-shapes-with.html
true
3334110043188626741
UTF-8
تم تحميل كل المقالات لم نجد أى مقاله شاهد الكل قراءة المزيد رد إلغاء الرد حذف بواسطة الرئيسيه الصفحات المقالات شاهد الكل موضوعات قد تهمك التصنيف الأرشيف بحث كل المقالات لم نجد أى مقال يطابق طلبك الذهاب للرئيسيه الأحد الاثنين الثلاثاء الأربعاء الخميس الجمعه السبت الأحد الاثنين الثلاثاء الأربعاء الخميس الجمعه السبت يناير فبراير مارس أبريل مايو يونيو يوليو أغسطس سبتمبر أكتوبر نوفمبر ديسمبر يناير فبراير مارس أبريل مايو يونيو يوليو أغسطس سبتمبر أكتوبر نوفمبر ديسمبر الأن منذ دقيقه $$1$$ minutes ago منذ ساعه $$1$$ hours ago بالأمس $$1$$ days ago $$1$$ weeks ago منذ أكثر من 5 أسبوع متابعين متابع هذا المحتوى مخفى الخطوه الأولى: قم بمشاركة الموضوع على المواقع الاجتماعيه الخطوه الثانيه: اضغط على الرابط الذى شاركته نسخ كل الكود تحديد كل الكود لقد تم نسخ كل الأكواد لا يمكن نسخ الأكواد / لنسخ النص, لو سمحت اضغط [CTRL]+[C] (أو CMD+C لو كنت تستخدم ماك)