またはを使用して画像からフォントサイズを取得することは可能ですpyocr
かTesseract
? 以下は私のコードです。
tools = pyocr.get_available_tools()
tool = tools[0]
txt = tool.image_to_string(
Imagee.open(io.BytesIO(req_image)),
lang=lang,
builder=pyocr.builders.TextBuilder()
)
ここでは、 function を使用して画像からテキストを取得しますimage_to_string
。そして今、私の質問は、font-size
私のテキストも (数) 取得できるかどうかです。