在Adaptive Cards中,可以使用Image元素来指定图像。且每个Adaptive Card最多允许指定1个Image元素。
以下是一个Adaptive Cards示例,使用了1个Image元素:
{
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "Image",
"url": "https://example.com/image.png",
"size": "Medium",
"spacing": "None"
},
{
"type": "TextBlock",
"text": "这是一个Adaptive Card示例"
}
]
}