X-Git-Url: https://cads.iiap.res.in/gitview/?p=fits2jpeg.git;a=blobdiff_plain;f=src%2Ffits2jpeg.h;fp=src%2Ffits2jpeg.h;h=accff93be5b569530ab335a84340e8a7ffe1e8c5;hp=0000000000000000000000000000000000000000;hb=43cf6bddbf02b21c68b405e267605b1b64cddd8d;hpb=e9b7faa7d8a84a6a7f0e1b65c8859b7405568890 diff --git a/src/fits2jpeg.h b/src/fits2jpeg.h new file mode 100644 index 0000000..accff93 --- /dev/null +++ b/src/fits2jpeg.h @@ -0,0 +1,61 @@ +/*************************************************************************** + * This file is a part of CADS/UVS fits2jpeg conversion software * + * Copyright (C) 2012 by CADS/UV Software Team, * + * Indian Institute of Astrophysics * + * Bangalore 560034 * + * cads_AT_iiap.res.in * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifdef HAVE_CONFIG_H +#include +#endif + +/*Header Definitions*/ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define PROGRAM "fits2jpeg" +#define r2d (90./atan2(1,0)) +#define MAX_TEXT 1024 + +int my_getopt(int, char * const *, const char *); +int make_dir(char *, mode_t); +int make_tree(char *, mode_t); +void banner(void); +void usage(void); +void signals_handler(int); +void set_signals(void); +void printinfo(const char *); +void printwarn(const char *); +void printerro(const char *); +void read_fits(char *, long *, long *, float **); +void scale_pixels(int, unsigned int, float *, JSAMPLE **); +void resize_image(long *, long *, float, JSAMPLE **); +char *strdup(const char *);