|
| | FileMetaInformation () |
| |
| | FileMetaInformation (FileMetaInformation const &fmi)=default |
| |
| | ~FileMetaInformation () |
| |
| void | FillFromDataSet (DataSet const &ds) |
| | Construct a FileMetaInformation from an already existing DataSet:
|
| |
| const TransferSyntax & | GetDataSetTransferSyntax () const |
| |
| VL | GetFullLength () const |
| |
| MediaStorage | GetMediaStorage () const |
| |
| std::string | GetMediaStorageAsString () const |
| |
| TransferSyntax::NegociatedType | GetMetaInformationTS () const |
| |
| Preamble & | GetPreamble () |
| |
| const Preamble & | GetPreamble () const |
| | Get Preamble.
|
| |
| void | Insert (const DataElement &de) |
| |
| bool | IsValid () const |
| |
| FileMetaInformation & | operator= (const FileMetaInformation &fmi)=default |
| |
| std::istream & | Read (std::istream &is) |
| | Read.
|
| |
| std::istream & | ReadCompat (std::istream &is) |
| |
| void | Replace (const DataElement &de) |
| |
| void | SetDataSetTransferSyntax (const TransferSyntax &ts) |
| |
| void | SetPreamble (const Preamble &p) |
| |
| std::ostream & | Write (std::ostream &os) const |
| | Write.
|
| |
| Iterator | Begin () |
| |
| ConstIterator | Begin () const |
| |
| void | Clear () |
| |
| template<typename TDE > |
| unsigned int | ComputeGroupLength (Tag const &tag) const |
| |
| Iterator | End () |
| |
| ConstIterator | End () const |
| |
| bool | FindDataElement (const PrivateTag &t) const |
| | Look up if private tag 't' is present in the dataset:
|
| |
| bool | FindDataElement (const Tag &t) const |
| |
| const DataElement & | FindNextDataElement (const Tag &t) const |
| |
| const DataElement & | GetDataElement (const PrivateTag &t) const |
| | Return the dataelement.
|
| |
| const DataElement & | GetDataElement (const Tag &t) const |
| |
| DataElementSet & | GetDES () |
| |
| const DataElementSet & | GetDES () const |
| |
| template<typename TDE > |
| VL | GetLength () const |
| |
| MediaStorage | GetMediaStorage () const |
| |
| std::string | GetPrivateCreator (const Tag &t) const |
| |
| PrivateTag | GetPrivateTag (const Tag &t) const |
| | Return the private tag of the private tag 't', private creator will be set to empty if not found.
|
| |
| void | Insert (const DataElement &de) |
| |
| bool | IsEmpty () const |
| | Returns if the dataset is empty.
|
| |
| const DataElement & | operator() (uint16_t group, uint16_t element) const |
| |
| DataSet & | operator= (DataSet const &)=default |
| |
| const DataElement & | operator[] (const Tag &t) const |
| |
| void | Print (std::ostream &os, std::string const &indent="") const |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | Read (std::istream &is) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadNested (std::istream &is) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadSelectedPrivateTags (std::istream &is, const std::set< PrivateTag > &tags, bool readvalues=true) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadSelectedPrivateTagsWithLength (std::istream &is, const std::set< PrivateTag > &tags, VL &length, bool readvalues=true) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadSelectedTags (std::istream &is, const std::set< Tag > &tags, bool readvalues=true) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadSelectedTagsWithLength (std::istream &is, const std::set< Tag > &tags, VL &length, bool readvalues=true) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadUpToTag (std::istream &is, const Tag &t, std::set< Tag > const &skiptags) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadUpToTagWithLength (std::istream &is, const Tag &t, std::set< Tag > const &skiptags, VL &length) |
| |
| template<typename TDE , typename TSwap > |
| std::istream & | ReadWithLength (std::istream &is, VL &length) |
| |
| SizeType | Remove (const Tag &tag) |
| | Completely remove a dataelement from the dataset.
|
| |
| void | Replace (const DataElement &de) |
| | Replace a dataelement with another one.
|
| |
| void | ReplaceEmpty (const DataElement &de) |
| | Only replace a DICOM attribute when it is missing or empty.
|
| |
| SizeType | Size () const |
| |
| template<typename TDE , typename TSwap > |
| std::ostream const & | Write (std::ostream &os) const |
| |
Class to represent a File Meta Information.
FileMetaInformation is a Explicit Structured Set. Whenever the file contains an ImplicitDataElement DataSet, a conversion will take place.
Definition: The File Meta Information includes identifying information on the encapsulated Data Set. This header consists of a 128 byte File Preamble, followed by a 4 byte DICOM prefix, followed by the File Meta Elements shown in Table 7.1-1. This header shall be present in every DICOM file.
- See also
- Writer Reader
- Examples
- ClinicalTrialIdentificationWorkflow.cs, DumpToshibaDTI.cxx, DumpToshibaDTI2.cxx, GenAllVR.cxx, GenFakeIdentifyFile.cxx, LargeVRDSExplicit.cxx, MakeTemplate.cxx, ReadAndDumpDICOMDIR.cxx, ReformatFile.cs, and StandardizeFiles.cs.