<div dir="ltr">Hi list.<br><br>I wander if it is possible to show a full screen image using matplotlib?<br>Only image without axis axis, window frame  and so on....<br>------<br>from numpy import random<br>import matplotlib.pyplot as plt<br>import matplotlib as mpl<br>mpl.rcParams['toolbar'] = 'None'<br>plt.ion()<br>fig = figure()<br>data = random.random((600,800))<br>img = plt.imshow(data, interpolation='nearest')<br>img.set_cmap('hot')<br>plt.axis('off')<br>plt.tight_layout()<br>plt.subplots_adjust(left=0, right=1, top=1, bottom=0)<br>figManager = plt.get_current_fig_manager()<br>figManager.window.showMaximized()<br><br>--------<br>This part kind of works.<br>There are only two problems.<br>1 I have to hit f button (full screen) to remove window title, <br>2 There still  a gray part on the bottom, where mouse XY coordinates are usually shown.<br>Any recommendations how to get rid of those?<br>Thank you<br>Petro  <br><div><div><div><div><div><br></div></div></div></div></div></div>