6

またはを使用して画像からフォントサイズを取得することは可能ですpyocrTesseract? 以下は私のコードです。

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私のテキストも (数) 取得できるかどうかです。

4

1 に答える 1