gpt4 book ai didi

python - 如何以像素为单位获取字符串的宽度?

转载 作者:太空狗 更新时间:2023-10-29 18:17:34 24 4
gpt4 key购买 nike

我正在使用 wxPython 的 HyperTreeList,我想将列宽设置为恰好等于其中最大字符串的长度。

为此,我想将 python 字符串大小转换为像素。

例如:如果我们有一个像

这样的字符串
str = "python"
len(str) = 6

如何将上述字符串长度/大小转换为像素?

还有别的办法吗?

最佳答案

你必须做 something like (有关详细信息,请参阅 documentation of wxWidgets)

f = window.GetFont()
dc = wx.WindowDC(window)
dc.SetFont(f)
width, height = dc.GetTextExtent("Text to measure")

关于python - 如何以像素为单位获取字符串的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2455255/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com