フォント(Times New Roman、14)がいくつかあり、文字列幅を測定する必要があります。 Pythonでの文字列幅の測定
from matplotlib import rcParams
import os.path
afm_filename = os.path.join(rcParams['datapath'], 'fonts', 'afm',
'ptmr8a.afm')
from matplotlib.afm import AFM
afm = AFM(open(afm_filename))
afm.string_width_height('What the heck?')
しかし、私は、「データパス」、「フォント」、「AFM」の代わりに貼り付ける必要があるかを理解することはできません:私はAPIからmatplotlibのと例を発見しました。 Pythonで刺し網幅を取得する方法はありますか?多分別の方法ですか?
文字列の幅は?あなたは文字列の長さを意味しますか? – Jonathan
あなたのファイルはどこにありますか? –
文字列の長さをピクセル単位で取得することを意味しますか? – RedEyed