你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
DocumentStyle 类
表示观察到的文本样式的 对象。
版本 2023-07-31 中的新增功能: similar_font_family、 font_style、 font_weight、 颜色和 background_color 属性。
- 继承
-
builtins.objectDocumentStyle
构造函数
DocumentStyle(**kwargs: Any)
方法
from_dict |
将 DocumentStyle 形状中的 dict 转换为模型本身。 |
to_dict |
返回 DocumentStyle 的 dict 表示形式。 |
from_dict
将 DocumentStyle 形状中的 dict 转换为模型本身。
from_dict(data: Dict) -> DocumentStyle
参数
返回
DocumentStyle
返回类型
to_dict
属性
background_color
#rrggbb 十六进制格式的背景色。
background_color: str | None
color
#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]