comparison OrthancFramework/Sources/DicomFormat/DicomImageInformation.cpp @ 4312:6d49e3b6ff77

fix abi of DicomImageInformation
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Nov 2020 15:22:43 +0100
parents 785a2713323e
children d9473bd5ed43
comparison
equal deleted inserted replaced
4311:cb9aef006229 4312:6d49e3b6ff77
335 return (GetHeight() * 335 return (GetHeight() *
336 GetWidth() * 336 GetWidth() *
337 GetBytesPerValue() * 337 GetBytesPerValue() *
338 GetChannelCount()); 338 GetChannelCount());
339 } 339 }
340
341
342 unsigned int DicomImageInformation::GetUsefulTagLength()
343 {
344 return 256;
345 }
340 } 346 }