app/gimpimage.h app/gimpimageP.h app/gimpimage.c app/gimage_cmds.c
Sat Nov 14 23:16:55 GMT 1998 Austin Donnelly <austin@greenend.org.uk> * app/gimpimage.h * app/gimpimageP.h * app/gimpimage.c * app/gimage_cmds.c * app/file_new_dialog.c * app/info_window.c * libgimp/gimp.h * libgimp/gimpimage.c * plug-ins/newsprint/newsprint.c * plug-ins/tiff/tiff.c: gimp_image_{get,set}_resolution() calls now get and set both X and Y resolutions. Gimp image struct now has two resolution fields, one for each direction. I've updated the two plugins which used the info (TIFF and newsprint).
This commit is contained in:

committed by
Austin Donnelly

parent
b8b5d7834d
commit
9dd1c38b7f
@ -104,8 +104,10 @@ GtkType gimp_image_get_type(void);
|
||||
|
||||
GimpImage * gimp_image_new (int, int, int);
|
||||
void gimp_image_set_filename (GimpImage *, char *);
|
||||
void gimp_image_set_resolution (GimpImage *, float);
|
||||
float gimp_image_get_resolution (GimpImage *);
|
||||
void gimp_image_set_resolution (GimpImage *, float, float);
|
||||
void gimp_image_get_resolution (GimpImage *,
|
||||
float *,
|
||||
float *);
|
||||
void gimp_image_set_save_proc (GimpImage *, PlugInProcDef *);
|
||||
PlugInProcDef * gimp_image_get_save_proc (GimpImage *);
|
||||
void gimp_image_resize (GimpImage *, int, int, int, int);
|
||||
|
Reference in New Issue
Block a user