计算 PIL 中呈现的文本大小
Calculate rendered text size in PIL
如何计算 PIL
中 ImageDraw
对象的 text
方法呈现的文本大小?
例如,我想绘制具有最大框宽度或高度的多行文本,能够根据文本计算宽度将帮助我在将文本写入图像之前决定在何处剪切文本。
你可以使用我的 ImageFont.getsize()
method. As far as I know it will handle text with embedded newlines. See example of using it in this 来解决另一个问题。
如何计算 PIL
中 ImageDraw
对象的 text
方法呈现的文本大小?
例如,我想绘制具有最大框宽度或高度的多行文本,能够根据文本计算宽度将帮助我在将文本写入图像之前决定在何处剪切文本。
你可以使用我的 ImageFont.getsize()
method. As far as I know it will handle text with embedded newlines. See example of using it in this