{
  "title": "image",
  "type": "object",
  "properties": {
    "src": {
      "type": "string",
      "description": "图片资源地址"
    },
    "mode": {
      "type": "string",
      "description": "图片裁剪、缩放的模式",
      "defaultValue": "scaleToFill",
      "enum": [
        "scaleToFill",
        "aspectFit",
        "aspectFill",
        "widthFix",
        "heightFix",
        "top",
        "bottom",
        "center",
        "left",
        "right",
        "top left",
        "top right",
        "bottom left",
        "bottom right"
      ]
    },
    "webp": {
      "type": "boolean",
      "description": "无需指定，默认支持",
      "defaultValue": false
    },
    "lazy-load": {
      "type": "boolean",
      "description": "受 scroll-view 按需渲染影响，默认生效",
      "defaultValue": false
    },
    "show-menu-by-longpress": {
      "type": "boolean",
      "description": "长按图片显示发送给朋友、收藏、保存图片、搜一搜、打开名片/前往群聊/打开小程序（若图片中包含对应二维码或小程序码）的菜单。",
      "defaultValue": false
    },
    "fade-in": {
      "type": "boolean",
      "description": "是否渐显",
      "defaultValue": false
    },
    "bindError": {
      "tsType": "() => void",
      "description": "当错误发生时触发，event.detail = {errMsg}"
    },
    "bindLoad": {
      "tsType": "() => void",
      "description": "当图片载入完毕时触发，event.detail = {height, width}"
    }
  },
  "additionalProperties": false
}