camera.getMetadata

根据文件的 URI 返回文件元数据。映像头文件列出了 Exif 和 XMP 字段。此命令在 API 级别 2 中已废弃。

参数

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

成果

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

错误数

  • missingParameter:未指定 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."
    }
}