Image
Context: object.virtual.artwork.image
A digital/virtual image artwork is a visual representation of a two-dimensional scene, captured or created electronically and stored as a set of numerical values that represent the color and brightness of each pixel in the image. Digital images can be created using various techniques, such as photography, digital painting, or computer-generated imagery (CGI).
Data structure
| Field | Type | Description | Mandatory |
|---|---|---|---|
| size | size | Dimensions of the image | Yes |
| type | string | Type of an image (e.g., bitmap) | No |
| technique | string | Technique used to create the image | No |
| colorSpace | string | Color space of the image (e.g., RGB) | Yes |
| format | string | File format of the image (e.g., PNG) | Yes |
| bits | int | Bit depth of the image | Yes |
Example
Below is a real-life example of a digital image object in JSON format:
"image": {
"size": {
"width": 6000,
"height": 8000,
"unit": "pixels"
},
"type": "bitmap",
"colorSpace": "RGB",
"format": "PNG",
"bits": 24
}