Changing the color of the border
Title
Question
How to change the color of the border of an image?
Python-3.4.3 Image-manipulation-using-Arrays 06-07 min 20-30 sec
Answers:
There is no direct way to change the borders for plots. See here <a href="https://stackoverflow.com/questions/7778954/elegantly-changing-the-color-of-a-plot-frame-in-matplotlib">https://stackoverflow.com/questions/7778954/elegantly-changing-the-color-of-a-plot-frame-in-matplotlib</a> for a workaround
Import Tkinter module.
Create a window.
Create a widget with highlightthickness set to desired border thickness.
Configure highlightbackground and highlightcolor attributes to the desired border-color.
Place the widget on the window created.
Login to add comment