Image
Two-dimensional image resource.
| Key | Type | Description |
|---|---|---|
| size | size | Size of image |
| levels | integer | Number of levels of image |
| imageFiles | Array of imageFile | Files of this image |
Image File
| Key | Type | Description |
|---|---|---|
| file | file | File information |
| size | size | Size of image |
| level | integer | Level of an image |
| bits | integer | Number of bits |
| colorSpace | string | Color space of image |
| compression | string | Compression of image |
Example
"image": {
"size": {
"width":"1920",
"height":"1080",
"unit":"px"
},
"levels": 2,
"imageFiles":[{
"file": {
"name": "example_image.png",
"hash": "a1b2c3d4e5f6g7h8i9j2",
"size": 20000000,
"url": "https://example.com/images/example_image.png",
"type": "PNG",
"storage": "AWS"
},
"size": {
"width":"1920",
"height":"1080",
"unit":"pixels"
},
"variant": "original",
"level": 0,
"bits": 24,
"colorSpace": "RGB",
"compression": "JPEG"
}]
}