/*========================================================================= Program: gdcm Module: $RCSfile: WriteDicomAsJPEG2000.cxx,v $ Language: C++ Date: $Date: 2007/07/13 08:17:20 $ Version: $Revision: 1.5 $ 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 "gdcmUtil.h" // Open a dicom file and compress it as JPEG 2000 stream int main(int argc, char *argv[]) { if( argc < 2) { std::cerr << argv[0] << " inputfilename.dcm\n"; return 1; } std::string filename = argv[1]; std::string outfilename = "/tmp/bla.dcm"; if( argc >= 3 ) outfilename = argv[2]; int quality = 100; if( argc >= 4 ) quality = atoi(argv[3]); std::cerr << "Using quality: " << quality << std::endl; // Step 1 : Create the header of the image GDCM_NAME_SPACE::File *f = GDCM_NAME_SPACE::File::New(); f->SetLoadMode ( GDCM_NAME_SPACE::LD_ALL ); // Load everything f->SetFileName( filename ); f->Load(); GDCM_NAME_SPACE::FileHelper *tested = GDCM_NAME_SPACE::FileHelper::New( f ); std::string PixelType = tested->GetFile()->GetPixelType(); int xsize = f->GetXSize(); int ysize = f->GetYSize(); int zsize = f->GetZSize(); //tested->Print( std::cout ); int samplesPerPixel = f->GetSamplesPerPixel(); size_t testedDataSize = tested->GetImageDataSize(); uint8_t *testedImageData = tested->GetImageData(); // Step 1 : Create the header of the image GDCM_NAME_SPACE::File *fileToBuild = GDCM_NAME_SPACE::File::New(); std::ostringstream str; // Set the image size str.str(""); str << xsize; fileToBuild->InsertEntryString(str.str(),0x0028,0x0011, "US"); // Columns str.str(""); str << ysize; fileToBuild->InsertEntryString(str.str(),0x0028,0x0010, "US"); // Rows if(zsize>1) { str.str(""); str << zsize; fileToBuild->InsertEntryString(str.str(),0x0028,0x0008, "IS"); // Number of Frames } int bitsallocated = f->GetBitsAllocated(); int bitsstored = f->GetBitsStored(); int highbit = f->GetHighBitPosition(); //std::string pixtype = f->GetPixelType(); int sign = f->IsSignedPixelData(); // Set the pixel type str.str(""); str << bitsallocated; fileToBuild->InsertEntryString(str.str(),0x0028,0x0100,"US"); // Bits Allocated str.str(""); str << bitsstored; fileToBuild->InsertEntryString(str.str(),0x0028,0x0101, "US"); // Bits Stored str.str(""); str << highbit; fileToBuild->InsertEntryString(str.str(),0x0028,0x0102, "US"); // High Bit // Set the pixel representation str.str(""); str << sign; fileToBuild->InsertEntryString(str.str(),0x0028,0x0103, "US"); // Pixel Representation // Set the samples per pixel str.str(""); str << samplesPerPixel; //img.components; fileToBuild->InsertEntryString(str.str(),0x0028,0x0002, "US"); // Samples per Pixel // Step 2 : Create the output image GDCM_NAME_SPACE::FileHelper *fileH = GDCM_NAME_SPACE::FileHelper::New(fileToBuild); fileH->SetWriteTypeToJPEG2000( ); fileH->SetImageData(testedImageData, testedDataSize); if( !fileH->Write(outfilename) ) { std::cerr << "write fails" << std::endl; } f->Delete(); tested->Delete(); fileToBuild->Delete(); fileH->Delete(); return 0; }