action orthanc_server_get_instances_id_frames_frame_raw_gz { label: "Access raw frame (compressed)" description: "Access the raw content of one individual frame of the DICOM instance of interest, bypassing image decoding. This is notably useful to access the source files in compressed transfer syntaxes. The image is compressed using gzip" provider: orthanc_server method: GET path: "/instances/{id}/frames/{frame}/raw.gz" encoding: json input: { type: "object" properties: { frame: { type: "number" } id: { type: "string" } } required: ["frame", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }