⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dcvris.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
字号:
/* * *  Copyright (C) 1994-2005, OFFIS * *  This software and supporting documentation were developed by * *    Kuratorium OFFIS e.V. *    Healthcare Information and Communication Systems *    Escherweg 2 *    D-26121 Oldenburg, Germany * *  THIS SOFTWARE IS MADE AVAILABLE,  AS IS,  AND OFFIS MAKES NO  WARRANTY *  REGARDING  THE  SOFTWARE,  ITS  PERFORMANCE,  ITS  MERCHANTABILITY  OR *  FITNESS FOR ANY PARTICULAR USE, FREEDOM FROM ANY COMPUTER DISEASES  OR *  ITS CONFORMITY TO ANY SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND *  PERFORMANCE OF THE SOFTWARE IS WITH THE USER. * *  Module:  dcmdata * *  Author:  Gerd Ehlers, Andreas Barth * *  Purpose: Interface of class DcmIntegerString * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:29:00 $ *  Source File:      $Source: /share/dicom/cvs-depot/dcmtk/dcmdata/include/dcmtk/dcmdata/dcvris.h,v $ *  CVS/RCS Revision: $Revision: 1.15 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef DCVRIS_H#define DCVRIS_H#include "dcmtk/config/osconfig.h"    /* make sure OS specific configuration is included first */#include "dcmtk/dcmdata/dctypes.h"#include "dcmtk/dcmdata/dcbytstr.h"/** a class representing the DICOM value representation 'Integer String' (IS) */class DcmIntegerString  : public DcmByteString{  public:    /** constructor.     *  Create new element from given tag and length.     *  @param tag DICOM tag for the new element     *  @param len value length for the new element     */    DcmIntegerString(const DcmTag &tag,                     const Uint32 len = 0);    /** copy constructor     *  @param old element to be copied     */    DcmIntegerString(const DcmIntegerString &old);    /** destructor     */    virtual ~DcmIntegerString();    /** assignment operator     *  @param obj element to be assigned/copied     *  @return reference to this object     */    DcmIntegerString &operator=(const DcmIntegerString &obj);    /** clone method     *  @return deep copy of this object     */    virtual DcmObject *clone() const    {      return new DcmIntegerString(*this);    }    /** get element type identifier     *  @return type identifier of this class (EVR_IS)     */    virtual DcmEVR ident() const;    /** get particular integer value     *  @param sintVal reference to result variable     *  @param pos index of the value to be retrieved (0..vm-1)     *  @return status status, EC_Normal if successful, an error code otherwise     */    virtual OFCondition getSint32(Sint32 &sintVal,                                  const unsigned long pos = 0);    /** get a particular value as a character string     *  @param stringVal variable in which the result value is stored     *  @param pos index of the value in case of multi-valued elements (0..vm-1)     *  @param normalize delete leading and trailing spaces if OFTrue     *  @return status, EC_Normal if successful, an error code otherwise     */    virtual OFCondition getOFString(OFString &stringVal,                                    const unsigned long pos,                                    OFBool normalize = OFTrue);};#endif // DCVRIS_H/*** CVS/RCS Log:** $Log: dcvris.h,v $** Revision 1.15  2005/12/08 16:29:00  meichel** Changed include path schema for all DCMTK header files**** Revision 1.14  2004/07/01 12:28:25  meichel** Introduced virtual clone method for DcmObject and derived classes.**** Revision 1.13  2002/12/06 12:49:16  joergr** Enhanced "print()" function by re-working the implementation and replacing** the boolean "showFullData" parameter by a more general integer flag.** Added doc++ documentation.** Made source code formatting more consistent with other modules/files.**** Revision 1.12  2002/04/25 09:54:28  joergr** Removed getOFStringArray() implementation.**** Revision 1.11  2001/09/25 17:19:32  meichel** Adapted dcmdata to class OFCondition**** Revision 1.10  2001/06/01 15:48:50  meichel** Updated copyright header**** Revision 1.9  2000/03/08 16:26:24  meichel** Updated copyright header.**** Revision 1.8  1999/03/31 09:25:01  meichel** Updated copyright header in module dcmdata**** Revision 1.7  1998/11/12 16:47:50  meichel** Implemented operator= for all classes derived from DcmObject.**** Revision 1.6  1997/09/11 15:13:14  hewett** Modified getOFString method arguments by removing a default value** for the pos argument.  By requiring the pos argument to be provided** ensures that callers realise getOFString only gets one component of** a multi-valued string.**** Revision 1.5  1997/08/29 08:32:42  andreas** - Added methods getOFString and getOFStringArray for all**   string VRs. These methods are able to normalise the value, i. e.**   to remove leading and trailing spaces. This will be done only if**   it is described in the standard that these spaces are not relevant.**   These methods do not test the strings for conformance, this means**   especially that they do not delete spaces where they are not allowed!**   getOFStringArray returns the string with all its parts separated by \**   and getOFString returns only one value of the string.**   CAUTION: Currently getString returns a string with trailing**   spaces removed (if dcmEnableAutomaticInputDataCorrection == OFTrue) and**   truncates the original string (since it is not copied!). If you rely on this**   behaviour please change your application now.**   Future changes will ensure that getString returns the original**   string from the DICOM object (NULL terminated) inclusive padding.**   Currently, if you call getOF... before calling getString without**   normalisation, you can get the original string read from the DICOM object.**** Revision 1.4  1997/05/12 07:37:45  andreas** - new get-Methods for DcmDecimalString: getFloat64 and**   DcmIntegerString: getSint32**** Revision 1.3  1996/01/05 13:23:06  andreas** - changed to support new streaming facilities** - more cleanups** - merged read / write methods for block and file transfer***/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -