diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/dataio/export/exfcn.h | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/dataio/export/exfcn.h')
-rw-r--r-- | pkg/dataio/export/exfcn.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pkg/dataio/export/exfcn.h b/pkg/dataio/export/exfcn.h new file mode 100644 index 00000000..7a9c61b3 --- /dev/null +++ b/pkg/dataio/export/exfcn.h @@ -0,0 +1,25 @@ +# EXFCN.H - Include file for the special functions supported by the EXPORT task. + +# Outbands expressions functions. +define OB_FUNCTIONS "|band|line|flipx|flipy|\ + |cmap|setcmap|psdpi|psscale|\ + |zscale|grey|gray|bscale|gamma|\ + |block|" + +define BAND 1 # force band-interleaved storage +define LINE 2 # force line-interleaved storage +define FLIPX 3 # flip image left-to-right +define FLIPY 4 # flip image top-to-bottom +#newline +define CMAP 6 # create 8-bit colormap +define SETCMAP 7 # apply a colormap +define PSDPI 8 # set dpi for output +define PSSCALE 9 # set scale of PS output +#newline +define ZSCALE 11 # scale to a fixed number of bins +define GREY 12 # RGB to greyscale conversion +define GRAY 13 # " " " " +define BSCALE 14 # linearly transform intensity scale +define GAMMA 15 # apply a gamma correction +#newline +define BLOCK 17 # floodfill a block w/ a constant |