[Previous] [Next] [Up] [Top]

NAME

ft_simpleimageread,ft_simpleimagewrite,ft_imageread,ft_imagewrite -Fitsy FITS routines to read and write FITS images.

SYNOPSIS

int ft_simpleimageread(char *filename, FITSHead *headptr, void **dataptr, void ***data2dptr, int pixtype);
int ft_simpleimagewrite(char *filename, FITSHead fits, float *data, int pixtype);
int ft_imageread(File file, FITSHead *headptr, void **dataptr, void ***data2dptr, int pixtype);
int ft_imagewrite(File file, FITSHead fits, float *data, int pixtype);


PARAMETERS

DESCRIPTION

ft_simpleimageread

Read a FITS image from the named file.

ft_simpleimagewrite

Write a FITS image to a named file.

ft_imageread

Read a FITS image from a file pointer.

ft_imagewrite

Write a FITS image to a file.

[Previous] [Next] [Up] [Top]