<div>Hi Luis and Mathieu,</div>
<div>I wrapped my input dicom file with a deform field and applied DicomImageReadWrite.cxx to write a dicom file. The default itk dicom library produced &quot;Explicit little Endian&quot; file type as the &quot;Transfer Syntax&quot;. My application software currently only supports &quot;Implicit little Endian&quot; file type as the &quot;Transfer Syntax&quot;. Is tere any way to modified the following subroutine to output a dicom file with &quot;Implicit little Endian&quot; file type ?</div>

<div>Thanks and regards,</div>
<div>Howard</div>
<div> </div>
<div> </div>
<div>typedef unsigned int WritePixelType;<br>  typedef itk::Image&lt; WritePixelType, 3 &gt; WriteImageType;<br>  typedef itk::ImageFileWriter&lt; WriteImageType &gt;  WriterType;<br>  <br>  WriterType::Pointer writer = WriterType::New();</div>

<div>  writer-&gt;SetFileName( argv[2] );<br>  writer-&gt;SetInput( warper-&gt;GetOutput() );</div>
<div>  writer-&gt;UseInputMetaDataDictionaryOff ();<br>  writer-&gt;SetImageIO( gdcmImageIO );<br>  try<br>    {<br>    writer-&gt;Update();<br>    }<br>  catch (itk::ExceptionObject &amp; e)<br>    {<br>    std::cerr &lt;&lt; &quot;Exception in file writer &quot; &lt;&lt; std::endl;<br>
    std::cerr &lt;&lt; e &lt;&lt; std::endl;<br>    return EXIT_FAILURE;</div>