How is the data in this transfer syntax organized? A description from the standard:
This Transfer Syntax applies to the encoding of the entire DICOM Data Set. The entire Data Set is first encoded according to the rules specified in Section A.2. The entire byte stream is then compressed using the "Deflate" algorithm defined in Internet RFC 1951.
Initially I took this to mean the entire DICOM file itself was gzipped. But if the entire file is gzipped, including the header which contains the identifying transfer syntax, how would a parser/viewer be able to read the transfer syntax to know it is gzipped?
From the perspective of a viewer which is given a file of this type, how can it know it is of this transfer syntax? Look for a GZIP header?
Are there any publicly available sample images which use this transfer syntax?