我正在尝试制作一个程序,根据文本,字体和字体大小将文本放入矩形(x by y)
这是代码
def fit_text(screen, width, height, text, font):
measure_frame = Frame(screen) # frame
measure_frame.pack()
measure_frame.pack_forget()
measure = Label(measure_frame, font = font) # make a blank label
measure.grid(row = 0, column = 0) # put it in the frame
##########################################################
# make a certain number of lines
##########################################################
words = text.split(" ")
lines = []
num = 0
previous = 0
while num <= len(words):
measure.config(text = " ".join(words[previous:num])) # change text
line_width = measure.winfo_width() # get the width
print(line_width)
if line_width >= width: # if the line is now too long
lines.append(" ".join(words[previous:num - 1])) # add the last vsion which wasn't too long
previous = num - 1 # previous is now different
num = num + 1 # next word
lines.append(" ".join(words[previous:])) # add the rest of it
return "\n".join(lines)
from tkinter import *
window = Tk()
screen = Canvas(window)
screen.pack()
text = fit_text(screen, 200, 80, "i want to fit this text into a rectangle which is 200 pixels by 80 pixels", ("Purisa", 12))
screen.create_rectangle(100, 100, 300, 180)
screen.create_text(105, 105, text = text, font = ("Purisa", 12), anchor = "nw")
问题在于,无论标签中的文字是什么,measure.winfo_width()
的结果始终为1. Here is where I found this from,但它似乎对我不起作用
答案 0 :(得分:1)
小部件在打包之前不会有宽度。您需要将标签放入框架中,然后打包,然后忘记它。
答案 1 :(得分:1)
您的代码的问题在于您正在使用窗口小部件的宽度,但宽度将为1,直到窗口小部件实际布局在屏幕上并且可见,因为实际宽度取决于数字在这种情况发生之前不会出现的因素。
您不需要将文本放在窗口小部件中以进行测量。您可以将字符串传递给font.measure()
,它将返回以给定字体呈现该字符串所需的空间量。
对于python 3.x,您可以像这样导入Font
类:
from tkinter.font import Font
对于python 2.x,您可以从tkFont
模块导入它:
from tkFont import Font
然后,您可以创建Font
的实例,以便获取有关该字体的信息:
font = Font(family="Purisa", size=18)
length = font.measure("Hello, world")
print "result:", length
您还可以使用font.metrics()
方法获取给定字体中一条线的高度,并为其提供参数&#34; linespace&#34;:
height = font.metrics("linespace")
答案 2 :(得分:1)
我实际上偶然发现了通过反复试验这样做的方法
通过使用measure.update_idletasks()
,它可以正确计算宽度,并且可以正常工作! Bryan Oakley肯定有一种更有效的方法,但我认为这种方法在其他情况下会很有用
P.S。我不会介意一些选票,以获得一个漂亮,闪亮,青铜,自学的徽章;)