1999-10-04 13:51:40 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995-1999 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
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2001-05-26 02:10:38 +08:00
|
|
|
#ifndef __GIMP_SCAN_CONVERT_H__
|
|
|
|
#define __GIMP_SCAN_CONVERT_H__
|
1999-10-04 13:51:40 +08:00
|
|
|
|
|
|
|
|
2001-05-26 02:10:38 +08:00
|
|
|
typedef struct _GimpScanConvert GimpScanConvert;
|
1999-10-04 13:51:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* Create a new scan conversion context. Set "antialias" to 1 for no
|
2000-12-29 23:22:01 +08:00
|
|
|
* supersampling, or the amount to supersample by otherwise.
|
|
|
|
*/
|
2001-05-26 02:10:38 +08:00
|
|
|
GimpScanConvert * gimp_scan_convert_new (guint width,
|
2003-05-21 09:01:09 +08:00
|
|
|
guint height,
|
|
|
|
guint antialias);
|
1999-10-04 13:51:40 +08:00
|
|
|
|
2001-05-26 02:10:38 +08:00
|
|
|
void gimp_scan_convert_free (GimpScanConvert *scan_converter);
|
1999-10-04 13:51:40 +08:00
|
|
|
|
|
|
|
/* Add "npoints" from "pointlist" to the polygon currently being
|
2003-09-21 03:58:26 +08:00
|
|
|
* described by "scan_converter". DEPRECATED.
|
2000-12-29 23:22:01 +08:00
|
|
|
*/
|
2001-05-26 02:10:38 +08:00
|
|
|
void gimp_scan_convert_add_points (GimpScanConvert *scan_converter,
|
2003-05-21 09:01:09 +08:00
|
|
|
guint n_points,
|
|
|
|
GimpVector2 *points,
|
|
|
|
gboolean new_polygon);
|
1999-10-04 13:51:40 +08:00
|
|
|
|
2003-09-21 03:58:26 +08:00
|
|
|
/* Add a polygon with "npoints" "points" that may be open or closed.
|
|
|
|
* It is not recommended to mix gimp_scan_convert_add_polyline with
|
|
|
|
* gimp_scan_convert_add_points.
|
|
|
|
*
|
|
|
|
* Please note that if you should use gimp_scan_convert_stroke() if you
|
|
|
|
* specify open polygons.
|
|
|
|
*/
|
|
|
|
void gimp_scan_convert_add_polyline (GimpScanConvert *sc,
|
|
|
|
guint n_points,
|
|
|
|
GimpVector2 *points,
|
|
|
|
gboolean closed);
|
|
|
|
|
|
|
|
/* Stroke the content of a GimpScanConvert. The next
|
|
|
|
* gimp_scan_convert_to_channel will result in the outline of the polygon
|
|
|
|
* defined with the commands above.
|
|
|
|
*
|
|
|
|
* You cannot add additional polygons after this command.
|
|
|
|
*/
|
1999-10-04 13:51:40 +08:00
|
|
|
|
2003-09-21 03:58:26 +08:00
|
|
|
void gimp_scan_convert_stroke (GimpScanConvert *sc,
|
|
|
|
GimpJoinType join,
|
|
|
|
GimpCapType cap,
|
|
|
|
gdouble width);
|
|
|
|
|
|
|
|
/* Return a new Channel according to the polygonal shapes defined with
|
|
|
|
* the commands above.
|
|
|
|
*
|
|
|
|
* You cannot add additional polygons after this command.
|
2000-12-29 23:22:01 +08:00
|
|
|
*/
|
2001-05-26 02:10:38 +08:00
|
|
|
GimpChannel * gimp_scan_convert_to_channel (GimpScanConvert *scan_converter,
|
2003-05-21 09:01:09 +08:00
|
|
|
GimpImage *gimage);
|
1999-10-04 13:51:40 +08:00
|
|
|
|
|
|
|
|
2003-09-21 03:58:26 +08:00
|
|
|
/* This is a more low level version. Expects a tile manager of depth 1.
|
|
|
|
*
|
|
|
|
* You cannot add additional polygons after this command.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void gimp_scan_convert_render (GimpScanConvert *scan_converter,
|
|
|
|
TileManager *tile_manager);
|
2001-05-26 02:10:38 +08:00
|
|
|
#endif /* __GIMP_SCAN_CONVERT_H__ */
|