<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:arial,helvetica,sans-serif;font-size:10pt">&gt;You're right, I increment the
 pointer in order to fill it but just after the<br>&gt;"for" loop, I 
decrement it in order to be back at the beginning of the<br>&gt;pointer.
 Do 
you think it is still wrong ?<br><br>Oh, I didn't see that. But it is 
hard to know because of the following:<br><br> /*unsigned long i, x;<br>&nbsp;&nbsp;&nbsp;
 float * fImage;<br>&nbsp;&nbsp;&nbsp; pixList = 
[new2DViewer pixList];<br>&nbsp;&nbsp;&nbsp; for(i=0;i&lt;[pixList count]; i++){<br>&nbsp;&nbsp;&nbsp;
 &nbsp;&nbsp;&nbsp; curPix = [pixList objectAtIndex:i];<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; x = height * width;<br>&nbsp;&nbsp;&nbsp;

 &nbsp;&nbsp;&nbsp; fImage = [curPix fImage];<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; for(int j = 0;j&lt;height; 
j++) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; for(int k=0;k&lt;width; k++){<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
localBuffer[i+j*i+i*j*k] = fImage[j+j*k];<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;

 &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; 
NSRunCriticalAlertPanel(@"CptLocalBuffer", [NSString<br>stringWithFormat:@"Valeur

 de cptLocalBuffer : %d ", cptLocalBuffer], nil,<br>nil, nil);<br>&nbsp;&nbsp;&nbsp; 
NSRunCriticalAlertPanel(@"Nombre de pixels", [NSString<br>stringWithFormat:@"Valeur

 de numberOfPixels : %d ", numberOfPixels], nil,<br>nil, nil);<br>&nbsp;&nbsp;&nbsp; 
localBuffer -= cptLocalBuffer;<br><br>The first line in this part of the
 code has the opening symbol for a C-style comment - does this compile as I 
don't see the closing - I assumed you were attempting to comment out the
 pixel by pixel copy using array index values.&nbsp; <br><br>Todd<br><div style="font-family: tahoma,new york,times,serif; font-size: 10pt;"><br></div>
</div></body></html>