action orthanc_server_get_instances_id_image_uint8 { label: "Decode an image (uint8)" description: "Decode the first frame of the given DICOM instance. Pixels of grayscale images are truncated to the [0,255] range." provider: orthanc_server method: GET path: "/instances/{id}/image-uint8" encoding: json input: { type: "object" properties: { Accept: { type: "string" } id: { type: "string" } quality: { type: "number" } returnUnsupportedImage: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }