Amazon Echo Show 的背景图片无法缩放
Amazon Echo Show's background image will not scale
我正在尝试为 Python3 中的 Amazon Echo Show 培养一项技能,以便在 U.S 上对用户进行测验。状态。为此,我想在 Show 的屏幕上显示图像。但是,当我尝试这样做时,我的形象被砍掉了。我尝试缩放图像,但这没有任何作用。
为了呈现模板,我使用了以下代码(请原谅我将空字符串用作文本的占位符):
'directives': [{
'type': 'Display.RenderTemplate',
'template': {
'type': 'BodyTemplate1',
'token': 'some sample card',
'backButton': 'VISIBLE',
'title': '',
'backgroundImage': {
'contentDescription': '',
'sources': [
{
'url': 'https://upload.wikimedia.org/wikipedia/commons/9/94/California_in_United_States.svg',
# 'widthPixels': 350, --> Tried these as well
# 'heightPixels': 350,
'size': 'SMALL'
}
]
},
'textContent': {
'primaryText': {
'type': 'RichText',
'text': ''
}
}
}
}]
我怀疑这可能与我的模板类型 (BodyTemplate1) 有关,或者我试图将 backgroundImage 用于不应该用于的事情。
有什么想法吗?
我通过找到一张 1024 像素 x 600 像素(亚马逊为展会屏幕指定的尺寸)的背景图片解决了这个问题。
我正在尝试为 Python3 中的 Amazon Echo Show 培养一项技能,以便在 U.S 上对用户进行测验。状态。为此,我想在 Show 的屏幕上显示图像。但是,当我尝试这样做时,我的形象被砍掉了。我尝试缩放图像,但这没有任何作用。
为了呈现模板,我使用了以下代码(请原谅我将空字符串用作文本的占位符):
'directives': [{
'type': 'Display.RenderTemplate',
'template': {
'type': 'BodyTemplate1',
'token': 'some sample card',
'backButton': 'VISIBLE',
'title': '',
'backgroundImage': {
'contentDescription': '',
'sources': [
{
'url': 'https://upload.wikimedia.org/wikipedia/commons/9/94/California_in_United_States.svg',
# 'widthPixels': 350, --> Tried these as well
# 'heightPixels': 350,
'size': 'SMALL'
}
]
},
'textContent': {
'primaryText': {
'type': 'RichText',
'text': ''
}
}
}
}]
我怀疑这可能与我的模板类型 (BodyTemplate1) 有关,或者我试图将 backgroundImage 用于不应该用于的事情。
有什么想法吗?
我通过找到一张 1024 像素 x 600 像素(亚马逊为展会屏幕指定的尺寸)的背景图片解决了这个问题。