CapturedPhoto

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
filePath string Path to the captured photo file
width integer Photo width in pixels
height integer Photo height in pixels
encodingFormat string
sizeInBytes integer
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-capturedphoto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CapturedPhoto",
  "title": "CapturedPhoto",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Path to the captured photo file"
    },
    "width": {
      "type": "integer",
      "description": "Photo width in pixels"
    },
    "height": {
      "type": "integer",
      "description": "Photo height in pixels"
    },
    "encodingFormat": {
      "type": "string"
    },
    "sizeInBytes": {
      "type": "integer",
      "format": "int64"
    }
  }
}