X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestWrite.cxx;h=1793b4d9be95e91def0066d0d2c09668a1db8b86;hb=8ac4df8c7543a827c7b89fc9bbcf86625f3c1afe;hp=bbdf452f22b81704f8f88318fa6f3e3726f004de;hpb=ab62b1a706df8e2ab1fbf26fa5037d6c22293655;p=gdcm.git diff --git a/Example/TestWrite.cxx b/Example/TestWrite.cxx index bbdf452f..1793b4d9 100644 --- a/Example/TestWrite.cxx +++ b/Example/TestWrite.cxx @@ -17,11 +17,14 @@ int main(int argc, char* argv[]) 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; } /* @@ -105,7 +108,8 @@ int main(int argc, char* argv[]) f1->WriteAcr(zozo); 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. @@ -132,6 +136,29 @@ int main(int argc, char* argv[]) f1->WriteRawData(zozo); break; + case 'v' : + + if ( f1->GetHeader()->GetBitsAllocated() == 8) + { + std::cout << "videoinv for 8 bits" << std::endl; + for (int i=0; iWriteDcmExplVR(zozo); + break; + } return 0; }