DocumentStyle クラス

観察されたテキスト スタイルを表す オブジェクト。

バージョン 2023-07-31 の新機能: similar_font_familyfont_stylefont_weightおよびbackground_color プロパティ。

継承
builtins.object
DocumentStyle

コンストラクター

DocumentStyle(**kwargs: Any)

メソッド

from_dict

DocumentStyle の図形のディクテーションをモデル自体に変換します。

to_dict

DocumentStyle の dict 表現を返します。

from_dict

DocumentStyle の図形のディクテーションをモデル自体に変換します。

from_dict(data: Dict) -> DocumentStyle

パラメーター

data
dict
必須

DocumentStyle の図形のディクショナリ。

戻り値

DocumentStyle

の戻り値の型 :

to_dict

DocumentStyle の dict 表現を返します。

to_dict() -> Dict

戻り値

dict

の戻り値の型 :

属性

background_color

16 進数形式の背景色 #rrggbb。

background_color: str | None

color

16 進数形式の前景色 #rrggbb。

color: str | None

confidence

スタイルを正しく識別する信頼度。

confidence: float

font_style

"normal"、"italic"。

font_style: str | None

font_weight

"normal"、"bold"

font_weight: str | None

is_handwritten

コンテンツが手書きかどうかを示します。

is_handwritten: bool | None

similar_font_family

サポートされている一連のフォント ファミリの中から視覚的に最も類似したフォント。CSS 規則に従ったフォールバック フォント (例: 'Arial, sans-serif')。

similar_font_family: str | None

spans

スタイルが適用される連結コンテンツ内のテキスト要素の場所。

spans: List[DocumentSpan]