So, my code is mean to display an image on a certain position of my screen with the size i want. i managed to make it work with matplotlib and PIL but i still can't display it where i want. Does anyone have an idea how i can make it work ? Could it be also possible to select which screen i want the image to be displayed on ? here is the funcion i wrote
def displayQR(self,image_directory):
self.img = mpimg.imread(image_directory)
fig, ax = plt.subplots(num=None, figsize=(self.img_width*0.0104166,
self.img_height*0.0104166), dpi=80, facecolor='w', edgecolor='k')
ax.imshow(self.img)
ax.axis('off') # clear x-axis and y-axis
plt.ion()
plt.show(block=False)
plt.draw()
plt.pause(0.001)