how may to turn the image

Hi everyone

I am using Igor to investigate my Image from Labview.
As you see in my attachment,Igor turns my image in vertical axis.

Does anyone know how to see my image exactly the same?
this is my code:

Function AjustaImagen()

GBLoadWave/O/N=wave/T={16,80}/W=1 "D:DATA:temporalIgor.txt"
Redimension/N=(640,480) wave0
Duplicate wave0 Trampa1
Display /N=MyGraph
AppendImage wave0
ModifyImage wave0 ctab= {*,*,Rainbow,0}

Many thanks!
iamge.JPG
AppendImage supports the axisFlags /L/R/B/T

You can try to replace your AppendImage line with:

AppendImage/T wave0

Alternatively, you could replace the Display and AppendImage lines with NewImage.

A.G.
WaveMetrics, Inc.
AppendImage/T changes my axis but not my image.

I replace the Display and AppendImage lines with NewImage, I see exactly the same image, But for every image which loading, one Graph is open. How can kill them?

Best regards

You just need to reverse the left axis to flip the image from top to bottom.

In the Modify Axis dialog's Axis range tab, change the state of the Reverse axis checkbox.

--Jim Prouty
Software Engineer, WaveMetrics, Inc.
saeed wrote:
... But for every image which loading, one Graph is open. How can kill them?


It is difficult to understand what you mean by this. Please explain clearly.

--Jim Prouty
Software Engineer, WaveMetrics, Inc.
Thanks Jim Prouty
it is so easy way and I solve my other problem.