本接口支持通过指定服务 ID 以及模板名称,获取单个图片模板的配置详情。
说明
veImageX 在全球多个区域部署,每个区域有自己对应的 OpenAPI 域名,不支持跨区域调用。具体详情请查看服务地址。
以下请求参数列表仅列出了该接口的部分公共参数,完整公共参数列表见公共参数。
参数 | 类型 | 是否必选 | 描述 |
---|---|---|---|
Action | String | 是 | 接口名称。 |
Version | String | 是 | 接口版本。veImageX 当前 API 的版本为 2018-08-01 。 |
ServiceId | String | 是 | 服务 ID。 |
TemplateName | String | 是 | 模板名称。
|
参数 | 类型 | 描述 |
---|---|---|
ServiceID | String | 服务 ID。 |
TemplateName | String | 模板名称。 |
CreateAt | String | 模板创建时间。 |
Abstract | Array of String | 模板的摘要信息。 |
WithSig | Bool | 模板是否开启鉴权。
|
Parameters | Array of String | 图片模板的参数列表,URL 中下发参数的顺序需要跟列表中的保持一致。 |
ReqDeadline | String | URL 的失效期,为 Unix 时间戳。 |
OuputQuality | Integer | 对图片编码使用的质量参数,取值范围为 [1,100],默认为 75。 |
OutputFormat | String | 该模板计划使用的输出格式.
|
DemotionFormat | String | 模板计划使用的降级格式,仅对 heic 静图有效。 |
Sync | Bool | 是否同步处理,仅对 heic 图有效。 |
Usage | String | 该模板的使用用例。 |
Filters | Array of Filters | 对图片的编辑操作。 |
OutputExtra | JSON Map | 编码自定义参数,键值均为 String。
|
AdaptiveFmt | JSON Map | 指定图像自适应配置。 |
Snapshot | JSON Map | 视频截帧配置。 |
Animation | JSON Map | 视频转动图配置。 |
参数 | 类型 | 描述 |
---|---|---|
png.use_quant | String | 是否压缩颜色空间。默认关闭。
|
jpeg.progressive | String | 是否采用 jpeg 渐进编码格式。默认关闭。 |
heic.roi | String | 是否开启 ROI 编码。仅当
|
heic.encode.depth | String | 色位深度。仅当 说明 值越大则提供的图像色彩范围越多,使图像颜色变化的更细腻,但图像体积也会增大。 |
heic.thumb.ratio | String | 缩略图比例,仅当OutputFormat 取值为heic 时配置有效,开启后默认为 5。默认关闭。 |
heic.alpha.reserve | String | 是否带 ALPHA 透明通道编码。仅当
|
说明
自适应的具体原理说明请参考实现原理。
参数 | 类型 | 描述 |
---|---|---|
Static | String | 静图自适应,支持取值:webp、heic、avif、dynamic。 |
Animated | String | 动图自适应,支持取值:webp、heic、avif、dynamic。 |
参数 | 类型 | 描述 |
---|---|---|
Type | String | 截图类型。
|
TimeOffsetMs | Integer | 截图的时间戳,单位为 ms。 |
参数 | 类型 | 描述 |
---|---|---|
StartTime | Integer | 动图起始时间戳,单位为 ms。 |
Duration | Integer | 动图时长,单位为 ms。 |
SelectFrameMode | String | 抽帧策略。
|
FramePerSecond | Integer | 帧率,1 秒 X 帧。仅当SelectFrameMode 取值为fps 时,需要配置。 |
SecondPerFrame | Integer | 秒数,X 秒 1 帧。仅当SelectFrameMode 取值为spf 时,需要配置。 |
WaitTime | Integer | 同步等待时长,单位为 s,超时未完成则根据DemotionType 降级 |
DemotionType | String | 降级类型。
|
参数 | 类型 | 描述 |
---|---|---|
Name | String | 编辑操作的名称,具体详情请见图片编辑数据结构。 |
Param | JSON Map | 编辑操作的参数,具体详情请见图片编辑数据结构。 |
GET https://imagex.volcengineapi.com/?Action=GetImageTemplate&Version=2018-08-01&ServiceId=fc51f8f9*&TemplateName=tplv-xyz-xxx
{ "ResponseMetadata": { "RequestId": "201806041104200100100232280022D30", "Action": "GetImageTemplate", "Version": "2018-08-01", "Service": "imagex", "Region": "cn-north-1" }, "Result": { "ServiceID": "fc51f8f9*", "TemplateName": "tplv-xyz-xxx", "CreateAt": "2018-05-09 17:44:40", "Abstract": [ "缩略:等比缩放", "效果:模糊半径20" ], "WithSig": false, "Parameters": [ "width" ], "ReqDeadline": "", "OuputQuality": 85, "OutputFormat": "image", "Sync": false, "Usage": "~tplv-xyz-xxx:width.image", "Filters": [ { "Name": "resize", "Param": { "width": "${width}", "height": 0, "keepratio": true } } ] } }
{ "ResponseMetadata": { "RequestId": "201806041104200100100232280022D30", "Action": "GetImageTemplate", "Version": "2018-08-01", "Service": "imagex", "Region": "cn-north-1" "Error": { "Code": "RetrieveTemplateFailure", "Message": "Service not found." } } }