[Up] [Top] [Edit]

NAME

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

SYNOPSIS

int ft_simpleimageshm(char *filename, FITSHead *headptr, void **dataptr, void ***data2dptr, int size, int flags);
int ft_simpleimagemmap(char *filename, FITSHead *headptr, void **dataptr, void ***data2dptr, int prot, int share);
int ft_simpleimageread(char *filename, FITSHead *headptr, void **dataptr, void ***data2dptr, int pixtype);
int ft_simpleimagewrite(char *filename, FITSHead fits, void *data, int pixtype);
int ft_imageread(File file, FITSHead *headptr, void **dataptr, void ***data2dptr, int pixtype);
int ft_imagewrite(File file, FITSHead fits, void *data, int pixtype);


PARAMETERS

DESCRIPTION

ft_simpleimageshm

Attach a FITS image from shared memory.

ft_simpleimagemmap

MMap a FITS image from the named file.

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.

[Up] [Top] [Edit]