X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FWrite.cxx;h=7fcf5b337bf1e447d606d464d774559a24fed93e;hb=e30e614e7f63b52306d85040068e2205a9e6327a;hp=b9632bda2a4da7a581ce57e53908b364972ba511;hpb=978f699b97794e209f9d20e2a33a72404bda54ef;p=gdcm.git diff --git a/Example/Write.cxx b/Example/Write.cxx index b9632bda..7fcf5b33 100644 --- a/Example/Write.cxx +++ b/Example/Write.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: Write.cxx,v $ Language: C++ - Date: $Date: 2004/11/16 04:26:18 $ - Version: $Revision: 1.9 $ + Date: $Date: 2005/01/21 11:40:53 $ + Version: $Revision: 1.17 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -15,17 +15,17 @@ 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[]) { - std::string toto; - char zozo[200]; + std::string zozo; - gdcm::Header* e1; - gdcm::File * f1; + gdcm::File* e1; + gdcm::FileHelper * f1; //gdcmDocument * d; //not used uint8_t* imageData; @@ -42,13 +42,13 @@ int main(int argc, char* argv[]) } /* 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(); std::cout <IsReadable()) { std::cerr << "Sorry, not a Readable DICOM / ACR File" <Print(); - f1 = new gdcm::File(e1); + f1 = new gdcm::FileHelper(e1); // --- dataSize = f1->GetImageDataSize(); @@ -85,57 +85,58 @@ int main(int argc, char* argv[]) sPP = e1->GetSamplesPerPixel(); planarConfig = e1->GetPlanarConfiguration(); - std::cout << " pixelType=" << pixelType + std::cout << " pixelType=" << pixelType << " SampleserPixel=" << sPP << " PlanarConfiguration=" << planarConfig << " PhotometricInterpretation=" - << e1->GetEntryByNumber(0x0028,0x0004) + << e1->GetEntry(0x0028,0x0004) << std::endl; int numberOfScalarComponents=e1->GetNumberOfScalarComponents(); std::cout << "NumberOfScalarComponents " << numberOfScalarComponents <GetTransfertSyntaxName(); + transferSyntaxName = e1->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->GetPixelConverter()->Print(); + f1->GetPixelReadConverter()->Print(); std::cout << std::endl << "===========================================" << std::endl; - } + }*/ imageData= f1->GetImageData(); (void)imageData; // to avoid warnings - switch (argv[2][0]) { + switch (argv[2][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"); + zozo = toto + ".ACR"; + std::cout << "WriteACR" << std::endl; f1->WriteAcr(zozo); break; case 'd' : // 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"); + zozo = toto + ".DCM"; + std::cout << "WriteDCM Implicit VR" << std::endl; f1->WriteDcmImplVR(zozo); 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()); - std::cout << "WriteDCM Explicit VR" << std::endl; + zozo = toto + ".DCM"; + std::cout << "WriteDCM Implicit VR" << std::endl; f1->WriteDcmExplVR(zozo); break; @@ -143,7 +144,7 @@ int main(int argc, char* argv[]) // Ecriture d'un Raw File, a afficher avec // affim filein= dimx= dimy= nbit= signe= - sprintf(zozo, "%s.RAW", toto.c_str()); + zozo = toto + ".RAW"; std::cout << "WriteRaw" << std::endl; f1->WriteRawData(zozo); break;