X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fimagefile.h;h=5f8c3248e2f7e7709adce82672aad04a85115524;hp=ef60d3ddebf39f26a92ae2352c6ae9a6828b4009;hb=30e455abcd8cac05ce7afe43216ec9e26342e1cf;hpb=29ceda2bc7505f0496e1cb5d1e45b489cafa7891 diff --git a/include/imagefile.h b/include/imagefile.h index ef60d3d..5f8c324 100644 --- a/include/imagefile.h +++ b/include/imagefile.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: imagefile.h,v 1.16 2000/06/28 15:25:34 kevin Exp $ +** $Id: imagefile.h,v 1.17 2000/07/11 10:32:44 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -147,6 +147,14 @@ class ImageFile : public ImageFileBase int displayScaling (const int scaleFactor, ImageFileValue pmin, ImageFileValue pmax); +#if HAVE_PNG + void writeImagePNG (const char *outfile, int bitdepth, int nxcell, int nycell, double densmin, double densmax); +#endif +#if HAVE_GD + void writeImageGIF (const char *outfile, int nxcell, int nycell, double densmin, double densmax); +#endif + void writeImagePGM (const char *outfile, int nxcell, int nycell, double densmin, double densmax); + void writeImagePGMASCII (const char *outfile, int nxcell, int nycell, double densmin, double densmax); };