2005-04-14 10:32:23 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpvectors_pdb.c
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2005-04-14 10:32:23 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2005-04-14 10:32:23 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2005-04-14 10:32:23 +08:00
|
|
|
*/
|
|
|
|
|
2007-01-09 18:52:47 +08:00
|
|
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
2005-04-14 10:32:23 +08:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2022-03-28 21:13:17 +08:00
|
|
|
#include "stamp-pdbgen.h"
|
|
|
|
|
2005-04-14 10:32:23 +08:00
|
|
|
#include "gimp.h"
|
|
|
|
|
2010-07-07 17:43:10 +08:00
|
|
|
|
|
|
|
/**
|
2019-07-31 16:04:43 +08:00
|
|
|
* SECTION: gimpvectors
|
2010-07-07 17:43:10 +08:00
|
|
|
* @title: gimpvectors
|
|
|
|
* @short_description: Functions for querying and manipulating vectors.
|
|
|
|
*
|
|
|
|
* Functions for querying and manipulating vectors.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2005-12-30 04:55:07 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_new:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image.
|
2005-12-30 04:55:07 +08:00
|
|
|
* @name: the name of the new vector object.
|
|
|
|
*
|
2006-03-22 20:15:06 +08:00
|
|
|
* Creates a new empty vectors object.
|
2005-12-30 04:55:07 +08:00
|
|
|
*
|
2008-04-04 22:50:42 +08:00
|
|
|
* Creates a new empty vectors object. The vectors object needs to be
|
2010-09-06 06:03:29 +08:00
|
|
|
* added to the image using gimp_image_insert_vectors().
|
2005-12-30 04:55:07 +08:00
|
|
|
*
|
2019-08-15 18:12:25 +08:00
|
|
|
* Returns: (transfer none):
|
2019-08-14 03:36:03 +08:00
|
|
|
* the current vector object, 0 if no vector exists in the image.
|
2005-12-30 04:55:07 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2019-08-14 03:36:03 +08:00
|
|
|
GimpVectors *
|
2019-08-11 20:20:05 +08:00
|
|
|
gimp_vectors_new (GimpImage *image,
|
2006-04-12 18:27:31 +08:00
|
|
|
const gchar *name)
|
2005-12-30 04:55:07 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2019-08-14 03:36:03 +08:00
|
|
|
GimpVectors *vectors = NULL;
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
2019-08-08 19:01:50 +08:00
|
|
|
G_TYPE_STRING, name,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-new",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
vectors = GIMP_VALUES_GET_VECTORS (return_vals, 1);
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2019-08-14 03:36:03 +08:00
|
|
|
return vectors;
|
2005-12-30 04:55:07 +08:00
|
|
|
}
|
|
|
|
|
2008-04-04 22:50:42 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_new_from_text_layer:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image.
|
2019-08-13 19:59:33 +08:00
|
|
|
* @layer: The text layer.
|
2008-04-04 22:50:42 +08:00
|
|
|
*
|
|
|
|
* Creates a new vectors object from a text layer.
|
|
|
|
*
|
|
|
|
* Creates a new vectors object from a text layer. The vectors object
|
2010-09-06 06:03:29 +08:00
|
|
|
* needs to be added to the image using gimp_image_insert_vectors().
|
2008-04-04 22:50:42 +08:00
|
|
|
*
|
2019-08-15 18:12:25 +08:00
|
|
|
* Returns: (transfer none): The vectors of the text layer.
|
2008-04-04 22:50:42 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.6
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2019-08-14 03:36:03 +08:00
|
|
|
GimpVectors *
|
2019-08-11 20:20:05 +08:00
|
|
|
gimp_vectors_new_from_text_layer (GimpImage *image,
|
2019-08-13 19:59:33 +08:00
|
|
|
GimpLayer *layer)
|
2008-04-04 22:50:42 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2019-08-14 03:36:03 +08:00
|
|
|
GimpVectors *vectors = NULL;
|
2008-04-04 22:50:42 +08:00
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
|
|
|
GIMP_TYPE_LAYER, layer,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
2008-04-04 22:50:42 +08:00
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-new-from-text-layer",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2008-04-04 22:50:42 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
vectors = GIMP_VALUES_GET_VECTORS (return_vals, 1);
|
2019-07-30 16:51:16 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
2008-04-04 22:50:42 +08:00
|
|
|
|
2019-08-14 03:36:03 +08:00
|
|
|
return vectors;
|
2008-04-04 22:50:42 +08:00
|
|
|
}
|
|
|
|
|
2008-07-28 22:13:18 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_copy:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object to copy.
|
|
|
|
*
|
|
|
|
* Copy a vectors object.
|
|
|
|
*
|
|
|
|
* This procedure copies the specified vectors object and returns the
|
|
|
|
* copy.
|
|
|
|
*
|
2019-08-15 18:12:25 +08:00
|
|
|
* Returns: (transfer none): The newly copied vectors object.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
**/
|
|
|
|
GimpVectors *
|
|
|
|
gimp_vectors_copy (GimpVectors *vectors)
|
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
GimpVectors *vectors_copy = NULL;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-copy",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
vectors_copy = GIMP_VALUES_GET_VECTORS (return_vals, 1);
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return vectors_copy;
|
|
|
|
}
|
|
|
|
|
2006-03-24 05:17:16 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_get_strokes:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
2019-08-01 04:51:35 +08:00
|
|
|
* @num_strokes: (out): The number of strokes returned.
|
2006-03-24 05:17:16 +08:00
|
|
|
*
|
|
|
|
* List the strokes associated with the passed path.
|
|
|
|
*
|
|
|
|
* Returns an Array with the stroke-IDs associated with the passed
|
|
|
|
* path.
|
|
|
|
*
|
2019-08-05 04:09:04 +08:00
|
|
|
* Returns: (array length=num_strokes) (element-type gint32) (transfer full):
|
|
|
|
* List of the strokes belonging to the path.
|
|
|
|
* The returned value must be freed with g_free().
|
2006-03-24 05:17:16 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2006-03-24 05:17:16 +08:00
|
|
|
gint *
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_vectors_get_strokes (GimpVectors *vectors,
|
|
|
|
gint *num_strokes)
|
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gint *stroke_ids = NULL;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-get-strokes",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
*num_strokes = 0;
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-08-14 03:36:03 +08:00
|
|
|
{
|
2019-09-04 08:49:33 +08:00
|
|
|
*num_strokes = GIMP_VALUES_GET_INT (return_vals, 1);
|
|
|
|
stroke_ids = GIMP_VALUES_DUP_INT32_ARRAY (return_vals, 2);
|
2019-08-14 03:36:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return stroke_ids;
|
|
|
|
}
|
|
|
|
|
2005-12-29 05:24:12 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_stroke_get_length:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @stroke_id: The stroke ID.
|
2021-01-21 03:33:41 +08:00
|
|
|
* @precision: The precision used for approximating straight portions of the stroke.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
|
|
|
* Measure the length of the given stroke.
|
|
|
|
*
|
|
|
|
* Measure the length of the given stroke.
|
|
|
|
*
|
|
|
|
* Returns: The length (in pixels) of the given stroke.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
gdouble
|
|
|
|
gimp_vectors_stroke_get_length (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble precision)
|
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gdouble length = 0.0;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
|
|
|
G_TYPE_DOUBLE, precision,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-get-length",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
length = GIMP_VALUES_GET_DOUBLE (return_vals, 1);
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2005-12-30 04:55:07 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_stroke_get_point_at_dist:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
2005-12-30 04:55:07 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
|
|
|
* @dist: The given distance.
|
2006-10-24 16:30:55 +08:00
|
|
|
* @precision: The precision used for the approximation.
|
2019-08-01 04:51:35 +08:00
|
|
|
* @x_point: (out): The x position of the point.
|
|
|
|
* @y_point: (out): The y position of the point.
|
|
|
|
* @slope: (out): The slope (dy / dx) at the specified point.
|
|
|
|
* @valid: (out): Indicator for the validity of the returned data.
|
2005-12-30 04:55:07 +08:00
|
|
|
*
|
|
|
|
* Get point at a specified distance along the stroke.
|
|
|
|
*
|
|
|
|
* This will return the x,y position of a point at a given distance
|
|
|
|
* along the stroke. The distance will be obtained by first digitizing
|
|
|
|
* the curve internally and then walking along the curve. For a closed
|
|
|
|
* stroke the start of the path is the first point on the path that was
|
|
|
|
* created. This might not be obvious. If the stroke is not long
|
|
|
|
* enough, a \"valid\" flag will be FALSE.
|
|
|
|
*
|
2006-10-24 16:30:55 +08:00
|
|
|
* Returns: TRUE on success.
|
2005-12-30 04:55:07 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2006-10-24 16:30:55 +08:00
|
|
|
gboolean
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_vectors_stroke_get_point_at_dist (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble dist,
|
|
|
|
gdouble precision,
|
|
|
|
gdouble *x_point,
|
|
|
|
gdouble *y_point,
|
|
|
|
gdouble *slope,
|
|
|
|
gboolean *valid)
|
2005-12-30 04:55:07 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2006-10-24 16:30:55 +08:00
|
|
|
gboolean success = TRUE;
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-08-08 19:01:50 +08:00
|
|
|
G_TYPE_DOUBLE, dist,
|
|
|
|
G_TYPE_DOUBLE, precision,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-get-point-at-dist",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2006-10-24 16:30:55 +08:00
|
|
|
*x_point = 0.0;
|
|
|
|
*y_point = 0.0;
|
|
|
|
*slope = 0.0;
|
|
|
|
*valid = FALSE;
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2006-10-24 16:30:55 +08:00
|
|
|
|
|
|
|
if (success)
|
2005-12-30 04:55:07 +08:00
|
|
|
{
|
2019-09-04 08:49:33 +08:00
|
|
|
*x_point = GIMP_VALUES_GET_DOUBLE (return_vals, 1);
|
|
|
|
*y_point = GIMP_VALUES_GET_DOUBLE (return_vals, 2);
|
|
|
|
*slope = GIMP_VALUES_GET_DOUBLE (return_vals, 3);
|
|
|
|
*valid = GIMP_VALUES_GET_BOOLEAN (return_vals, 4);
|
2005-12-30 04:55:07 +08:00
|
|
|
}
|
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2006-10-24 16:30:55 +08:00
|
|
|
return success;
|
2005-12-30 04:55:07 +08:00
|
|
|
}
|
|
|
|
|
2005-06-02 00:20:46 +08:00
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_remove_stroke:
|
|
|
|
* @vectors: The vectors object.
|
2005-06-02 00:20:46 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* remove the stroke from a vectors object.
|
2005-06-02 00:20:46 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Remove the stroke from a vectors object.
|
2005-06-02 00:20:46 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-06-02 00:20:46 +08:00
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_remove_stroke (GimpVectors *vectors,
|
|
|
|
gint stroke_id)
|
2005-06-02 00:20:46 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2005-06-02 00:20:46 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-09-03 19:31:27 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
2005-06-02 00:20:46 +08:00
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-remove-stroke",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-06-02 00:20:46 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2019-07-30 16:51:16 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
2005-06-02 00:20:46 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2005-12-30 04:55:07 +08:00
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_close:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
2005-12-30 04:55:07 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* closes the specified stroke.
|
2005-12-30 04:55:07 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Closes the specified stroke.
|
2005-12-30 04:55:07 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-12-30 04:55:07 +08:00
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_stroke_close (GimpVectors *vectors,
|
|
|
|
gint stroke_id)
|
2005-12-30 04:55:07 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2005-12-30 04:55:07 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-close",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2005-12-30 04:55:07 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2020-05-26 04:55:01 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_vectors_stroke_reverse:
|
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @stroke_id: The stroke ID.
|
|
|
|
*
|
|
|
|
* reverses the specified stroke.
|
|
|
|
*
|
|
|
|
* Reverses the specified stroke.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gimp_vectors_stroke_reverse (GimpVectors *vectors,
|
|
|
|
gint stroke_id)
|
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
|
|
|
G_TYPE_INT, stroke_id,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-reverse",
|
|
|
|
args);
|
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
2005-12-30 04:55:07 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2005-05-17 09:20:03 +08:00
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_translate:
|
|
|
|
* @vectors: The vectors object.
|
2005-05-17 09:20:03 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
2019-09-03 19:31:27 +08:00
|
|
|
* @off_x: Offset in x direction.
|
|
|
|
* @off_y: Offset in y direction.
|
2005-05-17 09:20:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* translate the given stroke.
|
2005-05-17 09:20:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Translate the given stroke.
|
2005-05-17 09:20:03 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-05-17 09:20:03 +08:00
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_stroke_translate (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
2022-10-07 09:40:26 +08:00
|
|
|
gdouble off_x,
|
|
|
|
gdouble off_y)
|
2005-05-17 09:20:03 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2005-05-17 09:20:03 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-09-03 19:31:27 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2022-10-07 09:40:26 +08:00
|
|
|
G_TYPE_DOUBLE, off_x,
|
|
|
|
G_TYPE_DOUBLE, off_y,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
2005-12-29 05:24:12 +08:00
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-translate",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-12-29 05:24:12 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2019-07-30 16:51:16 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
2005-12-29 05:24:12 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_scale:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
2005-12-29 05:24:12 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
2019-09-03 19:31:27 +08:00
|
|
|
* @scale_x: Scale factor in x direction.
|
|
|
|
* @scale_y: Scale factor in y direction.
|
2005-12-29 05:24:12 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* scales the given stroke.
|
2005-12-29 05:24:12 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Scale the given stroke.
|
2005-12-29 05:24:12 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-12-29 05:24:12 +08:00
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_stroke_scale (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble scale_x,
|
|
|
|
gdouble scale_y)
|
2005-12-29 05:24:12 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2005-12-29 05:24:12 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-09-03 19:31:27 +08:00
|
|
|
G_TYPE_DOUBLE, scale_x,
|
|
|
|
G_TYPE_DOUBLE, scale_y,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-scale",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2005-05-17 09:20:03 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2005-05-17 09:20:03 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2005-05-17 09:20:03 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
2005-06-02 00:20:46 +08:00
|
|
|
|
2006-11-20 23:34:30 +08:00
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_rotate:
|
|
|
|
* @vectors: The vectors object.
|
2006-11-20 23:34:30 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
2019-09-03 19:31:27 +08:00
|
|
|
* @center_x: X coordinate of the rotation center.
|
|
|
|
* @center_y: Y coordinate of the rotation center.
|
|
|
|
* @angle: angle to rotate about.
|
2006-11-20 23:34:30 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* rotates the given stroke.
|
2006-11-20 23:34:30 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Rotates the given stroke around given center by angle (in degrees).
|
2006-11-20 23:34:30 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2006-11-20 23:34:30 +08:00
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_stroke_rotate (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble center_x,
|
|
|
|
gdouble center_y,
|
|
|
|
gdouble angle)
|
2006-11-20 23:34:30 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2006-11-20 23:34:30 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-09-03 19:31:27 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-09-03 19:31:27 +08:00
|
|
|
G_TYPE_DOUBLE, center_x,
|
|
|
|
G_TYPE_DOUBLE, center_y,
|
|
|
|
G_TYPE_DOUBLE, angle,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
2006-11-20 23:34:30 +08:00
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-rotate",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2006-11-20 23:34:30 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2019-07-30 16:51:16 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
2006-11-20 23:34:30 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_flip:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
2006-11-20 23:34:30 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
2019-09-03 19:31:27 +08:00
|
|
|
* @flip_type: Flip orientation, either vertical or horizontal.
|
|
|
|
* @axis: axis coordinate about which to flip, in pixels.
|
2006-11-20 23:34:30 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* flips the given stroke.
|
2006-11-20 23:34:30 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Rotates the given stroke around given center by angle (in degrees).
|
2006-11-20 23:34:30 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2006-11-20 23:34:30 +08:00
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_stroke_flip (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
GimpOrientationType flip_type,
|
|
|
|
gdouble axis)
|
2006-11-20 23:34:30 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2006-11-20 23:34:30 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-09-03 19:31:27 +08:00
|
|
|
GIMP_TYPE_ORIENTATION_TYPE, flip_type,
|
|
|
|
G_TYPE_DOUBLE, axis,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-flip",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2006-11-20 23:34:30 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2006-11-20 23:34:30 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2006-11-20 23:34:30 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_flip_free:
|
|
|
|
* @vectors: The vectors object.
|
2006-11-20 23:34:30 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
2019-09-03 19:31:27 +08:00
|
|
|
* @x1: X coordinate of the first point of the flipping axis.
|
|
|
|
* @y1: Y coordinate of the first point of the flipping axis.
|
|
|
|
* @x2: X coordinate of the second point of the flipping axis.
|
|
|
|
* @y2: Y coordinate of the second point of the flipping axis.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* flips the given stroke about an arbitrary axis.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Flips the given stroke about an arbitrary axis. Axis is defined by
|
|
|
|
* two coordinates in the image (in pixels), through which the flipping
|
|
|
|
* axis passes.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_stroke_flip_free (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble x1,
|
|
|
|
gdouble y1,
|
|
|
|
gdouble x2,
|
|
|
|
gdouble y2)
|
2019-08-14 03:36:03 +08:00
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-09-03 19:31:27 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-09-03 19:31:27 +08:00
|
|
|
G_TYPE_DOUBLE, x1,
|
|
|
|
G_TYPE_DOUBLE, y1,
|
|
|
|
G_TYPE_DOUBLE, x2,
|
|
|
|
G_TYPE_DOUBLE, y2,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-flip-free",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_get_points:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @stroke_id: The stroke ID.
|
2019-09-03 19:31:27 +08:00
|
|
|
* @num_points: (out): The number of floats returned.
|
|
|
|
* @controlpoints: (out) (array length=num_points) (element-type gdouble) (transfer full): List of the control points for the stroke (x0, y0, x1, y1, ...).
|
|
|
|
* @closed: (out): Whether the stroke is closed or not.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* returns the control points of a stroke.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* returns the control points of a stroke. The interpretation of the
|
|
|
|
* coordinates returned depends on the type of the stroke. For Gimp 2.4
|
|
|
|
* this is always a bezier stroke, where the coordinates are the
|
|
|
|
* control points.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Returns: type of the stroke (always GIMP_VECTORS_STROKE_TYPE_BEZIER for now).
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2019-09-03 19:31:27 +08:00
|
|
|
GimpVectorsStrokeType
|
|
|
|
gimp_vectors_stroke_get_points (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gint *num_points,
|
|
|
|
gdouble **controlpoints,
|
|
|
|
gboolean *closed)
|
2019-08-14 03:36:03 +08:00
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2019-09-03 19:31:27 +08:00
|
|
|
GimpVectorsStrokeType type = 0;
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-get-points",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-03 19:31:27 +08:00
|
|
|
*num_points = 0;
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-03 19:31:27 +08:00
|
|
|
{
|
2019-09-04 08:49:33 +08:00
|
|
|
type = GIMP_VALUES_GET_ENUM (return_vals, 1);
|
|
|
|
*num_points = GIMP_VALUES_GET_INT (return_vals, 2);
|
|
|
|
*controlpoints = GIMP_VALUES_DUP_FLOAT_ARRAY (return_vals, 3);
|
|
|
|
*closed = GIMP_VALUES_GET_BOOLEAN (return_vals, 4);
|
2019-09-03 19:31:27 +08:00
|
|
|
}
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
2019-09-03 19:31:27 +08:00
|
|
|
return type;
|
2019-08-14 03:36:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_new_from_points:
|
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @type: type of the stroke (always GIMP_VECTORS_STROKE_TYPE_BEZIER for now).
|
|
|
|
* @num_points: The number of elements in the array, i.e. the number of controlpoints in the stroke * 2 (x- and y-coordinate).
|
|
|
|
* @controlpoints: (array length=num_points) (element-type gdouble): List of the x- and y-coordinates of the control points.
|
|
|
|
* @closed: Whether the stroke is to be closed or not.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Adds a stroke of a given type to the vectors object.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Adds a stroke of a given type to the vectors object. The coordinates
|
|
|
|
* of the control points can be specified. For now only strokes of the
|
|
|
|
* type GIMP_VECTORS_STROKE_TYPE_BEZIER are supported. The control
|
|
|
|
* points are specified as a pair of float values for the x- and
|
|
|
|
* y-coordinate. The Bezier stroke type needs a multiple of three
|
|
|
|
* control points. Each Bezier segment endpoint (anchor, A) has two
|
|
|
|
* additional control points (C) associated. They are specified in the
|
|
|
|
* order CACCACCAC...
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Returns: The stroke ID of the newly created stroke.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2019-09-03 19:31:27 +08:00
|
|
|
gint
|
|
|
|
gimp_vectors_stroke_new_from_points (GimpVectors *vectors,
|
|
|
|
GimpVectorsStrokeType type,
|
|
|
|
gint num_points,
|
|
|
|
const gdouble *controlpoints,
|
|
|
|
gboolean closed)
|
2019-08-14 03:36:03 +08:00
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2019-09-03 19:31:27 +08:00
|
|
|
gint stroke_id = 0;
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-09-03 19:31:27 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
|
|
|
GIMP_TYPE_VECTORS_STROKE_TYPE, type,
|
|
|
|
G_TYPE_INT, num_points,
|
|
|
|
GIMP_TYPE_FLOAT_ARRAY, NULL,
|
|
|
|
G_TYPE_BOOLEAN, closed,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_NONE);
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_value_set_float_array (gimp_value_array_index (args, 3), controlpoints, num_points);
|
2019-08-14 03:36:03 +08:00
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-new-from-points",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
stroke_id = GIMP_VALUES_GET_INT (return_vals, 1);
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
2019-09-03 19:31:27 +08:00
|
|
|
return stroke_id;
|
2019-08-14 03:36:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_stroke_interpolate:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @stroke_id: The stroke ID.
|
2019-09-03 19:31:27 +08:00
|
|
|
* @precision: The precision used for the approximation.
|
|
|
|
* @num_coords: (out): The number of floats returned.
|
|
|
|
* @closed: (out): Whether the stroke is closed or not.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* returns polygonal approximation of the stroke.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* returns polygonal approximation of the stroke.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
2019-09-03 19:31:27 +08:00
|
|
|
* Returns: (array length=num_coords) (element-type gdouble) (transfer full):
|
|
|
|
* List of the coords along the path (x0, y0, x1, y1, ...).
|
|
|
|
* The returned value must be freed with g_free().
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2019-09-03 19:31:27 +08:00
|
|
|
gdouble *
|
|
|
|
gimp_vectors_stroke_interpolate (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble precision,
|
|
|
|
gint *num_coords,
|
|
|
|
gboolean *closed)
|
2019-08-14 03:36:03 +08:00
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2019-09-03 19:31:27 +08:00
|
|
|
gdouble *coords = NULL;
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-09-03 19:31:27 +08:00
|
|
|
G_TYPE_DOUBLE, precision,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-stroke-interpolate",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-03 19:31:27 +08:00
|
|
|
*num_coords = 0;
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-03 19:31:27 +08:00
|
|
|
{
|
2019-09-04 08:49:33 +08:00
|
|
|
*num_coords = GIMP_VALUES_GET_INT (return_vals, 1);
|
|
|
|
coords = GIMP_VALUES_DUP_FLOAT_ARRAY (return_vals, 2);
|
|
|
|
*closed = GIMP_VALUES_GET_BOOLEAN (return_vals, 3);
|
2019-09-03 19:31:27 +08:00
|
|
|
}
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
2019-09-03 19:31:27 +08:00
|
|
|
return coords;
|
2019-08-14 03:36:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_bezier_stroke_new_moveto:
|
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @x0: The x-coordinate of the moveto.
|
|
|
|
* @y0: The y-coordinate of the moveto.
|
2019-08-14 03:36:03 +08:00
|
|
|
*
|
|
|
|
* Adds a bezier stroke with a single moveto to the vectors object.
|
|
|
|
*
|
|
|
|
* Adds a bezier stroke with a single moveto to the vectors object.
|
|
|
|
*
|
|
|
|
* Returns: The resulting stroke.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gimp_vectors_bezier_stroke_new_moveto (GimpVectors *vectors,
|
|
|
|
gdouble x0,
|
|
|
|
gdouble y0)
|
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gint stroke_id = 0;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_DOUBLE, x0,
|
|
|
|
G_TYPE_DOUBLE, y0,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-bezier-stroke-new-moveto",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
stroke_id = GIMP_VALUES_GET_INT (return_vals, 1);
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return stroke_id;
|
|
|
|
}
|
|
|
|
|
2005-12-30 00:05:31 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_bezier_stroke_lineto:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @stroke_id: The stroke ID.
|
|
|
|
* @x0: The x-coordinate of the lineto.
|
|
|
|
* @y0: The y-coordinate of the lineto.
|
|
|
|
*
|
|
|
|
* Extends a bezier stroke with a lineto.
|
|
|
|
*
|
|
|
|
* Extends a bezier stroke with a lineto.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gimp_vectors_bezier_stroke_lineto (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble x0,
|
|
|
|
gdouble y0)
|
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
|
|
|
G_TYPE_DOUBLE, x0,
|
|
|
|
G_TYPE_DOUBLE, y0,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-bezier-stroke-lineto",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2005-12-30 00:05:31 +08:00
|
|
|
/**
|
|
|
|
* gimp_vectors_bezier_stroke_conicto:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @stroke_id: The stroke ID.
|
|
|
|
* @x0: The x-coordinate of the control point.
|
|
|
|
* @y0: The y-coordinate of the control point.
|
|
|
|
* @x1: The x-coordinate of the end point.
|
|
|
|
* @y1: The y-coordinate of the end point.
|
|
|
|
*
|
|
|
|
* Extends a bezier stroke with a conic bezier spline.
|
|
|
|
*
|
|
|
|
* Extends a bezier stroke with a conic bezier spline. Actually a cubic
|
|
|
|
* bezier spline gets added that realizes the shape of a conic bezier
|
|
|
|
* spline.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gimp_vectors_bezier_stroke_conicto (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble x0,
|
|
|
|
gdouble y0,
|
2019-09-03 19:31:27 +08:00
|
|
|
gdouble x1,
|
|
|
|
gdouble y1)
|
2019-08-14 03:36:03 +08:00
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
|
|
|
G_TYPE_DOUBLE, x0,
|
|
|
|
G_TYPE_DOUBLE, y0,
|
|
|
|
G_TYPE_DOUBLE, x1,
|
|
|
|
G_TYPE_DOUBLE, y1,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-bezier-stroke-conicto",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-09-03 19:31:27 +08:00
|
|
|
* gimp_vectors_bezier_stroke_cubicto:
|
|
|
|
* @vectors: The vectors object.
|
2005-12-30 00:05:31 +08:00
|
|
|
* @stroke_id: The stroke ID.
|
|
|
|
* @x0: The x-coordinate of the first control point.
|
|
|
|
* @y0: The y-coordinate of the first control point.
|
|
|
|
* @x1: The x-coordinate of the second control point.
|
|
|
|
* @y1: The y-coordinate of the second control point.
|
|
|
|
* @x2: The x-coordinate of the end point.
|
|
|
|
* @y2: The y-coordinate of the end point.
|
|
|
|
*
|
|
|
|
* Extends a bezier stroke with a cubic bezier spline.
|
|
|
|
*
|
|
|
|
* Extends a bezier stroke with a cubic bezier spline.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2005-12-30 00:05:31 +08:00
|
|
|
gboolean
|
2019-09-03 19:31:27 +08:00
|
|
|
gimp_vectors_bezier_stroke_cubicto (GimpVectors *vectors,
|
|
|
|
gint stroke_id,
|
|
|
|
gdouble x0,
|
|
|
|
gdouble y0,
|
|
|
|
gdouble x1,
|
|
|
|
gdouble y1,
|
|
|
|
gdouble x2,
|
|
|
|
gdouble y2)
|
2005-12-30 00:05:31 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2005-12-30 00:05:31 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-09-03 19:31:27 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, stroke_id,
|
2019-08-08 19:01:50 +08:00
|
|
|
G_TYPE_DOUBLE, x0,
|
|
|
|
G_TYPE_DOUBLE, y0,
|
|
|
|
G_TYPE_DOUBLE, x1,
|
|
|
|
G_TYPE_DOUBLE, y1,
|
|
|
|
G_TYPE_DOUBLE, x2,
|
|
|
|
G_TYPE_DOUBLE, y2,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-bezier-stroke-cubicto",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2019-07-30 16:51:16 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
2005-12-30 00:05:31 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_vectors_bezier_stroke_new_ellipse:
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object.
|
|
|
|
* @x0: The x-coordinate of the center.
|
|
|
|
* @y0: The y-coordinate of the center.
|
|
|
|
* @radius_x: The radius in x direction.
|
|
|
|
* @radius_y: The radius in y direction.
|
|
|
|
* @angle: The angle the x-axis of the ellipse (radians, counterclockwise).
|
|
|
|
*
|
|
|
|
* Adds a bezier stroke describing an ellipse the vectors object.
|
|
|
|
*
|
|
|
|
* Adds a bezier stroke describing an ellipse the vectors object.
|
|
|
|
*
|
|
|
|
* Returns: The resulting stroke.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gimp_vectors_bezier_stroke_new_ellipse (GimpVectors *vectors,
|
|
|
|
gdouble x0,
|
|
|
|
gdouble y0,
|
|
|
|
gdouble radius_x,
|
|
|
|
gdouble radius_y,
|
|
|
|
gdouble angle)
|
|
|
|
{
|
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
|
|
|
gint stroke_id = 0;
|
|
|
|
|
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-08-14 03:36:03 +08:00
|
|
|
G_TYPE_DOUBLE, x0,
|
|
|
|
G_TYPE_DOUBLE, y0,
|
|
|
|
G_TYPE_DOUBLE, radius_x,
|
|
|
|
G_TYPE_DOUBLE, radius_y,
|
|
|
|
G_TYPE_DOUBLE, angle,
|
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-bezier-stroke-new-ellipse",
|
|
|
|
args);
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_value_array_unref (args);
|
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
stroke_id = GIMP_VALUES_GET_INT (return_vals, 1);
|
2019-08-14 03:36:03 +08:00
|
|
|
|
|
|
|
gimp_value_array_unref (return_vals);
|
|
|
|
|
|
|
|
return stroke_id;
|
|
|
|
}
|
|
|
|
|
2006-10-25 23:14:03 +08:00
|
|
|
/**
|
2006-11-24 05:45:54 +08:00
|
|
|
* gimp_vectors_import_from_file:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image.
|
2019-09-12 03:48:34 +08:00
|
|
|
* @file: The SVG file to import.
|
2006-10-25 23:14:03 +08:00
|
|
|
* @merge: Merge paths into a single vectors object.
|
|
|
|
* @scale: Scale the SVG to image dimensions.
|
2019-08-01 04:51:35 +08:00
|
|
|
* @num_vectors: (out): The number of newly created vectors.
|
2019-09-05 18:57:43 +08:00
|
|
|
* @vectors: (out) (array length=num_vectors) (element-type GimpVectors) (transfer container): The list of newly created vectors.
|
2006-10-25 23:14:03 +08:00
|
|
|
*
|
|
|
|
* Import paths from an SVG file.
|
|
|
|
*
|
|
|
|
* This procedure imports paths from an SVG file. SVG elements other
|
|
|
|
* than paths and basic shapes are ignored.
|
|
|
|
*
|
2006-10-31 07:04:12 +08:00
|
|
|
* Returns: TRUE on success.
|
2006-10-25 23:14:03 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2006-10-31 07:04:12 +08:00
|
|
|
gboolean
|
2019-09-05 18:57:43 +08:00
|
|
|
gimp_vectors_import_from_file (GimpImage *image,
|
2019-09-12 03:48:34 +08:00
|
|
|
GFile *file,
|
2019-09-05 18:57:43 +08:00
|
|
|
gboolean merge,
|
|
|
|
gboolean scale,
|
|
|
|
gint *num_vectors,
|
|
|
|
GimpVectors ***vectors)
|
2006-10-25 23:14:03 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2006-10-31 07:04:12 +08:00
|
|
|
gboolean success = TRUE;
|
2006-10-25 23:14:03 +08:00
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
2019-09-12 03:48:34 +08:00
|
|
|
G_TYPE_FILE, file,
|
2019-08-08 19:01:50 +08:00
|
|
|
G_TYPE_BOOLEAN, merge,
|
|
|
|
G_TYPE_BOOLEAN, scale,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-import-from-file",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2006-10-25 23:14:03 +08:00
|
|
|
|
|
|
|
*num_vectors = 0;
|
2019-09-05 18:57:43 +08:00
|
|
|
*vectors = NULL;
|
2006-10-25 23:14:03 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2006-10-31 07:04:12 +08:00
|
|
|
|
|
|
|
if (success)
|
2006-10-25 23:14:03 +08:00
|
|
|
{
|
2019-09-04 08:49:33 +08:00
|
|
|
*num_vectors = GIMP_VALUES_GET_INT (return_vals, 1);
|
2021-08-26 23:18:32 +08:00
|
|
|
{ GimpObjectArray *a = g_value_get_boxed (gimp_value_array_index (return_vals, 2)); if (a) *vectors = g_memdup2 (a->data, a->length * sizeof (gpointer)); };
|
2006-10-25 23:14:03 +08:00
|
|
|
}
|
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2006-10-25 23:14:03 +08:00
|
|
|
|
2006-10-31 07:04:12 +08:00
|
|
|
return success;
|
2006-10-25 23:14:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-11-24 05:45:54 +08:00
|
|
|
* gimp_vectors_import_from_string:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image.
|
2006-10-25 23:14:03 +08:00
|
|
|
* @string: A string that must be a complete and valid SVG document.
|
|
|
|
* @length: Number of bytes in string or -1 if the string is NULL terminated.
|
|
|
|
* @merge: Merge paths into a single vectors object.
|
|
|
|
* @scale: Scale the SVG to image dimensions.
|
2019-08-01 04:51:35 +08:00
|
|
|
* @num_vectors: (out): The number of newly created vectors.
|
2019-09-05 18:57:43 +08:00
|
|
|
* @vectors: (out) (array length=num_vectors) (element-type GimpVectors) (transfer container): The list of newly created vectors.
|
2006-10-25 23:14:03 +08:00
|
|
|
*
|
|
|
|
* Import paths from an SVG string.
|
|
|
|
*
|
2006-11-24 06:26:58 +08:00
|
|
|
* This procedure works like gimp_vectors_import_from_file() but takes
|
|
|
|
* a string rather than reading the SVG from a file. This allows you to
|
2006-10-25 23:14:03 +08:00
|
|
|
* write scripts that generate SVG and feed it to GIMP.
|
|
|
|
*
|
2006-10-31 07:04:12 +08:00
|
|
|
* Returns: TRUE on success.
|
2006-10-25 23:14:03 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2006-10-31 07:04:12 +08:00
|
|
|
gboolean
|
2019-09-05 18:57:43 +08:00
|
|
|
gimp_vectors_import_from_string (GimpImage *image,
|
|
|
|
const gchar *string,
|
|
|
|
gint length,
|
|
|
|
gboolean merge,
|
|
|
|
gboolean scale,
|
|
|
|
gint *num_vectors,
|
|
|
|
GimpVectors ***vectors)
|
2006-10-25 23:14:03 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2006-10-31 07:04:12 +08:00
|
|
|
gboolean success = TRUE;
|
2006-10-25 23:14:03 +08:00
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
2019-08-08 19:01:50 +08:00
|
|
|
G_TYPE_STRING, string,
|
2019-08-15 20:04:56 +08:00
|
|
|
G_TYPE_INT, length,
|
2019-08-08 19:01:50 +08:00
|
|
|
G_TYPE_BOOLEAN, merge,
|
|
|
|
G_TYPE_BOOLEAN, scale,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-import-from-string",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2006-10-25 23:14:03 +08:00
|
|
|
|
|
|
|
*num_vectors = 0;
|
2019-09-05 18:57:43 +08:00
|
|
|
*vectors = NULL;
|
2006-10-25 23:14:03 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2006-10-31 07:04:12 +08:00
|
|
|
|
|
|
|
if (success)
|
2006-10-25 23:14:03 +08:00
|
|
|
{
|
2019-09-04 08:49:33 +08:00
|
|
|
*num_vectors = GIMP_VALUES_GET_INT (return_vals, 1);
|
2021-08-26 23:18:32 +08:00
|
|
|
{ GimpObjectArray *a = g_value_get_boxed (gimp_value_array_index (return_vals, 2)); if (a) *vectors = g_memdup2 (a->data, a->length * sizeof (gpointer)); };
|
2006-10-25 23:14:03 +08:00
|
|
|
}
|
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2006-10-25 23:14:03 +08:00
|
|
|
|
2006-10-31 07:04:12 +08:00
|
|
|
return success;
|
2006-10-25 23:14:03 +08:00
|
|
|
}
|
2007-11-19 02:51:54 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_vectors_export_to_file:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image.
|
2019-09-12 03:48:34 +08:00
|
|
|
* @file: The SVG file to create.
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object to be saved, or 0 for all in the image.
|
2007-11-19 02:51:54 +08:00
|
|
|
*
|
|
|
|
* save a path as an SVG file.
|
|
|
|
*
|
|
|
|
* This procedure creates an SVG file to save a Vectors object, that
|
|
|
|
* is, a path. The resulting file can be edited using a vector graphics
|
|
|
|
* application, or later reloaded into GIMP. If you pass 0 as the
|
|
|
|
* 'vectors' argument, then all paths in the image will be exported.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.6
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2007-11-19 02:51:54 +08:00
|
|
|
gboolean
|
2019-08-11 20:20:05 +08:00
|
|
|
gimp_vectors_export_to_file (GimpImage *image,
|
2019-09-12 03:48:34 +08:00
|
|
|
GFile *file,
|
2019-08-14 03:36:03 +08:00
|
|
|
GimpVectors *vectors)
|
2007-11-19 02:51:54 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2007-11-19 02:51:54 +08:00
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
2019-09-12 03:48:34 +08:00
|
|
|
G_TYPE_FILE, file,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-export-to-file",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2007-11-19 02:51:54 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
success = GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS;
|
2007-11-19 02:51:54 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2007-11-19 02:51:54 +08:00
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_vectors_export_to_string:
|
2019-08-11 20:20:05 +08:00
|
|
|
* @image: The image.
|
2019-08-14 03:36:03 +08:00
|
|
|
* @vectors: The vectors object to save, or 0 for all in the image.
|
2007-11-19 02:51:54 +08:00
|
|
|
*
|
|
|
|
* Save a path as an SVG string.
|
|
|
|
*
|
|
|
|
* This procedure works like gimp_vectors_export_to_file() but creates
|
2010-07-07 17:43:10 +08:00
|
|
|
* a string rather than a file. The contents are a NUL-terminated
|
2007-11-19 02:51:54 +08:00
|
|
|
* string that holds a complete XML document. If you pass 0 as the
|
|
|
|
* 'vectors' argument, then all paths in the image will be exported.
|
|
|
|
*
|
2019-08-05 04:09:04 +08:00
|
|
|
* Returns: (transfer full):
|
|
|
|
* A string whose contents are a complete SVG document.
|
|
|
|
* The returned value must be freed with g_free().
|
2007-11-19 02:51:54 +08:00
|
|
|
*
|
2015-06-01 03:18:09 +08:00
|
|
|
* Since: 2.6
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2007-11-19 02:51:54 +08:00
|
|
|
gchar *
|
2019-08-14 03:36:03 +08:00
|
|
|
gimp_vectors_export_to_string (GimpImage *image,
|
|
|
|
GimpVectors *vectors)
|
2007-11-19 02:51:54 +08:00
|
|
|
{
|
2019-07-30 16:51:16 +08:00
|
|
|
GimpValueArray *args;
|
|
|
|
GimpValueArray *return_vals;
|
2007-11-19 02:51:54 +08:00
|
|
|
gchar *string = NULL;
|
|
|
|
|
2019-08-08 19:01:50 +08:00
|
|
|
args = gimp_value_array_new_from_types (NULL,
|
2019-08-29 17:25:35 +08:00
|
|
|
GIMP_TYPE_IMAGE, image,
|
|
|
|
GIMP_TYPE_VECTORS, vectors,
|
2019-07-30 16:51:16 +08:00
|
|
|
G_TYPE_NONE);
|
|
|
|
|
2019-09-04 05:55:49 +08:00
|
|
|
return_vals = gimp_pdb_run_procedure_array (gimp_get_pdb (),
|
|
|
|
"gimp-vectors-export-to-string",
|
|
|
|
args);
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (args);
|
2007-11-19 02:51:54 +08:00
|
|
|
|
2019-09-04 07:49:35 +08:00
|
|
|
if (GIMP_VALUES_GET_ENUM (return_vals, 0) == GIMP_PDB_SUCCESS)
|
2019-09-04 08:49:33 +08:00
|
|
|
string = GIMP_VALUES_DUP_STRING (return_vals, 1);
|
2007-11-19 02:51:54 +08:00
|
|
|
|
2019-07-30 16:51:16 +08:00
|
|
|
gimp_value_array_unref (return_vals);
|
2007-11-19 02:51:54 +08:00
|
|
|
|
|
|
|
return string;
|
|
|
|
}
|