aboutsummaryrefslogtreecommitdiff
path: root/pkg/images/imutil/src/t_imaxes.x
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/images/imutil/src/t_imaxes.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/images/imutil/src/t_imaxes.x')
-rw-r--r--pkg/images/imutil/src/t_imaxes.x33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkg/images/imutil/src/t_imaxes.x b/pkg/images/imutil/src/t_imaxes.x
new file mode 100644
index 00000000..86d32fbd
--- /dev/null
+++ b/pkg/images/imutil/src/t_imaxes.x
@@ -0,0 +1,33 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+include <imhdr.h>
+
+define SZ_PARAM 5
+
+
+# IMAXES -- Determine the number and lengths of the axes of an image.
+# Called from CL scripts. This routine will go away when we get DBIO
+# access from the CL.
+
+procedure t_imaxes()
+
+char imname[SZ_FNAME]
+char param[SZ_PARAM]
+int i
+pointer im
+pointer immap()
+
+begin
+ call clgstr ("image", imname, SZ_FNAME)
+ im = immap (imname, READ_ONLY, 0)
+
+ call clputi ("ndim", IM_NDIM(im))
+
+ do i = 1, IM_MAXDIM {
+ call sprintf (param, SZ_PARAM, "len%d")
+ call pargi (i)
+ call clputl (param, IM_LEN(im,i))
+ }
+
+ call imunmap (im)
+end