使用Python tkinter canvas的上标问题

时间:2012-04-10 23:55:26

标签: python unicode canvas tkinter superscript

我正在尝试使用canvas.create_text(...)将文本添加到绘图中。我通过以下方式使用unicode取得了一些成功:

mytext = u'U\u2076'  #U^6
canvas.create_text(xPos,yPos,text = mytext, font = ("Times","30")
canvas.pack()

它可以工作,但是当增加字体大小时,上标4,5,6,7,8,9,0的大小不会增加。只有1,2,3工作。我假设它对于下标来说是一样的。此外,当我将画布保存为postscript时,问题上标已经消失......但是当我打印出保存的图像时,上标会返回。

我的方法完全错了吗?我只是想做这项工作所以任何帮助将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:0)

您的问题来自于在您的平台和字体中处理Unicode。 正如on wikipedia所述:上标1,2和3,之前在Latin-1中处理过 从而获得不同的字体支持。

我没有注意到固定大小问题,但在大多数字体上(在Linux和MacOS上),1,2,3未与4-9正确对齐。

我的建议是选择符合您需求的字体(您可以查看提供高质量字体的DejaVu系列)。

这是一个小应用程序,用于说明处理具有不同字体或大小的上标。

from Tkinter import *
import tkFont

master = Tk()

canvas = Canvas(master, width=600, height=150)
canvas.grid(row=0, column=0, columnspan=2, sticky=W+N+E+S)

list = Listbox(master)
for f in sorted(tkFont.families()):
    list.insert(END, f)

list.grid(row=1, column=0)

font_size= IntVar()
ruler = Scale(master, orient=HORIZONTAL, from_=1, to=200, variable=font_size)
ruler.grid(row=1, column=1, sticky=W+E)


def font_changed(*args):
    sel = list.curselection()
    font_name = list.get(sel[0]) if len(sel) > 0 else "Times"
    canvas.itemconfig(text_item, font=(font_name,font_size.get()))
    #force redrawing of the whole Canvas
    # dirty rectangle of text items has bug with "superscript" character
    canvas.event_generate("<Configure>")

def draw():
    supernumber_exception={1:u'\u00b9', 2:u'\u00b2', 3:u'\u00b3'}
    mytext =""
    for i in range(10):
        mytext += u'U'+ (supernumber_exception[i] if i in supernumber_exception else unichr(8304+i))+" "
    return canvas.create_text(50, 50,text = mytext, anchor=NW)

text_item = draw()

list.bind("<<ListboxSelect>>", font_changed)

font_size.trace("w", font_changed)
font_size.set(30)

master.grid_columnconfigure(0, weight=0)
master.grid_columnconfigure(1, weight=1)
master.grid_rowconfigure(0, weight=1)
master.grid_rowconfigure(1, weight=0)

master.mainloop()