comparison Framework/Orthanc/Core/Images/Image.h @ 11:4b7e0244881f

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 26 Oct 2016 12:14:03 +0200
parents 2dbe613f6c93
children
comparison
equal deleted inserted replaced
10:55407926aac3 11:4b7e0244881f
43 ImageBuffer image_; 43 ImageBuffer image_;
44 44
45 public: 45 public:
46 Image(PixelFormat format, 46 Image(PixelFormat format,
47 unsigned int width, 47 unsigned int width,
48 unsigned int height); 48 unsigned int height,
49 bool forceMinimalPitch);
49 50
50 static Image* Clone(const ImageAccessor& source); 51 static Image* Clone(const ImageAccessor& source);
51 }; 52 };
52 } 53 }