1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
#ifndef __CONVERT_H__
|
|
|
|
#define __CONVERT_H__
|
|
|
|
|
Actually use the enum types GimpImageType, GimpImageBaseType,
* app/*.[ch]: Actually use the enum types GimpImageType,
GimpImageBaseType, LayerModeEffects, PaintApplicationMode,
BrushApplicationMode, GimpFillType and ConvertPaletteType, instead
of just int or gint. Hopefully I catched most of the places
where these should be used.
Add an enum ConvolutionType, suffix the too general constants
NORMAL, ABSOLUTE and NEGATIVE with _CONVOL. Use NORMAL_MODE
instead of NORMAL in some places (this was what was intended). Fix
some minor gccisms.
* app/apptypes.h: New file. This file contains the above
enumeration types, and some opaque struct typedefs. It was
necessary to collect these in one header that doesn't include
other headers, because when we started using the above mentioned
types in the headers, all hell broke loose because of the
spaghetti-like cross-inclusion mess between headers.
(An example: Header A includes header B, which includes header C
which includes A. B uses a type defined in A. This is not defined,
because A hasn't defined it yet at the point where it includes B,
and A included from B of course is skipped as we already are
reading A.)
1999-08-19 07:41:39 +08:00
|
|
|
#include "apptypes.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "procedural_db.h"
|
1998-06-29 08:24:44 +08:00
|
|
|
#include "gimpimageF.h"
|
1998-12-19 08:00:06 +08:00
|
|
|
#include "palette_entries.h"
|
|
|
|
|
1999-03-20 12:41:59 +08:00
|
|
|
/* adam's extra palette stuff */
|
|
|
|
typedef enum {
|
1999-09-01 05:26:34 +08:00
|
|
|
MAKE_PALETTE = 0,
|
|
|
|
REUSE_PALETTE = 1,
|
|
|
|
WEB_PALETTE = 2,
|
|
|
|
MONO_PALETTE = 3,
|
|
|
|
CUSTOM_PALETTE = 4
|
1999-03-20 12:41:59 +08:00
|
|
|
} ConvertPaletteType;
|
|
|
|
|
1999-09-01 05:26:34 +08:00
|
|
|
/* adam's extra dither stuff */
|
|
|
|
typedef enum {
|
1999-09-02 04:41:10 +08:00
|
|
|
NO_DITHER = 0,
|
|
|
|
FS_DITHER = 1,
|
|
|
|
FSLOWBLEED_DITHER = 2,
|
|
|
|
FIXED_DITHER = 3,
|
1999-09-01 05:26:34 +08:00
|
|
|
|
1999-09-02 04:41:10 +08:00
|
|
|
NODESTRUCT_DITHER = 4 /* NEVER USE NODESTRUCT_DITHER EXPLICITLY */
|
1999-09-01 05:26:34 +08:00
|
|
|
} ConvertDitherType;
|
|
|
|
|
1999-03-28 14:55:29 +08:00
|
|
|
#define MAXNUMCOLORS 256
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* convert functions */
|
1999-03-28 14:55:29 +08:00
|
|
|
void convert_to_rgb (GimpImage *);
|
|
|
|
void convert_to_grayscale (GimpImage *);
|
|
|
|
void convert_to_indexed (GimpImage *);
|
|
|
|
|
1999-09-01 05:26:34 +08:00
|
|
|
void convert_image (GimpImage *,
|
|
|
|
GimpImageBaseType,
|
|
|
|
int num_cols,
|
|
|
|
ConvertDitherType,
|
|
|
|
int alpha_dither,
|
|
|
|
int remdups,
|
|
|
|
ConvertPaletteType);
|
1999-08-29 07:40:35 +08:00
|
|
|
|
1999-03-28 14:55:29 +08:00
|
|
|
extern PaletteEntriesP theCustomPalette;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
#endif /* __CONVERT_H__ */
|