<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi, <div class="">I 'm getting an error trying to write an image with pixel type double to a dicom series.</div><div class=""><div style="margin: 0px; "><br></div></div><div class="">In Mac OS X 10.8.3 with Xcode 4.62 the program runs but the resulting image is "reflected". See the attached image for an example.</div><div class=""><br></div><div class=""><img height="224" width="425" apple-width="yes" apple-height="yes" id="8d6b1440-522f-446b-83be-c3531e3bb3a9" src="cid:E86267B5-1438-4927-86A0-6B6D625B1D6F@unibe.ch"></div><div class=""><br></div><div class="">In windows 7 with Visual Studio, I get an access violation in gdcmRescaler.cxx line 107 or an assert in line 929 of itkGDCMImageIO.cxx, depending on the input image file. </div><div class=""><br></div><div class="">In both environments I am using ITK 4.3.1. Below you can find an excerpt from my code. </div><div class=""><br></div><div class="">The reason for using double is because I am trying to crop a Dicom series maintaining most of the original metadata. The problem is that the resulting Dicom series had always rescaleslope=1, even if the original rescale slope is 0.6 (0028,1052). From the code in itkGDCMImageIO.cxx seems that the rescale is considered only when the pixel type is FLOAT32 or FLOAT34 (ln 890 and ln 927). </div><div class="">Do you know how can I resolve this issue? </div><div class=""><br></div><div class="">Thanks </div><div class="">Best regards</div><div class="">Livia Barazzetti </div><div class=""><br></div><div class=""><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(120, 73, 42); ">#include </span>"itkVersion.h"</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(120, 73, 42); ">#include </span>"itkImage.h"</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(120, 73, 42); ">#include </span>"itkGDCMImageIO.h"</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(120, 73, 42); ">#include </span>"itkGDCMSeriesFileNames.h"</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(120, 73, 42); ">#include </span>"itkImageSeriesReader.h"</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(120, 73, 42); ">#include </span>"itkImageSeriesWriter.h"</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(120, 73, 42); ">#include </span><itksys/SystemTools.hxx></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(120, 73, 42); ">#include <span style="color: rgb(209, 47, 27); "><string></span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "><span style="color: rgb(187, 44, 162); ">int</span> main( <span style="color: rgb(187, 44, 162); ">int</span> argc, <span style="color: rgb(187, 44, 162); ">char</span>* argv[] )</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; ">{</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(187, 44, 162); ">const</span> <span style="color: rgb(187, 44, 162); ">unsigned</span> <span style="color: rgb(187, 44, 162); ">int</span> InputDimension = <span style="color: rgb(39, 42, 216); ">3</span>;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(187, 44, 162); ">const</span> <span style="color: rgb(187, 44, 162); ">unsigned</span> <span style="color: rgb(187, 44, 162); ">int</span> OutputDimension = <span style="color: rgb(39, 42, 216); ">2</span>;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(187, 44, 162); ">typedef</span> <span style="color: rgb(187, 44, 162); ">double</span> PixelType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>//typedef signed short PixelType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(187, 44, 162); ">typedef</span> <span style="color: rgb(112, 61, 170); ">itk</span>::<span style="color: rgb(112, 61, 170); ">Image</span>< <span style="color: rgb(79, 129, 135); ">PixelType</span>, InputDimension ></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> InputImageType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(187, 44, 162); ">typedef</span> <span style="color: rgb(112, 61, 170); ">itk</span>::<span style="color: rgb(112, 61, 170); ">Image</span>< <span style="color: rgb(79, 129, 135); ">PixelType</span>, OutputDimension ></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> OutputImageType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(112, 61, 170); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">typedef</span><span style="color: rgb(0, 0, 0); "> </span>itk<span style="color: rgb(0, 0, 0); ">::</span>ImageSeriesReader<span style="color: rgb(0, 0, 0); ">< </span><span style="color: rgb(79, 129, 135); ">InputImageType</span><span style="color: rgb(0, 0, 0); "> ></span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> ReaderType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(112, 61, 170); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">typedef</span><span style="color: rgb(0, 0, 0); "> </span>itk<span style="color: rgb(0, 0, 0); ">::</span>GDCMImageIO</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> ImageIOType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(112, 61, 170); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">typedef</span><span style="color: rgb(0, 0, 0); "> </span>itk<span style="color: rgb(0, 0, 0); ">::</span>GDCMSeriesFileNames</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> NamesGeneratorType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(79, 129, 135); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">typedef</span><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(112, 61, 170); ">itk</span><span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">ImageSeriesWriter</span><span style="color: rgb(0, 0, 0); ">< </span>InputImageType<span style="color: rgb(0, 0, 0); ">, </span>OutputImageType<span style="color: rgb(0, 0, 0); "> ></span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> SeriesWriterType;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "> <span style="color: rgb(187, 44, 162); ">if</span>( argc < <span style="color: rgb(39, 42, 216); ">3</span> ) </div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> {</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(112, 61, 170); ">cerr</span> << <span style="color: rgb(209, 47, 27); ">"Usage: "</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> << argv[<span style="color: rgb(39, 42, 216); ">0</span>]</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(0, 0, 0); "> << </span>" InputDicomDirectory "</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(0, 0, 0); "> << </span>" OutputDicomDirectory "</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> << <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(61, 29, 129); ">endl</span>;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(120, 73, 42); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">return</span><span style="color: rgb(0, 0, 0); "> </span>EXIT_FAILURE<span style="color: rgb(0, 0, 0); ">;</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> }</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(112, 61, 170); ">string</span> inputDir = argv[<span style="color: rgb(39, 42, 216); ">1</span>];</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(112, 61, 170); ">string</span> outputDir= argv[<span style="color: rgb(39, 42, 216); ">2</span>];</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>////////////////////////////////////////////////</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>// Read the input series</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(79, 129, 135); "><span style="color: rgb(0, 0, 0); "> </span>InputImageType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">Pointer</span><span style="color: rgb(0, 0, 0); "> image = </span>InputImageType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(61, 29, 129); ">New</span><span style="color: rgb(0, 0, 0); ">();</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(79, 129, 135); "><span style="color: rgb(0, 0, 0); "> </span>ImageIOType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">Pointer</span><span style="color: rgb(0, 0, 0); "> gdcmIO = </span>ImageIOType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(61, 29, 129); ">New</span><span style="color: rgb(0, 0, 0); ">();</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(79, 129, 135); "><span style="color: rgb(0, 0, 0); "> </span>NamesGeneratorType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">Pointer</span><span style="color: rgb(0, 0, 0); "> namesGenerator = </span>NamesGeneratorType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(61, 29, 129); ">New</span><span style="color: rgb(0, 0, 0); ">();</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> namesGenerator-><span style="color: rgb(61, 29, 129); ">SetInputDirectory</span>( inputDir.<span style="color: rgb(61, 29, 129); ">c_str</span>() );</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(79, 129, 135); ">ReaderType</span>::<span style="color: rgb(112, 61, 170); ">Pointer</span> reader = <span style="color: rgb(79, 129, 135); ">ReaderType</span>::<span style="color: rgb(61, 29, 129); ">New</span>();</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> reader-><span style="color: rgb(61, 29, 129); ">SetImageIO</span>( <span style="color: rgb(61, 29, 129); ">gdcmIO</span> );</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> reader-><span style="color: rgb(61, 29, 129); ">SetFileNames</span>( namesGenerator-><span style="color: rgb(61, 29, 129); ">GetInputFileNames</span>());</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(187, 44, 162); ">try</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> {</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> reader-><span style="color: rgb(61, 29, 129); ">Update</span>();</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> }</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(112, 61, 170); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">catch</span><span style="color: rgb(0, 0, 0); "> (</span>itk<span style="color: rgb(0, 0, 0); ">::</span>ExceptionObject<span style="color: rgb(0, 0, 0); "> &excp)</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> {</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(112, 61, 170); ">std</span><span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">cerr</span><span style="color: rgb(0, 0, 0); "> << </span>"Exception thrown while reading the series"<span style="color: rgb(0, 0, 0); "> << </span><span style="color: rgb(112, 61, 170); ">std</span><span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(61, 29, 129); ">endl</span><span style="color: rgb(0, 0, 0); ">;</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(112, 61, 170); ">cerr</span> << excp << <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(61, 29, 129); ">endl</span>;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(120, 73, 42); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">return</span><span style="color: rgb(0, 0, 0); "> </span>EXIT_FAILURE<span style="color: rgb(0, 0, 0); ">;</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> }</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> image = reader-><span style="color: rgb(61, 29, 129); ">GetOutput</span>();</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <span style="color: rgb(209, 47, 27); "> </span><br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>///////////////////////////////////////////////</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>// Apply the ROIFilter</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>//....</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>///////////////////////////////////////////////</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>// Create a MetaDataDictionary for each slice.</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>//...</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "><br></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>// Write the new DICOM series</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(112, 61, 170); ">std</span><span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">cout</span><span style="color: rgb(0, 0, 0); "> << </span>"Writing the new DICOM series "<span style="color: rgb(0, 0, 0); "> << </span><span style="color: rgb(112, 61, 170); ">std</span><span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(61, 29, 129); ">endl</span><span style="color: rgb(0, 0, 0); ">;</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(112, 61, 170); ">itksys</span>::<span style="color: rgb(112, 61, 170); ">SystemTools</span>::<span style="color: rgb(61, 29, 129); ">MakeDirectory</span>( outputDir.<span style="color: rgb(61, 29, 129); ">c_str</span>() );</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> namesGenerator-><span style="color: rgb(61, 29, 129); ">SetOutputDirectory</span>( outputDir.<span style="color: rgb(61, 29, 129); ">c_str</span>() );</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(79, 129, 135); "><span style="color: rgb(0, 0, 0); "> </span>SeriesWriterType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">Pointer</span><span style="color: rgb(0, 0, 0); "> seriesWriter = </span>SeriesWriterType<span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(61, 29, 129); ">New</span><span style="color: rgb(0, 0, 0); ">();</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> seriesWriter-><span style="color: rgb(61, 29, 129); ">SetInput</span>(<span style="color: rgb(61, 29, 129); ">image</span>);</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> seriesWriter-><span style="color: rgb(61, 29, 129); ">SetImageIO</span>( <span style="color: rgb(61, 29, 129); ">gdcmIO</span> );</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> seriesWriter-><span style="color: rgb(61, 29, 129); ">SetFileNames</span>(namesGenerator-><span style="color: rgb(61, 29, 129); ">GetOutputFileNames</span>()) ;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(0, 132, 0); "><span style="color: rgb(0, 0, 0); "> </span>//seriesWriter->SetMetaDataDictionaryArray( &outputArray ); //omitted in this example</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(187, 44, 162); ">try</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> {</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> seriesWriter-><span style="color: rgb(61, 29, 129); ">Update</span>();</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> }</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(112, 61, 170); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">catch</span><span style="color: rgb(0, 0, 0); ">( </span>itk<span style="color: rgb(0, 0, 0); ">::</span>ExceptionObject<span style="color: rgb(0, 0, 0); "> & excp )</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> {</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(209, 47, 27); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(112, 61, 170); ">std</span><span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(112, 61, 170); ">cerr</span><span style="color: rgb(0, 0, 0); "> << </span>"Exception thrown while writing the series "<span style="color: rgb(0, 0, 0); "> << </span><span style="color: rgb(112, 61, 170); ">std</span><span style="color: rgb(0, 0, 0); ">::</span><span style="color: rgb(61, 29, 129); ">endl</span><span style="color: rgb(0, 0, 0); ">;</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(112, 61, 170); ">cerr</span> << excp << <span style="color: rgb(112, 61, 170); ">std</span>::<span style="color: rgb(61, 29, 129); ">endl</span>;</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(120, 73, 42); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">return</span><span style="color: rgb(0, 0, 0); "> </span>EXIT_FAILURE<span style="color: rgb(0, 0, 0); ">;</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; "> }</div><div style="margin: 0px; font-size: 11px; font-family: Menlo; min-height: 13px; "> <br class="webkit-block-placeholder"></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; color: rgb(120, 73, 42); "><span style="color: rgb(0, 0, 0); "> </span><span style="color: rgb(187, 44, 162); ">return</span><span style="color: rgb(0, 0, 0); "> </span>EXIT_SUCCESS<span style="color: rgb(0, 0, 0); ">;</span></div><div style="margin: 0px; font-size: 11px; font-family: Menlo; ">}</div><div><br></div></div></body></html>