X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvAnimatedGIFWriter.cxx;h=1efd50dcc1cc5f27be12899c980d41815be88587;hb=9c5f0e4d3d6b33e09d0413439ed7a867e3d85faa;hp=7af2ca4ab26466a2e7f401c3f9837a86cb4aa3ca;hpb=bcd98a7cb45fd4c3b5a41bc8cefa89f5790aca27;p=clitk.git diff --git a/vv/vvAnimatedGIFWriter.cxx b/vv/vvAnimatedGIFWriter.cxx index 7af2ca4..1efd50d 100644 --- a/vv/vvAnimatedGIFWriter.cxx +++ b/vv/vvAnimatedGIFWriter.cxx @@ -1,8 +1,6 @@ #include "vvAnimatedGIFWriter.h" #include "clitkDD.h" -#include "ximagif.h" - #include #include #include @@ -10,6 +8,8 @@ #include #include +#include "ximagif.h" + //--------------------------------------------------------------------------- vtkStandardNewMacro(vvAnimatedGIFWriter); @@ -18,6 +18,7 @@ vvAnimatedGIFWriter::vvAnimatedGIFWriter() { Rate = 5; Loops = 0; + Dither = false; } //--------------------------------------------------------------------------- @@ -65,20 +66,30 @@ void vvAnimatedGIFWriter::End() cast->SetOutputScalarTypeToUnsignedChar(); cast->Update(); + // Create palette for CxImage => Swap r and b in LUT + RGBQUAD pal[256]; + memcpy(pal, (RGBQUAD*)(quant->GetLookupTable()->GetPointer(0)), sizeof(RGBQUAD)*256); + for(unsigned int j=0; j<256; j++) + std::swap(pal[j].rgbBlue, pal[j].rgbRed); + // Create a stack of CxImages DWORD width = cast->GetOutput()->GetExtent()[1]-cast->GetOutput()->GetExtent()[0]+1; DWORD height = cast->GetOutput()->GetExtent()[3]-cast->GetOutput()->GetExtent()[2]+1; std::vector cximages( RGBslices.size() ); for(unsigned int i=0; iCreateFromArray((BYTE *)cast->GetOutput()->GetScalarPointer(0,0,i), - width, height, 8, width, false); cximages[i]->SetFrameDelay(100/Rate); - cximages[i]->SetPalette((RGBQUAD*)(quant->GetLookupTable()->GetPointer(0))); - // Swap r and b in LUT before setting it - RGBQUAD *pal = cximages[i]->GetPalette(); - for(unsigned int j=0; j<256; j++) - std::swap(pal[j].rgbBlue, pal[j].rgbRed); + if(Dither) { + cximages[i]->CreateFromArray((BYTE *)RGBvolume->GetOutput()->GetScalarPointer(0,0,i), + width, height, 24, width*3, false); + cximages[i]->SwapRGB2BGR(); + cximages[i]->DecreaseBpp(8, true, pal); + } + else { + cximages[i]->CreateFromArray((BYTE *)cast->GetOutput()->GetScalarPointer(0,0,i), + width, height, 8, width, false); + cximages[i]->SetPalette(pal); + } } // Create gif