action orthanc_server_get_instances_id_preview { label: "Decode an image (preview)" description: "Decode the first frame of the given DICOM instance. The full dynamic range of grayscale images is rescaled to the [0,255] range." provider: orthanc_server method: GET path: "/instances/{id}/preview" 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 } }