camera.getMetadata

根据文件 URI 返回文件元数据。图片标头 列出 Exif 和 XMP 字段。此命令已在 API 级别 2 中弃用。

参数

  • fileUri::目标文件的 URI。制造商可以决定 使用绝对 URI 或相对 URI。客户端可能会将其视为不透明标识符。

结果

  • metadata:Exif(包括 GPS 信息)、Photo Sphere XMP JSON 格式。不包含图片或缩略图。

错误

  • missing 参数:未指定 fileUri
  • invalidParameterName:输入参数名称无法识别。
  • invalidParameterValue::输入参数已被识别,但其 值无效;例如 fileUri 不存在或其数据 类型不正确。

命令 I/O

命令输入
{
   
"parameters": {
       
"fileUri": "file URI"
   
}
}
命令输出
{
   
"results": {
       
"exif": {
           
...
           
"ImageWidth": 2000,
           
"ImageLength": 1000,
           
...
       
},
       
"xmp": {
           
"ProjectionType": "equirectangular",
       
"UsePanoramaViewer": true,
           
...
       
}
   
}
}
命令输出(错误)
{
   
"error": {
       
"code": "invalidParameterValue",
       
"message": "Parameter fileUri doesn't exist."
   
}
}