6

如何使用 Python 来近似给定文本字符串的字体宽度?

我正在寻找一个原型的函数,类似于:

def getApproximateFontWidth(the_string, font_name="Arial", font_size=12):
   return ... picas or pixels or something similar ...

我不是在寻找任何非常严格的东西,一个近似值就可以了。

这样做的动机是我在我的 web 应用程序的后端生成一个截断的字符串并将其发送到前端进行显示。大多数时候字符串都是小写的,但有时字符串都是大写的,这使得它们非常宽。如果字符串没有正确截断,它看起来很难看。我想知道根据字符串的近似宽度截断多少字符串。如果它减少 10%,这没什么大不了的,这是一个装饰功能。

4

3 回答 3

12

下面是我的简单解决方案,它可以让你达到 80% 的准确率,非常适合我的目的。它仅适用于 Arial 并且假定为 12 pt 字体,但它也可能与其他字体成比例。

def getApproximateArialStringWidth(st):
    size = 0 # in milinches
    for s in st:
        if s in 'lij|\' ': size += 37
        elif s in '![]fI.,:;/\\t': size += 50
        elif s in '`-(){}r"': size += 60
        elif s in '*^zcsJkvxy': size += 85
        elif s in 'aebdhnopqug#$L+<>=?_~FZT' + string.digits: size += 95
        elif s in 'BSPEAKVXY&UwNRCHD': size += 112
        elif s in 'QGOMm%W@': size += 135
        else: size += 50
    return size * 6 / 1000.0 # Convert to picas

如果你想截断一个字符串,这里是:

def truncateToApproximateArialWidth(st, width):
    size = 0 # 1000 = 1 inch
    width = width * 1000 / 6 # Convert from picas to miliinches
    for i, s in enumerate(st):
        if s in 'lij|\' ': size += 37
        elif s in '![]fI.,:;/\\t': size += 50
        elif s in '`-(){}r"': size += 60
        elif s in '*^zcsJkvxy': size += 85
        elif s in 'aebdhnopqug#$L+<>=?_~FZT' + string.digits: size += 95
        elif s in 'BSPEAKVXY&UwNRCHD': size += 112
        elif s in 'QGOMm%W@': size += 135
        else: size += 50
        if size >= width:
            return st[:i+1]
    return st

然后是以下内容:

>> width = 15
>> print truncateToApproxArialWidth("the quick brown fox jumps over the lazy dog", width) 
the quick brown fox jumps over the
>> print truncateToApproxArialWidth("THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG", width) 
THE QUICK BROWN FOX JUMPS

渲染时,这些字符串的宽度大致相同:

敏捷的棕色狐狸跳过

快速的棕色狐狸跳跃

于 2013-04-15T05:07:48.577 回答
4

您可以使用 PIL 渲染带有文本的图像,然后确定生成的图像宽度。

http://effbot.org/imagingbook/imagefont.htm

于 2013-04-15T04:44:03.490 回答
1

我使用了一个库来执行此操作,但它需要 pygame: http : //inside.catlin.edu/site/compsci/ics/python/graphics.py 在 sizeString 下查看

于 2013-04-15T04:47:58.097 回答