gimp/plug-ins/common/guillotine.c

261 lines
6.2 KiB
C
Raw Normal View History

1998-09-02 06:22:59 +08:00
/*
* Guillotine plug-in v0.9 by Adam D. Moss, adam@foxbox.org. 1998/09/01
*/
/* 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
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
* HISTORY:
* 0.9 : 1998/09/01
* Initial release.
*/
#include "config.h"
1998-09-02 06:22:59 +08:00
#include <stdlib.h>
#include <libgimp/gimp.h>
#include "libgimp/stdplugins-intl.h"
1998-09-02 06:22:59 +08:00
1998-09-02 06:22:59 +08:00
/* Declare local functions.
*/
static void query (void);
static void run (gchar *name,
gint nparams,
1998-09-02 06:22:59 +08:00
GParam *param,
gint *nreturn_vals,
1998-09-02 06:22:59 +08:00
GParam **return_vals);
static void guillotine (gint32 image_ID);
1998-09-02 06:22:59 +08:00
GPlugInInfo PLUG_IN_INFO =
{
NULL, /* init_proc */
NULL, /* quit_proc */
query, /* query_proc */
run, /* run_proc */
1998-09-02 06:22:59 +08:00
};
MAIN ()
static void
query (void)
1998-09-02 06:22:59 +08:00
{
static GParamDef args[] =
{
{ PARAM_INT32, "run_mode", "Interactive, non-interactive" },
{ PARAM_IMAGE, "image", "Input image" },
{ PARAM_DRAWABLE, "drawable", "Input drawable (unused)" }
1998-09-02 06:22:59 +08:00
};
static gint nargs = sizeof (args) / sizeof (args[0]);
1998-09-02 06:22:59 +08:00
gimp_install_procedure ("plug_in_guillotine",
2000-01-31 10:32:30 +08:00
"Slice up the image into subimages, cutting along the image's Guides. Fooey to you and your broccoli, Pokey.",
"This function takes an image and blah blah. Hooray!",
1998-09-02 06:22:59 +08:00
"Adam D. Moss (adam@foxbox.org)",
"Adam D. Moss (adam@foxbox.org)",
"1998",
N_("<Image>/Image/Transforms/Guillotine"),
1998-09-02 06:22:59 +08:00
"RGB*, INDEXED*, GRAY*",
PROC_PLUG_IN,
nargs, 0,
args, NULL);
1998-09-02 06:22:59 +08:00
}
static void
run (gchar *name,
gint nparams,
1998-09-02 06:22:59 +08:00
GParam *param,
gint *nreturn_vals,
1998-09-02 06:22:59 +08:00
GParam **return_vals)
{
static GParam values[1];
gint32 image_ID;
GStatusType status = STATUS_SUCCESS;
*nreturn_vals = 1;
*return_vals = values;
values[0].type = PARAM_STATUS;
values[0].data.d_status = status;
INIT_I18N();
1998-09-02 06:22:59 +08:00
/* Get the specified drawable */
image_ID = param[1].data.d_image;
if (status == STATUS_SUCCESS)
{
gimp_progress_init (_("Guillotine..."));
1998-09-02 06:22:59 +08:00
guillotine (image_ID);
gimp_displays_flush ();
}
values[0].data.d_status = status;
}
static gint
unexciting (const void *a,
const void *b)
1998-09-02 06:22:59 +08:00
{
gint j = * (gint *) a;
gint k = * (gint *) b;
1998-09-02 06:22:59 +08:00
return (j - k);
1998-09-02 06:22:59 +08:00
}
static void
guillotine (gint32 image_ID)
1998-09-02 06:22:59 +08:00
{
gint num_vguides;
gint num_hguides;
gint guide_num;
gint* hguides;
gint* vguides;
gchar filename[1024];
1998-09-02 06:22:59 +08:00
gint i,x,y;
num_vguides = 0;
num_hguides = 0;
guide_num = gimp_image_find_next_guide(image_ID, 0);
1998-09-02 06:22:59 +08:00
/* Count the guides so we can allocate appropriate memory */
if (guide_num > 0)
1998-09-02 06:22:59 +08:00
{
do
{
switch (gimp_image_get_guide_orientation(image_ID, guide_num))
{
case ORIENTATION_VERTICAL:
num_vguides++; break;
case ORIENTATION_HORIZONTAL:
num_hguides++; break;
default:
g_print ("Aie! Aie! Aie!\n");
gimp_quit ();
1998-09-02 06:22:59 +08:00
}
guide_num = gimp_image_find_next_guide (image_ID, guide_num);
1998-09-02 06:22:59 +08:00
}
while (guide_num > 0);
1998-09-02 06:22:59 +08:00
}
if (num_vguides+num_hguides)
{
g_print ("Yay... found %d horizontal guides and %d vertical guides.\n",
num_hguides, num_vguides);
1998-09-02 06:22:59 +08:00
}
else
{
g_print ("Poopy, no guides.\n");
1998-09-02 06:22:59 +08:00
return;
}
/* Allocate memory for the arrays of guide offsets, build arrays */
vguides = g_malloc ((num_vguides+2) * sizeof(gint));
hguides = g_malloc ((num_hguides+2) * sizeof(gint));
num_vguides = 0;
num_hguides = 0;
vguides[num_vguides++] = 0;
hguides[num_hguides++] = 0;
guide_num = gimp_image_find_next_guide(image_ID, 0);
1998-09-02 06:22:59 +08:00
if (guide_num>0)
{
do
{
switch (gimp_image_get_guide_orientation(image_ID, guide_num))
{
case ORIENTATION_VERTICAL:
vguides[num_vguides++] =
gimp_image_get_guide_position(image_ID, guide_num); break;
case ORIENTATION_HORIZONTAL:
hguides[num_hguides++] =
gimp_image_get_guide_position(image_ID, guide_num); break;
default:
g_print ("Aie! Aie! Aie! Too!\n");
1998-09-02 06:22:59 +08:00
gimp_quit();
}
guide_num = gimp_image_find_next_guide(image_ID, guide_num);
1998-09-02 06:22:59 +08:00
}
while (guide_num>0);
}
vguides[num_vguides++] = gimp_image_width(image_ID);
hguides[num_hguides++] = gimp_image_height(image_ID);
qsort(hguides, num_hguides, sizeof(gint), &unexciting);
qsort(vguides, num_vguides, sizeof(gint), &unexciting);
for (i=0;i<num_vguides;i++)
g_print ("%d,",vguides[i]);
g_print ("\n");
1998-09-02 06:22:59 +08:00
for (i=0;i<num_hguides;i++)
g_print ("%d,",hguides[i]);
g_print ("\n");
1998-09-02 06:22:59 +08:00
/* Do the actual dup'ing and cropping... this isn't a too naive a
way to do this since we got copy-on-write tiles, either. */
for (y=0; y<num_hguides-1; y++)
{
for (x=0; x<num_vguides-1; x++)
{
gint32 new_image;
new_image = gimp_channel_ops_duplicate (image_ID);
1998-09-02 06:22:59 +08:00
if (new_image == -1)
1998-09-02 06:22:59 +08:00
{
g_print ("Aie3!\n");
1998-09-02 06:22:59 +08:00
return;
}
1999-10-17 08:07:55 +08:00
gimp_image_undo_disable (new_image);
1998-09-02 06:22:59 +08:00
/* gimp_undo_push_group_start (new_image); */
1998-09-02 06:22:59 +08:00
/* printf("(%dx%d:%d,%d:%d,%d)\n", */
/* (vguides[x+1]-vguides[x]), */
/* (hguides[y+1]-hguides[y]), */
/* vguides[x], hguides[y],x, y); */
1998-09-02 06:22:59 +08:00
gimp_crop (new_image,
vguides[x+1] - vguides[x], hguides[y+1] - hguides[y],
vguides[x], hguides[y]);
1998-09-02 06:22:59 +08:00
/* gimp_undo_push_group_end (new_image); */
1998-09-02 06:22:59 +08:00
1999-10-17 08:07:55 +08:00
gimp_image_undo_enable (new_image);
1998-09-02 06:22:59 +08:00
/* show the rough coordinates of the image in the title */
g_snprintf (filename, sizeof (filename), "%s-(%i,%i)", gimp_image_get_filename (image_ID),
x, y);
gimp_image_set_filename(new_image, filename);
1998-09-02 06:22:59 +08:00
gimp_display_new (new_image);
}
}
}