Applied (slightly modified) patch from Shlomi Fish which adds a progress

2004-08-09  Michael Natterer  <mitch@gimp.org>

	Applied (slightly modified) patch from Shlomi Fish which adds a
	progress bar to the RGB -> INDEXED conversion. Fixes bug #145274

	(and shows that we really really need a GimpProgressInterface in
	the core to give progress users full access to the progress API)

	* app/core/gimpimage-convert.[ch]: added special
	GimpImageConvertProgress function typedef to cope with the
	different stages of converting.  Support passing such a callback &
	data to gimp_image_convert() and update the progress accordingly.

	* app/gui/convert-dialog.[ch]: added a convert progress callback
	and pass it to gimp_image_convert().

	* app/actions/image-commands.c
	* tools/pdbgen/pdb/convert.pdb: changed accordingly.

	* app/pdb/convert_cmds.c: regenerated.
This commit is contained in:
Michael Natterer 2004-08-09 16:08:36 +00:00 committed by Michael Natterer
parent 1a3bbe0e7c
commit 88768c66f8
10 changed files with 277 additions and 80 deletions

View File

@ -1,3 +1,23 @@
2004-08-09 Michael Natterer <mitch@gimp.org>
Applied (slightly modified) patch from Shlomi Fish which adds a
progress bar to the RGB -> INDEXED conversion. Fixes bug #145274
and shows that we really really need a GimpProgressInterface in
the core to give progress users full access to the progress API.
* app/core/gimpimage-convert.[ch]: added special
GimpImageConvertProgress function typedef to cope with the
different stages of converting. Support passing such a callback &
data to gimp_image_convert() and update the progress accordingly.
* app/gui/convert-dialog.[ch]: added a convert progress callback
and pass it to gimp_image_convert().
* app/actions/image-commands.c
* tools/pdbgen/pdb/convert.pdb: changed accordingly.
* app/pdb/convert_cmds.c: regenerated.
2004-08-09 Sven Neumann <sven@gimp.org>
* data/misc/gimp.desktop.in.in: added GenericName and Version,

View File

@ -148,22 +148,24 @@ image_convert_cmd_callback (GtkAction *action,
gint value,
gpointer data)
{
GimpImage *gimage;
GtkWidget *widget;
GimpImage *gimage;
GtkWidget *widget;
GimpDisplay *gdisp;
return_if_no_image (gimage, data);
return_if_no_widget (widget, data);
return_if_no_display (gdisp, data);
switch ((GimpImageBaseType) value)
{
case GIMP_RGB:
case GIMP_GRAY:
gimp_image_convert (gimage, (GimpImageBaseType) value,
0, 0, FALSE, FALSE, 0, NULL);
0, 0, FALSE, FALSE, 0, NULL, NULL, NULL);
gimp_image_flush (gimage);
break;
case GIMP_INDEXED:
gtk_widget_show (convert_dialog_new (gimage, widget));
gtk_widget_show (convert_dialog_new (gimage, widget, gdisp));
break;
}
}

View File

@ -477,6 +477,12 @@ struct _QuantizeObj
gboolean want_alpha_dither;
int error_freedom; /* 0=much bleed, 1=controlled bleed */
GimpImageConvertProgressCallback progress_callback;
gpointer progress_data;
gint nth_layer;
gint n_layers;
};
typedef struct
@ -520,13 +526,21 @@ static void generate_histogram_gray (CFHistogram hostogram,
static void generate_histogram_rgb (CFHistogram histogram,
GimpLayer *layer,
gint col_limit,
gboolean alpha_dither);
gboolean alpha_dither,
GimpImageConvertProgressCallback
progress_callback,
gpointer progress_data,
gint nth_layer,
gint n_layers);
static QuantizeObj* initialize_median_cut (GimpImageBaseType old_type,
gint num_cols,
GimpConvertDitherType dither_type,
GimpConvertPaletteType palette_type,
gboolean alpha_dither);
gboolean alpha_dither,
GimpImageConvertProgressCallback
progress_callback,
gpointer progress_data);
static void
compute_color_lin8 (QuantizeObj *quantobj,
@ -744,7 +758,9 @@ gimp_image_convert (GimpImage *gimage,
gboolean alpha_dither,
gboolean remove_dups,
GimpConvertPaletteType palette_type,
GimpPalette *custom_palette)
GimpPalette *custom_palette,
GimpImageConvertProgressCallback progress_callback,
gpointer progress_data)
{
QuantizeObj *quantobj = NULL;
GimpLayer *layer;
@ -753,6 +769,7 @@ gimp_image_convert (GimpImage *gimage,
GimpImageType new_layer_type;
TileManager *new_tiles;
const gchar *undo_desc = NULL;
gint nth_layer, n_layers;
g_return_if_fail (GIMP_IS_IMAGE (gimage));
g_return_if_fail (new_type != gimp_image_base_type (gimage));
@ -761,6 +778,8 @@ gimp_image_convert (GimpImage *gimage,
gimp_set_busy (gimage->gimp);
n_layers = g_list_length (GIMP_LIST (gimage->layers)->list);
switch (new_type)
{
case GIMP_RGB:
@ -810,7 +829,9 @@ gimp_image_convert (GimpImage *gimage,
}
quantobj = initialize_median_cut (old_type, num_cols, dither,
palette_type, alpha_dither);
palette_type, alpha_dither,
progress_callback,
progress_data);
if (palette_type == GIMP_MAKE_PALETTE)
{
@ -827,9 +848,9 @@ gimp_image_convert (GimpImage *gimage,
num_found_cols = 0;
/* Build the histogram */
for (list = GIMP_LIST (gimage->layers)->list;
for (list = GIMP_LIST (gimage->layers)->list, nth_layer = 0;
list;
list = g_list_next (list))
list = g_list_next (list), nth_layer++)
{
layer = (GimpLayer *) list->data;
@ -838,7 +859,10 @@ gimp_image_convert (GimpImage *gimage,
layer, alpha_dither);
else
generate_histogram_rgb (quantobj->histogram,
layer, num_cols, alpha_dither);
layer, num_cols, alpha_dither,
progress_callback,
progress_data,
nth_layer, n_layers);
/*
* Note: generate_histogram_rgb may set needs_quantize if
* the image contains more colours than the limit specified
@ -865,7 +889,9 @@ gimp_image_convert (GimpImage *gimage,
quantobj = initialize_median_cut (old_type, num_cols,
GIMP_NODESTRUCT_DITHER,
palette_type,
alpha_dither);
alpha_dither,
progress_callback,
progress_data);
/* We can skip the first pass (palette creation) */
quantobj->actual_number_of_colors = num_found_cols;
@ -898,9 +924,12 @@ gimp_image_convert (GimpImage *gimage,
}
/* Convert all layers */
for (list = GIMP_LIST (gimage->layers)->list;
if (quantobj)
quantobj->n_layers = n_layers;
for (list = GIMP_LIST (gimage->layers)->list, nth_layer = 0;
list;
list = g_list_next (list))
list = g_list_next (list), nth_layer++)
{
layer = (GimpLayer *) list->data;
@ -926,6 +955,7 @@ gimp_image_convert (GimpImage *gimage,
old_type);
break;
case GIMP_INDEXED:
quantobj->nth_layer = nth_layer;
(* quantobj->second_pass) (quantobj,
layer,
new_tiles);
@ -1274,7 +1304,11 @@ static void
generate_histogram_rgb (CFHistogram histogram,
GimpLayer *layer,
gint col_limit,
gboolean alpha_dither)
gboolean alpha_dither,
GimpImageConvertProgressCallback progress_callback,
gpointer progress_data,
gint nth_layer,
gint n_layers)
{
PixelRegion srcPR;
guchar *data;
@ -1285,6 +1319,7 @@ generate_histogram_rgb (CFHistogram histogram,
gint nfc_iter;
gint row, col, coledge;
gint offsetx, offsety;
glong total_size = 0, layer_size;
has_alpha = gimp_drawable_has_alpha (GIMP_DRAWABLE (layer));
@ -1298,6 +1333,11 @@ generate_histogram_rgb (CFHistogram histogram,
GIMP_ITEM (layer)->height,
FALSE);
layer_size = GIMP_ITEM (layer)->width * GIMP_ITEM (layer)->height;
if (progress_callback)
progress_callback (1, 0.0, progress_data);
for (pr = pixel_regions_register (1, &srcPR);
pr != NULL;
pr = pixel_regions_process (pr))
@ -1305,6 +1345,8 @@ generate_histogram_rgb (CFHistogram histogram,
data = srcPR.data;
size = srcPR.w * srcPR.h;
total_size += size;
/*fprintf(stderr, " [%d,%d - %d,%d]", srcPR.x, srcPR.y, offsetx, offsety);*/
if (needs_quantize)
@ -1440,6 +1482,12 @@ generate_histogram_rgb (CFHistogram histogram,
data += srcPR.bytes;
}
}
if (progress_callback)
progress_callback (1,
(nth_layer + ((gdouble) total_size)/
layer_size) / (gdouble) n_layers,
progress_data);
}
/* g_print ("O: col_limit = %d, nfc = %d\n", col_limit, num_found_cols);*/
@ -2078,59 +2126,68 @@ static int
median_cut_rgb (CFHistogram histogram,
boxptr boxlist,
int numboxes,
int desired_colors)
int desired_colors,
GimpImageConvertProgressCallback progress_callback,
gpointer progress_data)
/* Repeatedly select and split the largest box until we have enough boxes */
{
int lb;
boxptr b1,b2;
axisType which_axis;
while (numboxes < desired_colors) {
while (numboxes < desired_colors)
{
b1 = find_split_candidate (boxlist, numboxes, &which_axis, desired_colors);
b1 = find_split_candidate (boxlist, numboxes, &which_axis, desired_colors);
if (b1 == NULL) /* no splittable boxes left! */
break;
if (b1 == NULL) /* no splittable boxes left! */
break;
b2 = boxlist + numboxes; /* where new box will go */
/* Copy the color bounds to the new box. */
b2->Rmax = b1->Rmax; b2->Gmax = b1->Gmax; b2->Bmax = b1->Bmax;
b2->Rmin = b1->Rmin; b2->Gmin = b1->Gmin; b2->Bmin = b1->Bmin;
b2 = boxlist + numboxes; /* where new box will go */
/* Copy the color bounds to the new box. */
b2->Rmax = b1->Rmax; b2->Gmax = b1->Gmax; b2->Bmax = b1->Bmax;
b2->Rmin = b1->Rmin; b2->Gmin = b1->Gmin; b2->Bmin = b1->Bmin;
/* Choose split point along selected axis, and update box bounds.
* Note that lb value is max for lower box, so must be < old max.
*/
switch (which_axis)
{
case AXIS_RED:
lb = b1->Rhalferror;/* *0 + (b1->Rmax + b1->Rmin) / 2; */
b1->Rmax = lb;
b2->Rmin = lb+1;
g_assert(b1->Rmax >= b1->Rmin);
g_assert(b2->Rmax >= b2->Rmin);
break;
case AXIS_GREEN:
lb = b1->Ghalferror;/* *0 + (b1->Gmax + b1->Gmin) / 2; */
b1->Gmax = lb;
b2->Gmin = lb+1;
g_assert(b1->Gmax >= b1->Gmin);
g_assert(b2->Gmax >= b2->Gmin);
break;
case AXIS_BLUE:
lb = b1->Bhalferror;/* *0 + (b1->Bmax + b1->Bmin) / 2; */
b1->Bmax = lb;
b2->Bmin = lb+1;
g_assert(b1->Bmax >= b1->Bmin);
g_assert(b2->Bmax >= b2->Bmin);
break;
default:
g_error("Uh-oh.");
}
/* Update stats for boxes */
numboxes++;
update_box_rgb (histogram, b1, desired_colors - numboxes);
update_box_rgb (histogram, b2, desired_colors - numboxes);
}
/* Choose split point along selected axis, and update box bounds.
* Note that lb value is max for lower box, so must be < old max.
*/
switch (which_axis)
{
case AXIS_RED:
lb = b1->Rhalferror;/* *0 + (b1->Rmax + b1->Rmin) / 2; */
b1->Rmax = lb;
b2->Rmin = lb+1;
g_assert(b1->Rmax >= b1->Rmin);
g_assert(b2->Rmax >= b2->Rmin);
break;
case AXIS_GREEN:
lb = b1->Ghalferror;/* *0 + (b1->Gmax + b1->Gmin) / 2; */
b1->Gmax = lb;
b2->Gmin = lb+1;
g_assert(b1->Gmax >= b1->Gmin);
g_assert(b2->Gmax >= b2->Gmin);
break;
case AXIS_BLUE:
lb = b1->Bhalferror;/* *0 + (b1->Bmax + b1->Bmin) / 2; */
b1->Bmax = lb;
b2->Bmin = lb+1;
g_assert(b1->Bmax >= b1->Bmin);
g_assert(b2->Bmax >= b2->Bmin);
break;
default:
g_error("Uh-oh.");
}
/* Update stats for boxes */
numboxes++;
if (progress_callback)
progress_callback (2, ((gdouble) numboxes) / desired_colors,
progress_data);
update_box_rgb (histogram, b1, desired_colors - numboxes);
update_box_rgb (histogram, b2, desired_colors - numboxes);
}
return numboxes;
}
@ -2355,7 +2412,9 @@ select_colors_rgb (QuantizeObj *quantobj,
/* Shrink it to actually-used volume and set its statistics */
update_box_rgb (histogram, &boxlist[0], quantobj->desired_number_of_colors);
/* Perform median-cut to produce final box list */
numboxes = median_cut_rgb (histogram, boxlist, numboxes, desired);
numboxes = median_cut_rgb (histogram, boxlist, numboxes, desired,
quantobj->progress_callback,
quantobj->progress_data);
quantobj->actual_number_of_colors = numboxes;
/* Compute the representative color for each box, fill colormap */
@ -3019,6 +3078,10 @@ median_cut_pass2_no_dither_rgb (QuantizeObj *quantobj,
gboolean alpha_dither = quantobj->want_alpha_dither;
gint offsetx, offsety;
gulong *index_used_count = quantobj->index_used_count;
glong total_size = 0;
glong layer_size;
gint nth_layer = quantobj->nth_layer;
gint n_layers = quantobj->n_layers;
gimp_item_offsets (GIMP_ITEM (layer), &offsetx, &offsety);
@ -3044,6 +3107,8 @@ median_cut_pass2_no_dither_rgb (QuantizeObj *quantobj,
GIMP_ITEM (layer)->height,
TRUE);
layer_size = GIMP_ITEM (layer)->width * GIMP_ITEM (layer)->height;
for (pr = pixel_regions_register (2, &srcPR, &destPR);
pr != NULL;
pr = pixel_regions_process (pr))
@ -3051,6 +3116,8 @@ median_cut_pass2_no_dither_rgb (QuantizeObj *quantobj,
src = srcPR.data;
dest = destPR.data;
total_size += srcPR.h * srcPR.w;
for (row = 0; row < srcPR.h; row++)
{
for (col = 0; col < srcPR.w; col++)
@ -3086,6 +3153,12 @@ median_cut_pass2_no_dither_rgb (QuantizeObj *quantobj,
dest += destPR.bytes;
}
}
if (quantobj->progress_callback)
quantobj->progress_callback (3,
(nth_layer + ((gdouble) total_size)/
layer_size) / (gdouble) n_layers,
quantobj->progress_data);
}
}
@ -3111,6 +3184,10 @@ median_cut_pass2_fixed_dither_rgb (QuantizeObj *quantobj,
gboolean alpha_dither = quantobj->want_alpha_dither;
gint offsetx, offsety;
gulong *index_used_count = quantobj->index_used_count;
glong total_size = 0;
glong layer_size;
gint nth_layer = quantobj->nth_layer;
gint n_layers = quantobj->n_layers;
gimp_item_offsets (GIMP_ITEM (layer), &offsetx, &offsety);
@ -3136,6 +3213,8 @@ median_cut_pass2_fixed_dither_rgb (QuantizeObj *quantobj,
GIMP_ITEM (layer)->height,
TRUE);
layer_size = GIMP_ITEM (layer)->width * GIMP_ITEM (layer)->height;
for (pr = pixel_regions_register (2, &srcPR, &destPR);
pr != NULL;
pr = pixel_regions_process (pr))
@ -3143,6 +3222,8 @@ median_cut_pass2_fixed_dither_rgb (QuantizeObj *quantobj,
src = srcPR.data;
dest = destPR.data;
total_size += srcPR.h * srcPR.w;
for (row = 0; row < srcPR.h; row++)
{
for (col = 0; col < srcPR.w; col++)
@ -3207,6 +3288,12 @@ median_cut_pass2_fixed_dither_rgb (QuantizeObj *quantobj,
dest += destPR.bytes;
}
}
if (quantobj->progress_callback)
quantobj->progress_callback (3,
(nth_layer + ((gdouble) total_size)/
layer_size) / (gdouble) n_layers,
quantobj->progress_data);
}
}
@ -3655,6 +3742,8 @@ median_cut_pass2_fs_dither_rgb (QuantizeObj *quantobj,
gint global_rmax = 0, global_rmin = G_MAXINT;
gint global_gmax = 0, global_gmin = G_MAXINT;
gint global_bmax = 0, global_bmin = G_MAXINT;
gint nth_layer = quantobj->nth_layer;
gint n_layers = quantobj->n_layers;
gimp_item_offsets (GIMP_ITEM (layer), &offsetx, &offsety);
@ -3939,6 +4028,12 @@ median_cut_pass2_fs_dither_rgb (QuantizeObj *quantobj,
odd_row = !odd_row;
pixel_region_set_row (&destPR, 0, row, width, dest_buf);
if (quantobj->progress_callback)
quantobj->progress_callback (3,
(nth_layer + ((gdouble) row) /
height) / (gdouble) n_layers,
quantobj->progress_data);
}
g_free (error_limiter - 255);
@ -3962,14 +4057,15 @@ delete_median_cut (QuantizeObj *quantobj)
/**************************************************************/
static QuantizeObj *
initialize_median_cut (GimpImageBaseType type,
gint num_colors,
GimpConvertDitherType dither_type,
GimpConvertPaletteType palette_type,
gboolean want_alpha_dither)
gboolean want_alpha_dither,
GimpImageConvertProgressCallback progress_callback,
gpointer progress_data
)
{
QuantizeObj * quantobj;
@ -3987,6 +4083,9 @@ initialize_median_cut (GimpImageBaseType type,
quantobj->desired_number_of_colors = num_colors;
quantobj->want_alpha_dither = want_alpha_dither;
quantobj->progress_callback = progress_callback;
quantobj->progress_data = progress_data;
switch (type)
{
case GIMP_GRAY:

View File

@ -22,6 +22,10 @@
#define MAXNUMCOLORS 256
typedef void (* GimpImageConvertProgressCallback) (gint stage,
gdouble progress,
gpointer data);
void gimp_image_convert (GimpImage *gimage,
GimpImageBaseType new_type,
@ -33,7 +37,9 @@ void gimp_image_convert (GimpImage *gimage,
gboolean alpha_dither,
gboolean remove_dups,
GimpConvertPaletteType palette_type,
GimpPalette *custom_palette);
GimpPalette *custom_palette,
GimpImageConvertProgressCallback progress_callback,
gpointer progress_data);
void gimp_drawable_convert_rgb (GimpDrawable *drawable,
TileManager *new_tiles,

View File

@ -36,11 +36,12 @@
#include "widgets/gimppaletteselect.h"
#include "widgets/gimpviewabledialog.h"
#include "display/gimpprogress.h"
#include "menus/menus.h"
#include "gimp-intl.h"
typedef struct
{
GtkWidget *shell;
@ -53,6 +54,9 @@ typedef struct
gint num_colors;
gint palette;
GimpConvertPaletteType palette_type;
GimpDisplay *gdisp;
GimpProgress *progress;
gint current_stage;
} IndexedDialog;
@ -85,8 +89,9 @@ static GimpConvertPaletteType saved_palette_type = GIMP_MAKE_PALETTE;
GtkWidget *
convert_dialog_new (GimpImage *gimage,
GtkWidget *parent)
convert_dialog_new (GimpImage *gimage,
GtkWidget *parent,
GimpDisplay *gdisp)
{
IndexedDialog *dialog;
GtkWidget *main_vbox;
@ -105,6 +110,7 @@ convert_dialog_new (GimpImage *gimage,
dialog = g_new0 (IndexedDialog, 1);
dialog->gimage = gimage;
dialog->gdisp = gdisp;
dialog->custom_palette_button = build_palette_button (gimage->gimp);
dialog->dither_type = saved_dither_type;
@ -407,6 +413,27 @@ build_palette_button (Gimp *gimp)
}
static void
progress_callback (gint stage,
gdouble percentage,
gpointer data)
{
IndexedDialog *dialog = data;
if (stage != dialog->current_stage)
{
gchar buffer[1024];
g_snprintf (buffer, sizeof (buffer), _("Stage %d"), stage);
dialog->current_stage = stage;
dialog->progress = gimp_progress_restart (dialog->progress,
buffer, NULL, NULL);
}
gimp_progress_update (dialog->progress, percentage);
}
static void
indexed_response (GtkWidget *widget,
gint response_id,
@ -414,6 +441,9 @@ indexed_response (GtkWidget *widget,
{
if (response_id == GTK_RESPONSE_OK)
{
dialog->current_stage = 1;
dialog->progress = gimp_progress_start (dialog->gdisp, _("Stage 1"),
FALSE, NULL, NULL);
/* Convert the image to indexed color */
gimp_image_convert (dialog->gimage,
GIMP_INDEXED,
@ -422,7 +452,11 @@ indexed_response (GtkWidget *widget,
dialog->alpha_dither,
dialog->remove_dups,
dialog->palette_type,
theCustomPalette);
theCustomPalette,
progress_callback,
dialog);
gimp_progress_end (dialog->progress);
gimp_image_flush (dialog->gimage);
/* Save defaults for next time */

View File

@ -20,8 +20,9 @@
#define __CONVERT_DIALOG_H__
GtkWidget * convert_dialog_new (GimpImage *gimage,
GtkWidget *parent);
GtkWidget * convert_dialog_new (GimpImage *gimage,
GtkWidget *parent,
GimpDisplay *gdisp);
#endif /* __CONVERT_DIALOG_H__ */

View File

@ -36,11 +36,12 @@
#include "widgets/gimppaletteselect.h"
#include "widgets/gimpviewabledialog.h"
#include "display/gimpprogress.h"
#include "menus/menus.h"
#include "gimp-intl.h"
typedef struct
{
GtkWidget *shell;
@ -53,6 +54,9 @@ typedef struct
gint num_colors;
gint palette;
GimpConvertPaletteType palette_type;
GimpDisplay *gdisp;
GimpProgress *progress;
gint current_stage;
} IndexedDialog;
@ -85,8 +89,9 @@ static GimpConvertPaletteType saved_palette_type = GIMP_MAKE_PALETTE;
GtkWidget *
convert_dialog_new (GimpImage *gimage,
GtkWidget *parent)
convert_dialog_new (GimpImage *gimage,
GtkWidget *parent,
GimpDisplay *gdisp)
{
IndexedDialog *dialog;
GtkWidget *main_vbox;
@ -105,6 +110,7 @@ convert_dialog_new (GimpImage *gimage,
dialog = g_new0 (IndexedDialog, 1);
dialog->gimage = gimage;
dialog->gdisp = gdisp;
dialog->custom_palette_button = build_palette_button (gimage->gimp);
dialog->dither_type = saved_dither_type;
@ -407,6 +413,27 @@ build_palette_button (Gimp *gimp)
}
static void
progress_callback (gint stage,
gdouble percentage,
gpointer data)
{
IndexedDialog *dialog = data;
if (stage != dialog->current_stage)
{
gchar buffer[1024];
g_snprintf (buffer, sizeof (buffer), _("Stage %d"), stage);
dialog->current_stage = stage;
dialog->progress = gimp_progress_restart (dialog->progress,
buffer, NULL, NULL);
}
gimp_progress_update (dialog->progress, percentage);
}
static void
indexed_response (GtkWidget *widget,
gint response_id,
@ -414,6 +441,9 @@ indexed_response (GtkWidget *widget,
{
if (response_id == GTK_RESPONSE_OK)
{
dialog->current_stage = 1;
dialog->progress = gimp_progress_start (dialog->gdisp, _("Stage 1"),
FALSE, NULL, NULL);
/* Convert the image to indexed color */
gimp_image_convert (dialog->gimage,
GIMP_INDEXED,
@ -422,7 +452,11 @@ indexed_response (GtkWidget *widget,
dialog->alpha_dither,
dialog->remove_dups,
dialog->palette_type,
theCustomPalette);
theCustomPalette,
progress_callback,
dialog);
gimp_progress_end (dialog->progress);
gimp_image_flush (dialog->gimage);
/* Save defaults for next time */

View File

@ -20,8 +20,9 @@
#define __CONVERT_DIALOG_H__
GtkWidget * convert_dialog_new (GimpImage *gimage,
GtkWidget *parent);
GtkWidget * convert_dialog_new (GimpImage *gimage,
GtkWidget *parent,
GimpDisplay *gdisp);
#endif /* __CONVERT_DIALOG_H__ */

View File

@ -60,7 +60,7 @@ image_convert_rgb_invoker (Gimp *gimp,
if (success)
{
if (gimp_image_base_type (gimage) != GIMP_RGB)
gimp_image_convert (gimage, GIMP_RGB, 0, 0, FALSE, FALSE, 0, NULL);
gimp_image_convert (gimage, GIMP_RGB, 0, 0, FALSE, FALSE, 0, NULL, NULL, NULL);
else
success = FALSE;
}
@ -108,7 +108,7 @@ image_convert_grayscale_invoker (Gimp *gimp,
if (success)
{
if (gimp_image_base_type (gimage) != GIMP_GRAY)
gimp_image_convert (gimage, GIMP_GRAY, 0, 0, FALSE, FALSE, 0, NULL);
gimp_image_convert (gimage, GIMP_GRAY, 0, 0, FALSE, FALSE, 0, NULL, NULL, NULL);
else
success = FALSE;
}
@ -214,7 +214,7 @@ image_convert_indexed_invoker (Gimp *gimp,
if (success)
gimp_image_convert (gimage, GIMP_INDEXED, num_cols, dither_type,
alpha_dither, remove_unused, palette_type, palette);
alpha_dither, remove_unused, palette_type, palette, NULL, NULL);
}
return procedural_db_return_args (&image_convert_indexed_proc, success);

View File

@ -29,7 +29,7 @@ sub simple_invoke {
code => <<CODE
{
if (gimp_image_base_type (gimage) != $type)
gimp_image_convert (gimage, $type, 0, 0, FALSE, FALSE, 0, NULL);
gimp_image_convert (gimage, $type, 0, 0, FALSE, FALSE, 0, NULL, NULL, NULL);
else
success = FALSE;
}
@ -144,7 +144,7 @@ HELP
if (success)
gimp_image_convert (gimage, GIMP_INDEXED, num_cols, dither_type,
alpha_dither, remove_unused, palette_type, palette);
alpha_dither, remove_unused, palette_type, palette, NULL, NULL);
}
CODE
);