X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FimageUndoRedo%2FimageInfoUR.cxx;h=69c3811aceebfd4d63d639de64aa977187d2189e;hb=d725af03e25b41e03b212c26068be2c04dacd270;hp=d788dbc06ebc9d5aea9963ba9b8b546a9be2dea8;hpb=f4bdb751aba1f5fce1d4305365d6309f993d9c32;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageInfoUR.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageInfoUR.cxx index d788dbc..69c3811 100755 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageInfoUR.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/imageInfoUR.cxx @@ -50,6 +50,7 @@ void ImageInfoUR::RemoveImageFromMemory(const StringType& gPath) { } void ImageInfoUR::LoadImageMHDToMemory(const StringType& gPath) { StringType filename = gPath + this->m_ImageName; + filename.append(".mhd"); VTKMetaImageReaderPointerType reader = VTKMetaImageReaderPointerType::New(); reader->SetFileName(filename.c_str()); this->m_Image = reader->GetOutput(); @@ -59,6 +60,9 @@ void ImageInfoUR::LoadImageMHDToMemory(const StringType& gPath) { void ImageInfoUR::SaveImageAsMHD(const StringType& gPath) { this->m_OnDisk = true; StringType filename = gPath + this->m_ImageName; + filename.append(".mhd"); + //managing temporary files +//EED-11/11/2011 mkstemp((char*) filename.c_str()); VTKMetaImageWriterPointerType w = VTKMetaImageWriterPointerType::New(); w->SetInput(this->m_Image); w->SetCompression(false); @@ -68,5 +72,11 @@ void ImageInfoUR::SaveImageAsMHD(const StringType& gPath) { } void ImageInfoUR::RemoveImageFromDisk(const StringType& gPath) { - + StringType filename = gPath + this->m_ImageName; + filename.append(".mhd"); + StringType filenameRaw = gPath + this->m_ImageName; + filenameRaw.append(".raw"); +//EED-11/11/2011 mkstemp((char*) filenameRaw.c_str()); + unlink((char*) filename.c_str()); + unlink((char*) filenameRaw.c_str()); }