improved documentation for gimp_image_resize_to_layers

2004-09-05  Simon Budig  <simon@gimp.org>

	* tools/pdbgen/pdb/image.pdb: improved documentation for
	gimp_image_resize_to_layers

	* libgimp/gimp.def
	* devel-docs/libgimp/libgimp-sections.txt: added
	gimp_image_resize_to_layers

	* app/pdb/image_cmds.c
	* libgimp/gimpimage_pdb.c: regenerated
This commit is contained in:
Simon Budig 2004-09-05 00:13:22 +00:00 committed by Simon Budig
parent 6fd8da2266
commit 0f46fb7fdf
6 changed files with 21 additions and 3 deletions

View File

@ -1,3 +1,15 @@
2004-09-05 Simon Budig <simon@gimp.org>
* tools/pdbgen/pdb/image.pdb: improved documentation for
gimp_image_resize_to_layers
* libgimp/gimp.def
* devel-docs/libgimp/libgimp-sections.txt: added
gimp_image_resize_to_layers
* app/pdb/image_cmds.c
* libgimp/gimpimage_pdb.c: regenerated
2004-09-05 Simon Budig <simon@gimp.org>
* app/core/gimpimage-resize.[ch]: Implement function to resize

View File

@ -776,7 +776,7 @@ static ProcRecord image_resize_to_layers_proc =
{
"gimp_image_resize_to_layers",
"Resize the image to fit all layers.",
"This procedure resizes the image so that it exactly fits all layers of the image. All channels within the image are resized to the new size; this includes the image selection mask. All layers within the image are repositioned to the new image area.",
"This procedure resizes the image to the bounding box of all layers of the image. All channels within the image are resized to the new size; this includes the image selection mask. All layers within the image are repositioned to the new image area.",
"Simon Budig",
"Simon Budig",
"2004",

View File

@ -355,6 +355,7 @@ gimp_image_free_shadow
gimp_image_flip
gimp_image_rotate
gimp_image_resize
gimp_image_resize_to_layers
gimp_image_scale
gimp_image_crop
gimp_image_get_layers

View File

@ -211,6 +211,7 @@ EXPORTS
gimp_image_remove_channel
gimp_image_remove_layer
gimp_image_resize
gimp_image_resize_to_layers
gimp_image_rotate
gimp_image_scale
gimp_image_set_active_channel

View File

@ -348,12 +348,14 @@ gimp_image_resize (gint32 image_ID,
*
* Resize the image to fit all layers.
*
* This procedure resizes the image so that it exactly fits all layers
* This procedure resizes the image to the bounding box of all layers
* of the image. All channels within the image are resized to the new
* size; this includes the image selection mask. All layers within the
* image are repositioned to the new image area.
*
* Returns: TRUE on success.
*
* Since: GIMP 2.2
*/
gboolean
gimp_image_resize_to_layers (gint32 image_ID)

View File

@ -340,7 +340,7 @@ sub image_resize_to_layers {
$blurb = 'Resize the image to fit all layers.';
$help = <<'HELP';
This procedure resizes the image so that it exactly fits all layers of the
This procedure resizes the image to the bounding box of all layers of the
image. All channels within the image are resized to the new size; this includes
the image selection mask. All layers within the image are repositioned to the
new image area.
@ -348,6 +348,8 @@ HELP
$author = $copyright = 'Simon Budig';
$date = '2004';
$since = '2.2';
@inargs = ( &std_image_arg );