# -*- coding: utf-8 -*-
import tkinter
from PIL import Image, ImageTk
root=tkinter.Tk()
root.geometry("315x175+100+100")
##############################################
# 定义1个图片元素
photo_BG=ImageTk.PhotoImage(Image.open("konglong.png"))
# 因为要把这个图片作为背景图片,所以不需要额外创建1个图片label组件了。
# 图片作为背景图的 属性方法是:
# 直接创建文字组件
Word1_Label=tkinter.Label(root,
text="我喜欢python,\n我觉得这个编程语言很好玩!\n我相信它可以改变我的生活!",
justify=tkinter.LEFT,
image=photo_BG,
# compoud方法是把图片居中作为背景
compound=tkinter.CENTER,
# 设置字体类型,大小,是否加粗,不加粗是“normal”或者不写,加粗是“bold”
font=("微软雅黑",15,"normal"),
fg="white"
)
Word1_Label.pack(side=tkinter.LEFT,anchor=tkinter.N)
##############################################
root.mainloop()