From f8c25fd447e8d2502521e06baae45be835ee7c1c Mon Sep 17 00:00:00 2001 From: jpr Date: Fri, 7 Nov 2003 14:37:12 +0000 Subject: [PATCH] update Changelog --- ChangeLog | 24 ++++++++++++++++++++++++ src/gdcmFile.cxx | 14 +++++++++----- 2 files changed, 33 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index a1129a7a..6f16f213 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,27 @@ +2003-11-07 Jean-Pierre Roux + *FIX misstyping in Transfert Syntax name table + *ENH gdcmHeader::FixFoundLength now allow to 'go inside' tge SeQuences + when they have an actual length (not 0000 nor FFFFF) + (Nobody should care of it, but DICOMDIR explorers) + +2003-11-06 Mathieu Malaterre + *ENH: vtkgdcmViewer now works with LUT dicom (OT-PAL-face ...) + +2003-11-05 Mathieu Malaterre + *ENH: vtkGdcmReader now supports LUT ! + (vtkgdcmViewer for now is not able to use them though) + +2003-11-05 Jean-Pierre Roux + * in testSuite.py : new files names for checking the package + * Fix : Forgot to commit gdcmFile::GetImageDataSizeRaw(); + that returns the pixel area size to the *aware* (vtk) user + that DOESN'T want to turn the PALETTE COLOR image into an RGB image + +2003-11-05 Benoit Regrain + * in testSuite.py : Modify the rules for checking the paths + : Explicit error messages + * in __init__.py : Related modif + 2003-11-03 Jean-Pierre Roux * add gdcmHeaderHelper::GetNumberOfScalarComponentsRaw() to be used by aware (vtk) users that want to manage diff --git a/src/gdcmFile.cxx b/src/gdcmFile.cxx index 1a57bb6d..4b22d148 100644 --- a/src/gdcmFile.cxx +++ b/src/gdcmFile.cxx @@ -374,7 +374,7 @@ size_t gdcmFile::GetImageDataIntoVector (void* destination, size_t MaxSize) { unsigned char * a = (unsigned char *)destination; unsigned char * lutRGBA = (unsigned char *)GetLUTRGBA(); if (lutRGBA) { - int l = lgrTotale/3; + int l = lgrTotaleRaw; memmove(newDest, destination, l);// move Gray pixels to temp area int j; for (int i=0;i