X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=Example%2FTestWrite.cxx;h=a3c4806e2bf7632eac51e6707097656a33bb78c6;hb=0fd97a2f44764117b637de53e09b8a329ca133f8;hp=1793b4d9be95e91def0066d0d2c09668a1db8b86;hpb=0edbae0b69424af845a81a9f12ed16cec719130b;p=gdcm.git diff --git a/Example/TestWrite.cxx b/Example/TestWrite.cxx index 1793b4d9..a3c4806e 100644 --- a/Example/TestWrite.cxx +++ b/Example/TestWrite.cxx @@ -8,8 +8,8 @@ int main(int argc, char* argv[]) char zozo[200]; - gdcmHeader* e1; - gdcmFile * f1; + gdcm::Header* e1; + gdcm::File * f1; //gdcmDocument * d; //not used void* imageData; @@ -49,7 +49,7 @@ int main(int argc, char* argv[]) toto = argv[1]; - e1 = new gdcmHeader( toto.c_str() ); + e1 = new gdcm::Header( toto.c_str() ); if (!e1->IsReadable()) { std::cerr << "Sorry, not a Readable DICOM / ACR File" <Print(); - f1 = new gdcmFile(e1); + f1 = new gdcm::File(e1); // --- dataSize = f1->GetImageDataSize(); @@ -92,7 +92,7 @@ int main(int argc, char* argv[]) && transferSyntaxName != "Uncompressed ACR-NEMA" ) { std::cout << std::endl << "===========================================" << std::endl; - f1->ParsePixelData(); + f1->GetPixelConverter()->Print(); std::cout << std::endl << "===========================================" << std::endl; }