python 打开图片 延时 关闭图片

def test():
    with open('ewm.png','rb')as f:
        import matplotlib.pyplot as plt
        from PIL import Image
        img = Image.open(f)  # 打开图片,返回PIL image对象

        plt.figure(figsize=(4, 4))
        plt.ion()  # 打开交互模式
        plt.axis('off')  # 不需要坐标轴
        plt.imshow(img)

        mngr = plt.get_current_fig_manager()
        # print(mngr.window.__dict__)

        # mngr.window.wm_geometry("+100+100")  # 调整窗口在屏幕上弹出的位置
        mngr.window.move(1920,0)
        plt.pause(3)  # 该句显示图片15秒
        plt.ioff()  # 显示完后一定要配合使用plt.ioff()关闭交互模式,否则可能出奇怪的问题

        plt.clf()  # 清空图片
        plt.close()  # 清空窗口
搜索