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

📄 dipipng.h

📁 转化为DIB位图再显示出来的dicom文件C++代码
💻 H
字号:
/* * *  Copyright (C) 2003-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:  dcmimage * *  Author:  Alexander Haderer * *  Purpose: Implements PNG interface for plugable image formats * *  Last Update:      $Author: meichel $ *  Update Date:      $Date: 2005/12/08 16:01:42 $ *  CVS/RCS Revision: $Revision: 1.5 $ *  Status:           $State: Exp $ * *  CVS/RCS Log at end of file * */#ifndef DIPIPNG_H#define DIPIPNG_H#include "dcmtk/config/osconfig.h"#ifdef WITH_LIBPNG#include "dcmtk/dcmimgle/diplugin.h"/*------------------------* *  forward declarations  * *------------------------*/class DiImage;/*--------------------* *  type definitions  * *--------------------*//** describes the different types of interlace supported by *  the PNG plugin.  Enumeration depends on capabilities *  of underlying PNG library (libpng). */enum DiPNGInterlace{  /// Adam7  E_pngInterlaceAdam7,  /// no interlace  E_pngInterlaceNone};/** describes the different types of metainfo written to *  the png file */enum DiPNGMetainfo{  /// no meta information  E_pngNoMetainfo,  /// file time, creator  E_pngFileMetainfo};/*---------------------* *  class declaration  * *---------------------*//** Implementation of a PNG plugin for the dcmimgle/dcmimage library */class DiPNGPlugin  : public DiPluginFormat{  public:    /** constructor     */    DiPNGPlugin();    /** destructor     */    virtual ~DiPNGPlugin();    /** write given image to a file stream (PNG format)     *  @param image pointer to DICOM image object to be written     *  @param stream stream to which the image is written (open in binary mode!)     *  @param frame index of frame used for output (default: first frame = 0)     *  @return true if successful, false otherwise     */    virtual int write(DiImage *image,                      FILE *stream,                      const unsigned long frame = 0) const;    /** set interlace type for PNG creation     *  @param inter interlace type     */    void setInterlaceType(DiPNGInterlace inter);    /** set metainfo type for PNG creation     *  @param minfo metainfo type     */    void setMetainfoType(DiPNGMetainfo minfo);    /** get version information of the PNG library.     *  Typical output format: "LIBPNG, Version 3.5.7"     *  @return name and version number of the PNG library     */    static OFString getLibraryVersionString(); private:    /// PNG interlace type    DiPNGInterlace interlaceType;    /// PNG metainfo type    DiPNGMetainfo metainfoType;};#endif#endif/* * CVS/RCS Log: * $Log: dipipng.h,v $ * Revision 1.5  2005/12/08 16:01:42  meichel * Changed include path schema for all DCMTK header files * * Revision 1.4  2004/04/07 12:06:28  joergr * Removed comma at end of enumerator list. * * Revision 1.3  2003/12/23 12:09:24  joergr * Updated documentation to get rid of doxygen warnings. * * Revision 1.2  2003/12/17 18:18:08  joergr * Removed leading underscore characters from preprocessor symbols (reserved * symbols). * * Revision 1.1  2003/02/11 13:18:38  meichel * Added PNG export option to dcm2pnm and dcmj2pnm * * */

⌨️ 快捷键说明

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