我的标题覆盖了我在 window (Python) 中的图片

My title is overwriting my image in window (Python)

我在显示图片和标题时遇到问题。我缩小了代码范围,发现标题以某种方式覆盖了我的图像。似乎是 draw_handler 在做这件事。现在,代码只会显示标题。所以,我的问题是如何显示 both 标题 Fire Emblem Summoningimage

import simplegui
title = 'Fire Emblem Summoning'
def Title(canvas):
    canvas.draw_text(title, [40,50], 24, "Blue")


def draw_handler(canvas):
    canvas.draw_image(image, (1440 / 2, 1354 / 2), (1440, 1354), (500, 225), (200, 200))

image = simplegui.load_image('http://cdn.idigitaltimes.com/sites/idigitaltimes.com/files/2017/02/03/fire-emblem-heroes-five-star-characters-legends.jpg')
frame = simplegui.create_frame('Fire Emblem Summoning', 1000, 400)
frame.set_draw_handler(draw_handler)
frame.start()

frame.set_draw_handler(Title)

frame.start()

同一时间只能使用一帧。因此,将所有代码放在同一个绘制处理函数中: http://www.codeskulptor.org/#user43_OTR2cL61rxlqoO6.py