00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef DDPIIMPL_H
00031 #define DDPIIMPL_H
00032
00033 #include "dcmtk/config/osconfig.h"
00034
00035 #include "dcmtk/dcmdata/dcddirif.h"
00036
00037
00038
00039
00040
00041
00044 class DicomDirImageImplementation
00045 : public DicomDirImagePlugin
00046 {
00047 public:
00048
00051 DicomDirImageImplementation();
00052
00055 virtual ~DicomDirImageImplementation();
00056
00067 virtual OFBool scaleData(const Uint8 *srcData,
00068 const unsigned int srcWidth,
00069 const unsigned int srcHeight,
00070 Uint8 *dstData,
00071 const unsigned int dstWidth,
00072 const unsigned int dstHeight) const;
00073
00086 virtual OFBool scaleImage(DcmItem *dataset,
00087 Uint8 *pixel,
00088 const unsigned long count,
00089 const unsigned long frame,
00090 const unsigned int width,
00091 const unsigned int height,
00092 const OFBool decompressAll = OFFalse) const;
00093 };
00094
00095
00096 #endif
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116