comparison Framework/Orthanc/Core/Images/JpegWriter.h @ 54:06847108819c

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 24 Nov 2016 12:59:50 +0100
parents dc730d11b101
children
comparison
equal deleted inserted replaced
53:175d06fa292e 54:06847108819c
44 unsigned int height, 44 unsigned int height,
45 unsigned int pitch, 45 unsigned int pitch,
46 PixelFormat format, 46 PixelFormat format,
47 const void* buffer); 47 const void* buffer);
48 48
49 #if ORTHANC_SANDBOXED == 0
49 virtual void WriteToMemoryInternal(std::string& jpeg, 50 virtual void WriteToMemoryInternal(std::string& jpeg,
50 unsigned int width, 51 unsigned int width,
51 unsigned int height, 52 unsigned int height,
52 unsigned int pitch, 53 unsigned int pitch,
53 PixelFormat format, 54 PixelFormat format,
54 const void* buffer); 55 const void* buffer);
56 #endif
55 57
56 private: 58 private:
57 uint8_t quality_; 59 uint8_t quality_;
58 60
59 public: 61 public: