2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1999-10-03 22:51:40 -07:00
|
|
|
* Copyright (C) 1995-1999 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1999-10-03 22:51:40 -07:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1999-10-03 22:51:40 -07:00
|
|
|
* (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
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1999-10-03 22:51:40 -07:00
|
|
|
*/
|
|
|
|
|
|
2001-05-25 11:10:38 -07:00
|
|
|
#ifndef __GIMP_SCAN_CONVERT_H__
|
|
|
|
|
#define __GIMP_SCAN_CONVERT_H__
|
1999-10-03 22:51:40 -07:00
|
|
|
|
|
|
|
|
|
2016-03-07 12:33:42 -08:00
|
|
|
GimpScanConvert *
|
|
|
|
|
gimp_scan_convert_new (void);
|
|
|
|
|
|
|
|
|
|
GimpScanConvert *
|
|
|
|
|
gimp_scan_convert_new_from_boundary (const GimpBoundSeg *bound_segs,
|
|
|
|
|
gint n_bound_segs,
|
|
|
|
|
gint offset_x,
|
|
|
|
|
gint offset_y);
|
1999-10-03 22:51:40 -07:00
|
|
|
|
2008-05-21 12:11:42 -07:00
|
|
|
void gimp_scan_convert_free (GimpScanConvert *sc);
|
|
|
|
|
void gimp_scan_convert_set_pixel_ratio (GimpScanConvert *sc,
|
|
|
|
|
gdouble ratio_xy);
|
|
|
|
|
void gimp_scan_convert_set_clip_rectangle (GimpScanConvert *sc,
|
|
|
|
|
gint x,
|
|
|
|
|
gint y,
|
|
|
|
|
gint width,
|
|
|
|
|
gint height);
|
|
|
|
|
void gimp_scan_convert_add_polyline (GimpScanConvert *sc,
|
|
|
|
|
guint n_points,
|
|
|
|
|
const GimpVector2 *points,
|
|
|
|
|
gboolean closed);
|
2011-04-10 10:07:04 -07:00
|
|
|
void gimp_scan_convert_add_bezier (GimpScanConvert *sc,
|
|
|
|
|
const GimpBezierDesc *bezier);
|
2008-05-21 12:11:42 -07:00
|
|
|
void gimp_scan_convert_stroke (GimpScanConvert *sc,
|
|
|
|
|
gdouble width,
|
|
|
|
|
GimpJoinStyle join,
|
|
|
|
|
GimpCapStyle cap,
|
|
|
|
|
gdouble miter,
|
|
|
|
|
gdouble dash_offset,
|
|
|
|
|
GArray *dash_info);
|
|
|
|
|
void gimp_scan_convert_render_full (GimpScanConvert *sc,
|
2012-03-20 15:34:11 -07:00
|
|
|
GeglBuffer *buffer,
|
2008-05-21 12:11:42 -07:00
|
|
|
gint off_x,
|
|
|
|
|
gint off_y,
|
|
|
|
|
gboolean replace,
|
|
|
|
|
gboolean antialias,
|
2012-05-13 14:13:53 -07:00
|
|
|
gdouble value);
|
2008-05-09 04:56:58 -07:00
|
|
|
|
2008-05-21 12:11:42 -07:00
|
|
|
void gimp_scan_convert_render (GimpScanConvert *sc,
|
2012-03-20 15:34:11 -07:00
|
|
|
GeglBuffer *buffer,
|
2008-05-21 12:11:42 -07:00
|
|
|
gint off_x,
|
|
|
|
|
gint off_y,
|
|
|
|
|
gboolean antialias);
|
|
|
|
|
void gimp_scan_convert_render_value (GimpScanConvert *sc,
|
2012-03-20 15:34:11 -07:00
|
|
|
GeglBuffer *buffer,
|
2008-05-21 12:11:42 -07:00
|
|
|
gint off_x,
|
|
|
|
|
gint off_y,
|
2012-05-13 14:13:53 -07:00
|
|
|
gdouble value);
|
2008-05-21 12:11:42 -07:00
|
|
|
void gimp_scan_convert_compose (GimpScanConvert *sc,
|
2012-03-20 15:34:11 -07:00
|
|
|
GeglBuffer *buffer,
|
2008-05-21 12:11:42 -07:00
|
|
|
gint off_x,
|
|
|
|
|
gint off_y);
|
|
|
|
|
void gimp_scan_convert_compose_value (GimpScanConvert *sc,
|
2012-03-20 15:34:11 -07:00
|
|
|
GeglBuffer *buffer,
|
2008-05-21 12:11:42 -07:00
|
|
|
gint off_x,
|
|
|
|
|
gint off_y,
|
2012-05-13 14:13:53 -07:00
|
|
|
gdouble value);
|
2005-08-06 07:54:13 -07:00
|
|
|
|
2003-09-30 11:06:19 -07:00
|
|
|
|
2001-05-25 11:10:38 -07:00
|
|
|
#endif /* __GIMP_SCAN_CONVERT_H__ */
|