X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestWrite.cxx;h=dd7211aa05794cd4a2bf91bbdd7144d02e2f6388;hb=fa8fa610de8d935491343df2d8a543ff6fdb6e69;hp=bbdf452f22b81704f8f88318fa6f3e3726f004de;hpb=ab62b1a706df8e2ab1fbf26fa5037d6c22293655;p=gdcm.git diff --git a/Example/TestWrite.cxx b/Example/TestWrite.cxx index bbdf452f..dd7211aa 100644 --- a/Example/TestWrite.cxx +++ b/Example/TestWrite.cxx @@ -1,40 +1,58 @@ +/*========================================================================= + + Program: gdcm + Module: $RCSfile: TestWrite.cxx,v $ + Language: C++ + Date: $Date: 2005/07/07 17:31:53 $ + Version: $Revision: 1.21 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ +#include "gdcmFile.h" +#include "gdcmFileHelper.h" + #include -#include -#include "gdcm.h" -int main(int argc, char* argv[]) +int main(int argc, char *argv[]) { - std::string toto; - char zozo[200]; - + std::string fileNameToWrite; - gdcmHeader* e1; - gdcmFile * f1; + gdcm::File *f; + gdcm::FileHelper *fh; - //gdcmDocument * d; //not used - void* imageData; + void *imageData; int dataSize; if (argc < 3) { std::cerr << "usage: " << std::endl - << argv[0] << " fileName writtingMode " + << argv[0] << " OriginalFileName writtingMode " << std::endl - << "(a : ACR, d : DICOM Implicit VR," - << " x : DICOM Explicit VR r : RAW)" + << "(a : ACR, produces a file named OriginalFileName.ACR" + << " x : DICOM Explicit VR, produces a file named OriginalFileName.XDCM" + << " r : RAW, produces a file named OriginalFileName.RAW" + << " v : explicit VR + computes the video inv image --> OriginalFileName.VDCM" << std::endl; + return 0; } /* if (0) { // Just to keep the code for further use - std::cout <GetHeader()->IsReadable()) { + std::cout <GetFile()->IsReadable()) { std::cout << "Sorry, not a DICOM / ACR File" < after new gdcmHeader" + std::cout << std::endl << "----------------------> after new gdcmFile" << std::endl; - e1->PrintEntry(); + f->PrintEntry(); std::cout <IsReadable()) + // new style : + f = new gdcm::File( ); + f->SetLoadMode(0); + f->SetFileName( fileName ); + bool res = f->Load(); + if ( !res ) { std::cerr << "Sorry, not a Readable DICOM / ACR File" <Print(); + // f->Print(); - f1 = new gdcmFile(e1); + fh = new gdcm::FileHelper(f); + dataSize = fh->GetImageDataSize(); + imageData= fh->GetImageData(); + + // --- - dataSize = f1->GetImageDataSize(); std::cout <GetXSize(); - nY=e1->GetYSize(); - nZ=e1->GetZSize(); + nX=f->GetXSize(); + nY=f->GetYSize(); + nZ=f->GetZSize(); std::cout << " DIMX=" << nX << " DIMY=" << nY << " DIMZ=" << nZ << std::endl; - pixelType = e1->GetPixelType(); - sPP = e1->GetSamplesPerPixel(); - planarConfig = e1->GetPlanarConfiguration(); + pixelType = f->GetPixelType(); + sPP = f->GetSamplesPerPixel(); + planarConfig = f->GetPlanarConfiguration(); std::cout << " pixelType=" << pixelType << " SampleserPixel=" << sPP << " PlanarConfiguration=" << planarConfig << " PhotometricInterpretation=" - << e1->GetEntryByNumber(0x0028,0x0004) + << f->GetEntryValue(0x0028,0x0004) << std::endl; - int numberOfScalarComponents=e1->GetNumberOfScalarComponents(); + int numberOfScalarComponents=f->GetNumberOfScalarComponents(); std::cout << "NumberOfScalarComponents " << numberOfScalarComponents <GetTransfertSyntaxName(); + transferSyntaxName = f->GetTransferSyntaxName(); std::cout << " TransferSyntaxName= [" << transferSyntaxName << "]" << std::endl; - - if ( transferSyntaxName != "Implicit VR - Little Endian" + +/* + if ( transferSyntaxName != "Implicit VR - Little Endian" && transferSyntaxName != "Explicit VR - Little Endian" && transferSyntaxName != "Deflated Explicit VR - Little Endian" && transferSyntaxName != "Explicit VR - Big Endian" && transferSyntaxName != "Uncompressed ACR-NEMA" ) { std::cout << std::endl << "===========================================" << std::endl; - f1->ParsePixelData(); + fh->GetPixelReadConverter()->Print(); std::cout << std::endl << "===========================================" << std::endl; } - imageData= f1->GetImageData(); - - switch (argv[2][0]) { +*/ + switch (mode[0]) + { case 'a' : // ecriture d'un fichier ACR - // à partir d'un dcmHeader correct. + // à partir d'un dcmFile correct. - sprintf(zozo, "%s.ACR", toto.c_str()); - printf ("WriteACR\n"); - f1->WriteAcr(zozo); + fileNameToWrite = fileName + ".ACR"; + std::cout << "WriteACR" << std::endl; + fh->WriteAcr(fileNameToWrite); break; - case 'd' : + case 'd' : // Not document in the 'usage', because the method is knowed to be bugged. + // ecriture d'un fichier DICOM Implicit VR - // à partir d'un dcmHeader correct. + // à partir d'un dcmFile correct. - sprintf(zozo, "%s.DCM", toto.c_str()); - printf ("WriteDCM Implicit VR\n"); - f1->WriteDcmImplVR(zozo); + fileNameToWrite = fileName + ".DCM"; + std::cout << "WriteDCM Implicit VR" << std::endl; + fh->WriteDcmImplVR(fileNameToWrite); break; case 'x' : // ecriture d'un fichier DICOM Explicit VR - // à partir d'un dcmHeader correct. + // à partir d'un dcmFile correct. - sprintf(zozo, "%s.XDCM", toto.c_str()); + fileNameToWrite = fileName + ".XDCM"; std::cout << "WriteDCM Explicit VR" << std::endl; - f1->WriteDcmExplVR(zozo); + fh->WriteDcmExplVR(fileNameToWrite); break; case 'r' : // Ecriture d'un Raw File, a afficher avec // affim filein= dimx= dimy= nbit= signe= - sprintf(zozo, "%s.RAW", toto.c_str()); + fileNameToWrite = fileName + ".RAW"; std::cout << "WriteRaw" << std::endl; - f1->WriteRawData(zozo); + fh->WriteRawData(fileNameToWrite); break; + case 'v' : + + if ( fh->GetFile()->GetBitsAllocated() == 8) + { + std::cout << "videoinv for 8 bits" << std::endl; + for (int i=0; iWriteDcmExplVR(fileNameToWrite); + break; + } - return 0; + delete f; + delete fh; + return 0; }