Skip to main content

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

FieldTypeDescriptionMandatory
sizesizeDimensions of the imageYes
typestringType of an image (e.g., bitmap)No
techniquestringTechnique used to create the imageNo
colorSpacestringColor space of the image (e.g., RGB)Yes
formatstringFile format of the image (e.g., PNG)Yes
bitsintBit depth of the imageYes

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
}