1997-11-25 06:05:25 +08:00
/* 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
1998-04-13 13:44:11 +08:00
* Foundation , Inc . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
1997-11-25 06:05:25 +08:00
*/
# include <stdlib.h>
# include <stdio.h>
# include "appenv.h"
# include "drawable.h"
# include "gdisplay.h"
# include "gimage_mask.h"
# include "info_dialog.h"
# include "scale_tool.h"
# include "selection.h"
# include "tools.h"
# include "transform_core.h"
# include "transform_tool.h"
# include "undo.h"
1998-01-22 15:02:57 +08:00
# include "tile_manager_pvt.h"
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
# include "libgimp/gimpintl.h"
1997-11-25 06:05:25 +08:00
# define X1 0
# define Y1 1
# define X2 2
# define Y2 3
/* storage for information dialog fields */
char orig_width_buf [ MAX_INFO_BUF ] ;
char orig_height_buf [ MAX_INFO_BUF ] ;
char width_buf [ MAX_INFO_BUF ] ;
char height_buf [ MAX_INFO_BUF ] ;
char x_ratio_buf [ MAX_INFO_BUF ] ;
char y_ratio_buf [ MAX_INFO_BUF ] ;
/* forward function declarations */
1998-10-14 10:54:02 +08:00
static void * scale_tool_scale ( GImage * , GimpDrawable * , double * , TileManager * , int , GimpMatrix ) ;
1997-11-25 06:05:25 +08:00
static void * scale_tool_recalc ( Tool * , void * ) ;
static void scale_tool_motion ( Tool * , void * ) ;
static void scale_info_update ( Tool * ) ;
static Argument * scale_invoker ( Argument * ) ;
1998-08-15 21:34:54 +08:00
/* callback functions for the info dialog entries */
static void scale_width_changed ( GtkWidget * entry , gpointer data ) ;
static void scale_height_changed ( GtkWidget * entry , gpointer data ) ;
1997-11-25 06:05:25 +08:00
void *
scale_tool_transform ( tool , gdisp_ptr , state )
Tool * tool ;
gpointer gdisp_ptr ;
int state ;
{
GDisplay * gdisp ;
TransformCore * transform_core ;
gdisp = ( GDisplay * ) gdisp_ptr ;
transform_core = ( TransformCore * ) tool - > private ;
switch ( state )
{
case INIT :
if ( ! transform_info )
{
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
transform_info = info_dialog_new ( _ ( " Scaling Information " ) ) ;
info_dialog_add_field ( transform_info , _ ( " Original Width: " ) , orig_width_buf , NULL , NULL ) ;
info_dialog_add_field ( transform_info , _ ( " Original Height: " ) , orig_height_buf , NULL , NULL ) ;
info_dialog_add_field ( transform_info , _ ( " Current Width: " ) , width_buf , scale_width_changed , tool ) ;
info_dialog_add_field ( transform_info , _ ( " Current Height: " ) , height_buf , scale_height_changed , tool ) ;
info_dialog_add_field ( transform_info , _ ( " X Scale Ratio: " ) , x_ratio_buf , NULL , NULL ) ;
info_dialog_add_field ( transform_info , _ ( " Y Scale Ratio: " ) , y_ratio_buf , NULL , NULL ) ;
1997-11-25 06:05:25 +08:00
}
transform_core - > trans_info [ X1 ] = ( double ) transform_core - > x1 ;
transform_core - > trans_info [ Y1 ] = ( double ) transform_core - > y1 ;
transform_core - > trans_info [ X2 ] = ( double ) transform_core - > x2 ;
transform_core - > trans_info [ Y2 ] = ( double ) transform_core - > y2 ;
return NULL ;
break ;
case MOTION :
scale_tool_motion ( tool , gdisp_ptr ) ;
return ( scale_tool_recalc ( tool , gdisp_ptr ) ) ;
break ;
case RECALC :
return ( scale_tool_recalc ( tool , gdisp_ptr ) ) ;
break ;
case FINISH :
return scale_tool_scale ( gdisp - > gimage , gimage_active_drawable ( gdisp - > gimage ) ,
transform_core - > trans_info , transform_core - > original ,
transform_tool_smoothing ( ) , transform_core - > transform ) ;
break ;
}
return NULL ;
}
Tool *
tools_new_scale_tool ( )
{
Tool * tool ;
TransformCore * private ;
tool = transform_core_new ( SCALE , INTERACTIVE ) ;
private = tool - > private ;
/* set the rotation specific transformation attributes */
private - > trans_func = scale_tool_transform ;
private - > trans_info [ X1 ] = 0 ;
private - > trans_info [ Y1 ] = 0 ;
private - > trans_info [ X2 ] = 0 ;
private - > trans_info [ Y2 ] = 0 ;
/* assemble the transformation matrix */
1998-10-14 10:54:02 +08:00
gimp_matrix_identity ( private - > transform ) ;
1997-11-25 06:05:25 +08:00
return tool ;
}
void
tools_free_scale_tool ( tool )
Tool * tool ;
{
transform_core_free ( tool ) ;
}
static void
scale_info_update ( tool )
Tool * tool ;
{
GDisplay * gdisp ;
TransformCore * transform_core ;
double ratio_x , ratio_y ;
int x1 , y1 , x2 , y2 , x3 , y3 , x4 , y4 ;
gdisp = ( GDisplay * ) tool - > gdisp_ptr ;
transform_core = ( TransformCore * ) tool - > private ;
/* Find original sizes */
x1 = transform_core - > x1 ;
y1 = transform_core - > y1 ;
x2 = transform_core - > x2 ;
y2 = transform_core - > y2 ;
sprintf ( orig_width_buf , " %d " , x2 - x1 ) ;
sprintf ( orig_height_buf , " %d " , y2 - y1 ) ;
/* Find current sizes */
x3 = ( int ) transform_core - > trans_info [ X1 ] ;
y3 = ( int ) transform_core - > trans_info [ Y1 ] ;
x4 = ( int ) transform_core - > trans_info [ X2 ] ;
y4 = ( int ) transform_core - > trans_info [ Y2 ] ;
sprintf ( width_buf , " %d " , x4 - x3 ) ;
sprintf ( height_buf , " %d " , y4 - y3 ) ;
ratio_x = ratio_y = 0.0 ;
if ( x2 - x1 )
ratio_x = ( double ) ( x4 - x3 ) / ( double ) ( x2 - x1 ) ;
if ( y2 - y1 )
ratio_y = ( double ) ( y4 - y3 ) / ( double ) ( y2 - y1 ) ;
sprintf ( x_ratio_buf , " %0.2f " , ratio_x ) ;
sprintf ( y_ratio_buf , " %0.2f " , ratio_y ) ;
info_dialog_update ( transform_info ) ;
info_dialog_popup ( transform_info ) ;
}
1998-08-15 21:34:54 +08:00
static void
scale_width_changed ( GtkWidget * w ,
gpointer data )
{
Tool * tool ;
TransformCore * transform_core ;
GDisplay * gdisp ;
gchar * str ;
int value ;
tool = ( Tool * ) data ;
if ( tool )
{
gdisp = ( GDisplay * ) tool - > gdisp_ptr ;
transform_core = ( TransformCore * ) tool - > private ;
str = g_strdup ( gtk_entry_get_text ( GTK_ENTRY ( w ) ) ) ;
value = ( int ) atof ( str ) ;
if ( value ! = ( transform_core - > trans_info [ X2 ] - transform_core - > trans_info [ X1 ] ) )
{
draw_core_pause ( transform_core - > core , tool ) ;
transform_core - > trans_info [ X2 ] = transform_core - > trans_info [ X1 ] + value ;
scale_tool_recalc ( tool , gdisp ) ;
draw_core_resume ( transform_core - > core , tool ) ;
}
g_free ( str ) ;
}
}
static void
scale_height_changed ( GtkWidget * w ,
gpointer data )
{
Tool * tool ;
TransformCore * transform_core ;
GDisplay * gdisp ;
gchar * str ;
int value ;
tool = ( Tool * ) data ;
if ( tool )
{
gdisp = ( GDisplay * ) tool - > gdisp_ptr ;
transform_core = ( TransformCore * ) tool - > private ;
str = g_strdup ( gtk_entry_get_text ( GTK_ENTRY ( w ) ) ) ;
value = ( int ) atof ( str ) ;
if ( value ! = ( transform_core - > trans_info [ Y2 ] - transform_core - > trans_info [ Y1 ] ) )
{
draw_core_pause ( transform_core - > core , tool ) ;
transform_core - > trans_info [ Y2 ] = transform_core - > trans_info [ Y1 ] + value ;
scale_tool_recalc ( tool , gdisp ) ;
draw_core_resume ( transform_core - > core , tool ) ;
}
g_free ( str ) ;
}
}
1998-03-19 06:35:31 +08:00
static void
1997-11-25 06:05:25 +08:00
scale_tool_motion ( tool , gdisp_ptr )
Tool * tool ;
void * gdisp_ptr ;
{
GDisplay * gdisp ;
TransformCore * transform_core ;
double ratio ;
double * x1 , * y1 ;
double * x2 , * y2 ;
int w , h ;
int dir_x , dir_y ;
int diff_x , diff_y ;
gdisp = ( GDisplay * ) gdisp_ptr ;
transform_core = ( TransformCore * ) tool - > private ;
diff_x = transform_core - > curx - transform_core - > lastx ;
diff_y = transform_core - > cury - transform_core - > lasty ;
switch ( transform_core - > function )
{
case HANDLE_1 :
x1 = & transform_core - > trans_info [ X1 ] ;
y1 = & transform_core - > trans_info [ Y1 ] ;
x2 = & transform_core - > trans_info [ X2 ] ;
y2 = & transform_core - > trans_info [ Y2 ] ;
dir_x = dir_y = 1 ;
break ;
case HANDLE_2 :
x1 = & transform_core - > trans_info [ X2 ] ;
y1 = & transform_core - > trans_info [ Y1 ] ;
x2 = & transform_core - > trans_info [ X1 ] ;
y2 = & transform_core - > trans_info [ Y2 ] ;
dir_x = - 1 ;
dir_y = 1 ;
break ;
case HANDLE_3 :
x1 = & transform_core - > trans_info [ X1 ] ;
y1 = & transform_core - > trans_info [ Y2 ] ;
x2 = & transform_core - > trans_info [ X2 ] ;
y2 = & transform_core - > trans_info [ Y1 ] ;
dir_x = 1 ;
dir_y = - 1 ;
break ;
case HANDLE_4 :
x1 = & transform_core - > trans_info [ X2 ] ;
y1 = & transform_core - > trans_info [ Y2 ] ;
x2 = & transform_core - > trans_info [ X1 ] ;
y2 = & transform_core - > trans_info [ Y1 ] ;
dir_x = dir_y = - 1 ;
break ;
default :
return ;
}
/* if just the control key is down, affect only the height */
if ( transform_core - > state & ControlMask & & ! ( transform_core - > state & ShiftMask ) )
diff_x = 0 ;
/* if just the shift key is down, affect only the width */
else if ( transform_core - > state & ShiftMask & & ! ( transform_core - > state & ControlMask ) )
diff_y = 0 ;
* x1 + = diff_x ;
* y1 + = diff_y ;
if ( dir_x > 0 )
{
if ( * x1 > = * x2 ) * x1 = * x2 - 1 ;
}
else
{
if ( * x1 < = * x2 ) * x1 = * x2 + 1 ;
}
if ( dir_y > 0 )
{
if ( * y1 > = * y2 ) * y1 = * y2 - 1 ;
}
else
{
if ( * y1 < = * y2 ) * y1 = * y2 + 1 ;
}
/* if both the control key & shift keys are down, keep the aspect ratio intac
t */
if ( transform_core - > state & GDK_CONTROL_MASK & & transform_core - > state & GDK_SHIFT_MASK )
{
ratio = ( double ) ( transform_core - > x2 - transform_core - > x1 ) /
( double ) ( transform_core - > y2 - transform_core - > y1 ) ;
w = ABS ( ( * x2 - * x1 ) ) ;
h = ABS ( ( * y2 - * y1 ) ) ;
if ( w > h * ratio )
h = w / ratio ;
else
w = h * ratio ;
* y1 = * y2 - dir_y * h ;
* x1 = * x2 - dir_x * w ;
}
}
static void *
scale_tool_recalc ( tool , gdisp_ptr )
Tool * tool ;
void * gdisp_ptr ;
{
TransformCore * transform_core ;
GDisplay * gdisp ;
int x1 , y1 , x2 , y2 ;
int diffx , diffy ;
int cx , cy ;
double scalex , scaley ;
gdisp = ( GDisplay * ) tool - > gdisp_ptr ;
transform_core = ( TransformCore * ) tool - > private ;
x1 = ( int ) transform_core - > trans_info [ X1 ] ;
y1 = ( int ) transform_core - > trans_info [ Y1 ] ;
x2 = ( int ) transform_core - > trans_info [ X2 ] ;
y2 = ( int ) transform_core - > trans_info [ Y2 ] ;
scalex = scaley = 1.0 ;
if ( transform_core - > x2 - transform_core - > x1 )
scalex = ( double ) ( x2 - x1 ) / ( double ) ( transform_core - > x2 - transform_core - > x1 ) ;
if ( transform_core - > y2 - transform_core - > y1 )
scaley = ( double ) ( y2 - y1 ) / ( double ) ( transform_core - > y2 - transform_core - > y1 ) ;
switch ( transform_core - > function )
{
case HANDLE_1 :
cx = x2 ; cy = y2 ;
diffx = x2 - transform_core - > x2 ;
diffy = y2 - transform_core - > y2 ;
break ;
case HANDLE_2 :
cx = x1 ; cy = y2 ;
diffx = x1 - transform_core - > x1 ;
diffy = y2 - transform_core - > y2 ;
break ;
case HANDLE_3 :
cx = x2 ; cy = y1 ;
diffx = x2 - transform_core - > x2 ;
diffy = y1 - transform_core - > y1 ;
break ;
case HANDLE_4 :
cx = x1 ; cy = y1 ;
diffx = x1 - transform_core - > x1 ;
diffy = y1 - transform_core - > y1 ;
break ;
default :
cx = x1 ; cy = y1 ;
diffx = diffy = 0 ;
break ;
}
/* assemble the transformation matrix */
1998-10-14 10:54:02 +08:00
gimp_matrix_identity ( transform_core - > transform ) ;
gimp_matrix_translate ( transform_core - > transform , ( double ) - cx + diffx , ( double ) - cy + diffy ) ;
gimp_matrix_scale ( transform_core - > transform , scalex , scaley ) ;
gimp_matrix_translate ( transform_core - > transform , ( double ) cx , ( double ) cy ) ;
1997-11-25 06:05:25 +08:00
/* transform the bounding box */
transform_bounding_box ( tool ) ;
/* update the information dialog */
scale_info_update ( tool ) ;
return ( void * ) 1 ;
}
static void *
1998-01-22 15:02:57 +08:00
scale_tool_scale ( gimage , drawable , trans_info , float_tiles , interpolation , matrix )
1997-11-25 06:05:25 +08:00
GImage * gimage ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
double * trans_info ;
TileManager * float_tiles ;
int interpolation ;
1998-10-14 10:54:02 +08:00
GimpMatrix matrix ;
1997-11-25 06:05:25 +08:00
{
TileManager * new_tiles ;
int x1 , y1 , x2 , y2 ;
PixelRegion srcPR , destPR ;
x1 = trans_info [ X1 ] ;
y1 = trans_info [ Y1 ] ;
x2 = trans_info [ X2 ] ;
y2 = trans_info [ Y2 ] ;
pixel_region_init ( & srcPR , float_tiles , 0 , 0 ,
1998-08-16 03:17:36 +08:00
float_tiles - > width ,
float_tiles - > height , FALSE ) ;
1997-11-25 06:05:25 +08:00
/* Create the new tile manager */
1998-08-16 03:17:36 +08:00
new_tiles = tile_manager_new ( ( x2 - x1 ) , ( y2 - y1 ) , float_tiles - > bpp ) ;
1997-11-25 06:05:25 +08:00
pixel_region_init ( & destPR , new_tiles , 0 , 0 , ( x2 - x1 ) , ( y2 - y1 ) , TRUE ) ;
1998-01-22 15:02:57 +08:00
if ( drawable_type ( drawable ) = = INDEXED_GIMAGE | |
drawable_type ( drawable ) = = INDEXEDA_GIMAGE | |
1997-11-25 06:05:25 +08:00
! interpolation )
scale_region_no_resample ( & srcPR , & destPR ) ;
else
scale_region ( & srcPR , & destPR ) ;
new_tiles - > x = x1 ;
new_tiles - > y = y1 ;
return ( void * ) new_tiles ;
}
/* The scale procedure definition */
ProcArg scale_args [ ] =
{
{ PDB_IMAGE ,
" image " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " the image " )
1997-11-25 06:05:25 +08:00
} ,
{ PDB_DRAWABLE ,
" drawable " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " the affected drawable " )
1997-11-25 06:05:25 +08:00
} ,
{ PDB_INT32 ,
" interpolation " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " whether to use interpolation " )
1997-11-25 06:05:25 +08:00
} ,
{ PDB_FLOAT ,
" x1 " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " the x coordinate of the upper-left corner of newly scaled region " )
1997-11-25 06:05:25 +08:00
} ,
{ PDB_FLOAT ,
" y1 " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " the y coordinate of the upper-left corner of newly scaled region " )
1997-11-25 06:05:25 +08:00
} ,
{ PDB_FLOAT ,
" x2 " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " the x coordinate of the lower-right corner of newly scaled region " )
1997-11-25 06:05:25 +08:00
} ,
{ PDB_FLOAT ,
" y2 " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " the y coordinate of the lower-right corner of newly scaled region " )
1997-11-25 06:05:25 +08:00
}
} ;
ProcArg scale_out_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " the scaled drawable " )
1997-11-25 06:05:25 +08:00
}
} ;
ProcRecord scale_proc =
{
" gimp_scale " ,
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
N_ ( " Scale the specified drawable " ) ,
N_ ( " This tool scales the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating selection which is then scaled by the specified amount. The interpolation parameter can be set to TRUE to indicate that either linear or cubic interpolation should be used to smooth the resulting scaled drawable. The return value is the ID of the scaled drawable. If there was no selection, this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and scaled drawable. " ) ,
1997-11-25 06:05:25 +08:00
" Spencer Kimball & Peter Mattis " ,
" Spencer Kimball & Peter Mattis " ,
" 1995-1996 " ,
PDB_INTERNAL ,
/* Input arguments */
7 ,
scale_args ,
/* Output arguments */
1 ,
scale_out_args ,
/* Exec method */
{ { scale_invoker } } ,
} ;
static Argument *
scale_invoker ( args )
Argument * args ;
{
int success = TRUE ;
GImage * gimage ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
int interpolation ;
double trans_info [ 4 ] ;
int int_value ;
TileManager * float_tiles ;
TileManager * new_tiles ;
1998-10-14 10:54:02 +08:00
GimpMatrix matrix ;
1997-11-25 06:05:25 +08:00
int new_layer ;
Layer * layer ;
Argument * return_args ;
1998-01-22 15:02:57 +08:00
drawable = NULL ;
1997-11-25 06:05:25 +08:00
layer = NULL ;
/* the gimage */
if ( success )
{
int_value = args [ 0 ] . value . pdb_int ;
if ( ! ( gimage = gimage_get_ID ( int_value ) ) )
success = FALSE ;
}
/* the drawable */
if ( success )
{
int_value = args [ 1 ] . value . pdb_int ;
1998-01-22 15:02:57 +08:00
drawable = drawable_get_ID ( int_value ) ;
if ( drawable = = NULL | | gimage ! = drawable_gimage ( drawable ) )
1997-11-25 06:05:25 +08:00
success = FALSE ;
}
/* interpolation */
if ( success )
{
int_value = args [ 2 ] . value . pdb_int ;
interpolation = ( int_value ) ? TRUE : FALSE ;
}
/* scale extents */
if ( success )
{
trans_info [ X1 ] = args [ 3 ] . value . pdb_float ;
trans_info [ Y1 ] = args [ 4 ] . value . pdb_float ;
trans_info [ X2 ] = args [ 5 ] . value . pdb_float ;
trans_info [ Y2 ] = args [ 6 ] . value . pdb_float ;
if ( trans_info [ X1 ] > = trans_info [ X2 ] | |
trans_info [ Y1 ] > = trans_info [ Y2 ] )
success = FALSE ;
}
/* call the scale procedure */
if ( success )
{
double scalex , scaley ;
/* Start a transform undo group */
undo_push_group_start ( gimage , TRANSFORM_CORE_UNDO ) ;
/* Cut/Copy from the specified drawable */
1998-01-22 15:02:57 +08:00
float_tiles = transform_core_cut ( gimage , drawable , & new_layer ) ;
1997-11-25 06:05:25 +08:00
scalex = scaley = 1.0 ;
1998-08-16 03:17:36 +08:00
if ( float_tiles - > width )
scalex = ( trans_info [ X2 ] - trans_info [ X1 ] ) / ( double ) float_tiles - > width ;
if ( float_tiles - > height )
scaley = ( trans_info [ Y2 ] - trans_info [ Y1 ] ) / ( double ) float_tiles - > height ;
1997-11-25 06:05:25 +08:00
/* assemble the transformation matrix */
1998-10-14 10:54:02 +08:00
gimp_matrix_identity ( matrix ) ;
gimp_matrix_translate ( matrix , float_tiles - > x , float_tiles - > y ) ;
gimp_matrix_scale ( matrix , scalex , scaley ) ;
gimp_matrix_translate ( matrix , trans_info [ X1 ] , trans_info [ Y1 ] ) ;
1997-11-25 06:05:25 +08:00
/* scale the buffer */
1998-01-22 15:02:57 +08:00
new_tiles = scale_tool_scale ( gimage , drawable , trans_info ,
1997-11-25 06:05:25 +08:00
float_tiles , interpolation , matrix ) ;
/* free the cut/copied buffer */
tile_manager_destroy ( float_tiles ) ;
if ( new_tiles )
1998-01-22 15:02:57 +08:00
success = ( layer = transform_core_paste ( gimage , drawable , new_tiles , new_layer ) ) ! = NULL ;
1997-11-25 06:05:25 +08:00
else
success = FALSE ;
/* push the undo group end */
undo_push_group_end ( gimage ) ;
}
return_args = procedural_db_return_args ( & scale_proc , success ) ;
if ( success )
1998-01-22 15:02:57 +08:00
return_args [ 1 ] . value . pdb_int = drawable_ID ( GIMP_DRAWABLE ( layer ) ) ;
1997-11-25 06:05:25 +08:00
return return_args ;
}