X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FWrite.cxx;h=c1be99465ff6b23d546662b8d3c454e662f779ad;hb=f6204e4795251ff95c653e32e8cdca61d2c19880;hp=120f73cb03534d8a5b84eba432a747af77736708;hpb=cba27e8db47fefa11652b98dd81d782c13eb9a80;p=gdcm.git diff --git a/Example/Write.cxx b/Example/Write.cxx index 120f73cb..c1be9946 100644 --- a/Example/Write.cxx +++ b/Example/Write.cxx @@ -1,17 +1,14 @@ #include -#include "gdcm.h" -#include "gdcmHeader.h" -#include "gdcmDocument.h" - #include +#include "gdcm.h" int main(int argc, char* argv[]) { std::string toto; char zozo[200]; - gdcmHeader* e1; - gdcmFile * f1; + gdcm::Header* e1; + gdcm::File * f1; //gdcmDocument * d; //not used void* imageData; @@ -48,14 +45,14 @@ int main(int argc, char* argv[]) toto = argv[1]; - e1 = new gdcmHeader(toto.c_str(), false, true); + 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(); @@ -90,7 +87,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; }