X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmFile.cxx;h=5b43dc21a688f13cff19db848afc7cfe17a98ee5;hb=5887c4beef24959af83e43efad0bb86acac9339e;hp=96fe85f43345dcd0c31df36247d1a796a238179c;hpb=a462ce9f1af0894cd930ab04f2e65cd80dfa7084;p=gdcm.git diff --git a/src/gdcmFile.cxx b/src/gdcmFile.cxx index 96fe85f4..5b43dc21 100644 --- a/src/gdcmFile.cxx +++ b/src/gdcmFile.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFile.cxx,v $ Language: C++ - Date: $Date: 2005/01/08 15:03:59 $ - Version: $Revision: 1.187 $ + Date: $Date: 2005/01/12 11:33:39 $ + Version: $Revision: 1.191 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -17,6 +17,8 @@ =========================================================================*/ #include "gdcmFile.h" +#include "gdcmGlobal.h" +#include "gdcmTS.h" #include "gdcmDocument.h" #include "gdcmDebug.h" #include "gdcmUtil.h" @@ -138,9 +140,10 @@ void File::Print(std::ostream &os) // Public /** * \brief Get the size of the image data - * * If the image can be RGB (with a lut or by default), the size * corresponds to the RGB image + * (use GetImageDataRawSize if you want to be sure to get *only* + * the size of the pixels) * @return The image size */ size_t File::GetImageDataSize() @@ -155,9 +158,9 @@ size_t File::GetImageDataSize() /** * \brief Get the size of the image data - * - * If the image can be RGB by transformation in a LUT, this - * transformation isn't considered + * If the image could be converted to RGB using a LUT, + * this transformation is not taken into account by GetImageDataRawSize + * (use GetImageDataSize if you wish) * @return The raw image size */ size_t File::GetImageDataRawSize() @@ -528,12 +531,12 @@ bool File::Write(std::string const &fileName) * the given value. * @param content new value (string) to substitute with * @param group group number of the Dicom Element to modify - * @param element element number of the Dicom Element to modify + * @param elem element number of the Dicom Element to modify */ bool File::SetEntry(std::string const &content, - uint16_t group, uint16_t element) + uint16_t group, uint16_t elem) { - return HeaderInternal->SetEntry(content,group,element); + return HeaderInternal->SetEntry(content,group,elem); } @@ -544,12 +547,12 @@ bool File::SetEntry(std::string const &content, * @param content new value (void* -> uint8_t*) to substitute with * @param lgth new value length * @param group group number of the Dicom Element to modify - * @param element element number of the Dicom Element to modify + * @param elem element number of the Dicom Element to modify */ bool File::SetEntry(uint8_t *content, int lgth, - uint16_t group, uint16_t element) + uint16_t group, uint16_t elem) { - return HeaderInternal->SetEntry(content,lgth,group,element); + return HeaderInternal->SetEntry(content,lgth,group,elem); } /** @@ -557,14 +560,14 @@ bool File::SetEntry(uint8_t *content, int lgth, * when it exists. Create it with the given value when unexistant. * @param content (string) Value to be set * @param group Group number of the Entry - * @param element Element number of the Entry + * @param elem Element number of the Entry * \return pointer to the modified/created Header Entry (NULL when creation * failed). */ bool File::ReplaceOrCreate(std::string const &content, - uint16_t group, uint16_t element) + uint16_t group, uint16_t elem) { - return HeaderInternal->ReplaceOrCreate(content,group,element) != NULL; + return HeaderInternal->ReplaceOrCreate(content,group,elem) != NULL; } /* @@ -573,14 +576,14 @@ bool File::ReplaceOrCreate(std::string const &content, * A copy of the binArea is made to be kept in the Document. * @param binArea (binary) value to be set * @param group Group number of the Entry - * @param element Element number of the Entry + * @param elem Element number of the Entry * \return pointer to the modified/created Header Entry (NULL when creation * failed). */ bool File::ReplaceOrCreate(uint8_t *binArea, int lgth, - uint16_t group, uint16_t element) + uint16_t group, uint16_t elem) { - return HeaderInternal->ReplaceOrCreate(binArea,lgth,group,element) != NULL; + return HeaderInternal->ReplaceOrCreate(binArea,lgth,group,elem) != NULL; } /** @@ -647,7 +650,8 @@ bool File::CheckWriteIntegrity() void File::SetWriteToRaw() { - if(HeaderInternal->GetNumberOfScalarComponents()==3 && !HeaderInternal->HasLUT()) + if( HeaderInternal->GetNumberOfScalarComponents() == 3 + && !HeaderInternal->HasLUT()) { SetWriteToRGB(); } @@ -666,7 +670,8 @@ void File::SetWriteToRaw() PixelWriteConverter->SetReadData(PixelReadConverter->GetRaw(), PixelReadConverter->GetRawSize()); - BinEntry *pixel = CopyBinEntry(GetHeader()->GetGrPixel(),GetHeader()->GetNumPixel()); + BinEntry *pixel = + CopyBinEntry(GetHeader()->GetGrPixel(),GetHeader()->GetNumPixel()); pixel->SetValue(GDCM_BINLOADED); pixel->SetBinArea(PixelWriteConverter->GetData(),false); pixel->SetLength(PixelWriteConverter->GetDataSize()); @@ -702,7 +707,8 @@ void File::SetWriteToRGB() PixelReadConverter->GetRawSize()); } - BinEntry *pixel = CopyBinEntry(GetHeader()->GetGrPixel(),GetHeader()->GetNumPixel()); + BinEntry *pixel = + CopyBinEntry(GetHeader()->GetGrPixel(),GetHeader()->GetNumPixel()); pixel->SetValue(GDCM_BINLOADED); pixel->SetBinArea(PixelWriteConverter->GetData(),false); pixel->SetLength(PixelWriteConverter->GetDataSize()); @@ -774,7 +780,7 @@ void File::SetWriteFileTypeToACR() void File::SetWriteFileTypeToExplicitVR() { std::string ts = Util::DicomString( - Document::GetTransferSyntaxValue(ExplicitVRLittleEndian).c_str() ); + Global::GetTS()->GetSpecialTransferSyntax(TS::ExplicitVRLittleEndian) ); ValEntry *tss = CopyValEntry(0x0002,0x0010); tss->SetValue(ts); @@ -785,7 +791,7 @@ void File::SetWriteFileTypeToExplicitVR() void File::SetWriteFileTypeToImplicitVR() { std::string ts = Util::DicomString( - Document::GetTransferSyntaxValue(ImplicitVRLittleEndian).c_str() ); + Global::GetTS()->GetSpecialTransferSyntax(TS::ImplicitVRLittleEndian) ); ValEntry *tss = CopyValEntry(0x0002,0x0010); tss->SetValue(ts); @@ -849,9 +855,9 @@ void File::RestoreWriteOfLibido() Archive->Restore(0x0008,0x0010); } -ValEntry *File::CopyValEntry(uint16_t group,uint16_t element) +ValEntry *File::CopyValEntry(uint16_t group,uint16_t elem) { - DocEntry *oldE = HeaderInternal->GetDocEntry(group, element); + DocEntry *oldE = HeaderInternal->GetDocEntry(group, elem); ValEntry *newE; if(oldE) @@ -861,15 +867,15 @@ ValEntry *File::CopyValEntry(uint16_t group,uint16_t element) } else { - newE = GetHeader()->NewValEntry(group,element); + newE = GetHeader()->NewValEntry(group,elem); } - return(newE); + return newE; } -BinEntry *File::CopyBinEntry(uint16_t group,uint16_t element) +BinEntry *File::CopyBinEntry(uint16_t group,uint16_t elem) { - DocEntry *oldE = HeaderInternal->GetDocEntry(group, element); + DocEntry *oldE = HeaderInternal->GetDocEntry(group, elem); BinEntry *newE; if(oldE) @@ -879,10 +885,10 @@ BinEntry *File::CopyBinEntry(uint16_t group,uint16_t element) } else { - newE = GetHeader()->NewBinEntry(group,element); + newE = GetHeader()->NewBinEntry(group,elem); } - return(newE); + return newE; } //-----------------------------------------------------------------------------