diff --git a/ChangeLog b/ChangeLog index 5aa523ffb4..cc70f4b184 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +2000-12-15 Michael Natterer + + * configure.in + * help/*: Updated Gimp-Help. See help/ChangeLog for details. + + * app/channels_dialog.c + * app/gdisplay.c + * app/gradient.c + * app/layers_dialog.c + * app/menus.c + * app/paths_dialog.c + * app/preferences_dialog.c + * app/resize.c: fixed menu paths. + + * plug-ins/helpbrowser/helpbrowser.c: load a special + "undocumented_filter.html" page if a filter was not found. + Adapted to the new help structure. + 2000-12-14 Sven Neumann * app/nav_window.c: missed a place that needed the same fix for diff --git a/app/channels_dialog.c b/app/channels_dialog.c index 1777f4c3af..8ed701deee 100644 --- a/app/channels_dialog.c +++ b/app/channels_dialog.c @@ -2656,7 +2656,7 @@ channels_dialog_edit_channel_query (ChannelWidget *channel_widget) options->query_box = gimp_dialog_new (_("Edit Channel Attributes"), "edit_channel_attributes", gimp_standard_help_func, - "dialogs/channels/dialogs/edit_channel_attributes.html", + "dialogs/channels/edit_channel_attributes.html", GTK_WIN_POS_MOUSE, FALSE, TRUE, FALSE, diff --git a/app/core/gimpprojection.c b/app/core/gimpprojection.c index 4433f1a94a..390270e1ea 100644 --- a/app/core/gimpprojection.c +++ b/app/core/gimpprojection.c @@ -1718,7 +1718,7 @@ gdisplay_set_menu_sensitivity (GDisplay *gdisp) SET_SENSITIVE ("File/Save", gdisp && drawable); SET_SENSITIVE ("File/Save As...", gdisp && drawable); - SET_SENSITIVE ("File/Revert", gdisp && gdisp->gimage->filename); + SET_SENSITIVE ("File/Revert...", gdisp && gdisp->gimage->filename); SET_SENSITIVE ("File/Close", gdisp); SET_SENSITIVE ("Edit", gdisp); diff --git a/app/dialogs/preferences-dialog.c b/app/dialogs/preferences-dialog.c index db265b5e7d..7d09ea1df0 100644 --- a/app/dialogs/preferences-dialog.c +++ b/app/dialogs/preferences-dialog.c @@ -1671,7 +1671,7 @@ prefs_cmd_callback (GtkWidget *widget, _("Default Comment"), GTK_CTREE (ctree), _("Default Comment"), - "dialogs/preferences/default_comment.html", + "dialogs/preferences/new_file.html#default_comment", top_insert, &child_insert, page_index); diff --git a/app/dialogs/resize-dialog.c b/app/dialogs/resize-dialog.c index e6465fca73..358b175f78 100644 --- a/app/dialogs/resize-dialog.c +++ b/app/dialogs/resize-dialog.c @@ -193,12 +193,12 @@ resize_widget_new (ResizeType type, case ResizeLayer: wmclass = "resize_layer"; window_title = _("Set Layer Boundary Size"); - help_page = "layers/dialogs/resize_layer.html"; + help_page = "layers/dialogs/layer_boundary_size.html"; break; case ResizeImage: wmclass = "resize_image"; window_title = _("Set Canvas Size"); - help_page = "dialogs/resize_image.html"; + help_page = "dialogs/set_canvas_size.html"; break; } frame = gtk_frame_new (_("Size")); @@ -215,7 +215,7 @@ resize_widget_new (ResizeType type, user_data, NULL, NULL, TRUE, FALSE, _("Reset"), reset_callback, - resize, NULL, NULL, FALSE, TRUE, + resize, NULL, NULL, FALSE, FALSE, _("Cancel"), cancel_cb ? cancel_cb : gtk_widget_destroy, cancel_cb ? user_data : NULL, diff --git a/app/display/gimpdisplay.c b/app/display/gimpdisplay.c index 4433f1a94a..390270e1ea 100644 --- a/app/display/gimpdisplay.c +++ b/app/display/gimpdisplay.c @@ -1718,7 +1718,7 @@ gdisplay_set_menu_sensitivity (GDisplay *gdisp) SET_SENSITIVE ("File/Save", gdisp && drawable); SET_SENSITIVE ("File/Save As...", gdisp && drawable); - SET_SENSITIVE ("File/Revert", gdisp && gdisp->gimage->filename); + SET_SENSITIVE ("File/Revert...", gdisp && gdisp->gimage->filename); SET_SENSITIVE ("File/Close", gdisp); SET_SENSITIVE ("Edit", gdisp); diff --git a/app/gdisplay.c b/app/gdisplay.c index 4433f1a94a..390270e1ea 100644 --- a/app/gdisplay.c +++ b/app/gdisplay.c @@ -1718,7 +1718,7 @@ gdisplay_set_menu_sensitivity (GDisplay *gdisp) SET_SENSITIVE ("File/Save", gdisp && drawable); SET_SENSITIVE ("File/Save As...", gdisp && drawable); - SET_SENSITIVE ("File/Revert", gdisp && gdisp->gimage->filename); + SET_SENSITIVE ("File/Revert...", gdisp && gdisp->gimage->filename); SET_SENSITIVE ("File/Close", gdisp); SET_SENSITIVE ("Edit", gdisp); diff --git a/app/gradient.c b/app/gradient.c index 8c4305f5b7..f1d07dbe47 100644 --- a/app/gradient.c +++ b/app/gradient.c @@ -907,7 +907,7 @@ gradient_editor_create (void) gtk_widget_show (button); button = ed_create_button (_("Save as POV-Ray"), - "dialogs/gradient_editor/save_as_pov_ray.html", + "dialogs/gradient_editor/save_as_povray.html", GTK_SIGNAL_FUNC (ed_save_pov_callback), NULL); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); @@ -1866,7 +1866,7 @@ ed_save_pov_callback (GtkWidget *widget, /* Connect the "F1" help key */ gimp_help_connect_help_accel (window, gimp_standard_help_func, - "dialogs/gradient_editor/save_as_pov_ray.html"); + "dialogs/gradient_editor/save_as_povray.html"); gtk_widget_show (window); gtk_widget_set_sensitive (g_editor->shell, FALSE); diff --git a/app/gradient_editor.c b/app/gradient_editor.c index 8c4305f5b7..f1d07dbe47 100644 --- a/app/gradient_editor.c +++ b/app/gradient_editor.c @@ -907,7 +907,7 @@ gradient_editor_create (void) gtk_widget_show (button); button = ed_create_button (_("Save as POV-Ray"), - "dialogs/gradient_editor/save_as_pov_ray.html", + "dialogs/gradient_editor/save_as_povray.html", GTK_SIGNAL_FUNC (ed_save_pov_callback), NULL); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); @@ -1866,7 +1866,7 @@ ed_save_pov_callback (GtkWidget *widget, /* Connect the "F1" help key */ gimp_help_connect_help_accel (window, gimp_standard_help_func, - "dialogs/gradient_editor/save_as_pov_ray.html"); + "dialogs/gradient_editor/save_as_povray.html"); gtk_widget_show (window); gtk_widget_set_sensitive (g_editor->shell, FALSE); diff --git a/app/gui/channels-dialog.c b/app/gui/channels-dialog.c index 1777f4c3af..8ed701deee 100644 --- a/app/gui/channels-dialog.c +++ b/app/gui/channels-dialog.c @@ -2656,7 +2656,7 @@ channels_dialog_edit_channel_query (ChannelWidget *channel_widget) options->query_box = gimp_dialog_new (_("Edit Channel Attributes"), "edit_channel_attributes", gimp_standard_help_func, - "dialogs/channels/dialogs/edit_channel_attributes.html", + "dialogs/channels/edit_channel_attributes.html", GTK_WIN_POS_MOUSE, FALSE, TRUE, FALSE, diff --git a/app/gui/gradient-editor.c b/app/gui/gradient-editor.c index 8c4305f5b7..f1d07dbe47 100644 --- a/app/gui/gradient-editor.c +++ b/app/gui/gradient-editor.c @@ -907,7 +907,7 @@ gradient_editor_create (void) gtk_widget_show (button); button = ed_create_button (_("Save as POV-Ray"), - "dialogs/gradient_editor/save_as_pov_ray.html", + "dialogs/gradient_editor/save_as_povray.html", GTK_SIGNAL_FUNC (ed_save_pov_callback), NULL); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); @@ -1866,7 +1866,7 @@ ed_save_pov_callback (GtkWidget *widget, /* Connect the "F1" help key */ gimp_help_connect_help_accel (window, gimp_standard_help_func, - "dialogs/gradient_editor/save_as_pov_ray.html"); + "dialogs/gradient_editor/save_as_povray.html"); gtk_widget_show (window); gtk_widget_set_sensitive (g_editor->shell, FALSE); diff --git a/app/gui/layers-dialog.c b/app/gui/layers-dialog.c index 6d090050df..3668e4391c 100644 --- a/app/gui/layers-dialog.c +++ b/app/gui/layers-dialog.c @@ -3823,7 +3823,7 @@ layers_dialog_add_mask_query (Layer *layer) options->query_box = gimp_dialog_new (_("Add Mask Options"), "add_mask_options", gimp_standard_help_func, - "dialogs/layers/add_mask.html", + "dialogs/layers/add_layer_mask.html", GTK_WIN_POS_MOUSE, FALSE, TRUE, FALSE, diff --git a/app/gui/menus.c b/app/gui/menus.c index a933bf4379..0a4ec4142a 100644 --- a/app/gui/menus.c +++ b/app/gui/menus.c @@ -210,7 +210,7 @@ static GimpItemFactoryEntry image_entries[] = "file/dialogs/file_save.html", NULL }, { { N_("/File/Save As..."), NULL, file_save_as_cmd_callback, 0 }, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Revert"), NULL, file_revert_cmd_callback, 0 }, + { { N_("/File/Revert..."), NULL, file_revert_cmd_callback, 0 }, "file/revert.html", NULL }, { { "/File/---", NULL, NULL, 0, "" }, @@ -623,7 +623,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Layer Boundary Size..."), "R", layers_dialog_resize_layer_callback, 0 }, - "dialogs/resize_layer.html", NULL }, + "dialogs/layer_boundary_size.html", NULL }, { { N_("/Layer to Imagesize"), NULL, layers_dialog_resize_to_image_callback, 0 }, "layer_to_image_size.html", NULL }, { { N_("/Scale Layer..."), "S", layers_dialog_scale_layer_callback, 0 }, @@ -641,7 +641,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Add Layer Mask..."), NULL, layers_dialog_add_layer_mask_callback, 0 }, - "dialogs/add_mask.html", NULL }, + "dialogs/add_layer_mask.html", NULL }, { { N_("/Apply Layer Mask"), NULL, layers_dialog_apply_layer_mask_callback, 0 }, "apply_mask.html", NULL }, { { N_("/Delete Layer Mask"), NULL, layers_dialog_delete_layer_mask_callback, 0 }, @@ -1462,14 +1462,20 @@ menus_item_key_press (GtkWidget *widget, item_factory = (GtkItemFactory *) data; active_menu_item = GTK_MENU_SHELL (widget)->active_menu_item; - /* first, check if the user tries to assign a shortcut to the help - * menu items and ignore it... + /* first, get the help page from the item */ if (active_menu_item) { help_page = (gchar *) gtk_object_get_data (GTK_OBJECT (active_menu_item), "help_page"); + } + /* For any key except F1, continue with the standard + * GtkItemFactory callback and assign a new shortcut, but don't + * assign a shortcut to the help menu entries... + */ + if (kevent->keyval != GDK_F1) + { if (help_page && *help_page && item_factory == toolbox_factory && @@ -1480,14 +1486,12 @@ menus_item_key_press (GtkWidget *widget, "key_press_event"); return TRUE; } + else + { + return FALSE; + } } - /* ...otherwise, for any key except F1, continue with the standard - * GtkItemFactory callback and assign a new shortcut... - */ - if (kevent->keyval != GDK_F1) - return FALSE; - /* ...finally, if F1 was pressed over any menu, show it's help page... */ gtk_signal_emit_stop_by_name (GTK_OBJECT (widget), "key_press_event"); diff --git a/app/gui/paths-dialog.c b/app/gui/paths-dialog.c index 52ef863e3c..c4f01e65b0 100644 --- a/app/gui/paths-dialog.c +++ b/app/gui/paths-dialog.c @@ -984,7 +984,7 @@ paths_dialog_edit_path_query (GtkWidget *widget) qbox = gimp_query_string_box (_("Edit Path Attributes"), gimp_standard_help_func, - "paths/dialogs/rename_path.html", + "paths/dialogs/edit_path_attributes.html", _("Enter a new name for the path"), text, NULL, NULL, diff --git a/app/gui/preferences-dialog.c b/app/gui/preferences-dialog.c index db265b5e7d..7d09ea1df0 100644 --- a/app/gui/preferences-dialog.c +++ b/app/gui/preferences-dialog.c @@ -1671,7 +1671,7 @@ prefs_cmd_callback (GtkWidget *widget, _("Default Comment"), GTK_CTREE (ctree), _("Default Comment"), - "dialogs/preferences/default_comment.html", + "dialogs/preferences/new_file.html#default_comment", top_insert, &child_insert, page_index); diff --git a/app/gui/resize-dialog.c b/app/gui/resize-dialog.c index e6465fca73..358b175f78 100644 --- a/app/gui/resize-dialog.c +++ b/app/gui/resize-dialog.c @@ -193,12 +193,12 @@ resize_widget_new (ResizeType type, case ResizeLayer: wmclass = "resize_layer"; window_title = _("Set Layer Boundary Size"); - help_page = "layers/dialogs/resize_layer.html"; + help_page = "layers/dialogs/layer_boundary_size.html"; break; case ResizeImage: wmclass = "resize_image"; window_title = _("Set Canvas Size"); - help_page = "dialogs/resize_image.html"; + help_page = "dialogs/set_canvas_size.html"; break; } frame = gtk_frame_new (_("Size")); @@ -215,7 +215,7 @@ resize_widget_new (ResizeType type, user_data, NULL, NULL, TRUE, FALSE, _("Reset"), reset_callback, - resize, NULL, NULL, FALSE, TRUE, + resize, NULL, NULL, FALSE, FALSE, _("Cancel"), cancel_cb ? cancel_cb : gtk_widget_destroy, cancel_cb ? user_data : NULL, diff --git a/app/layers_dialog.c b/app/layers_dialog.c index 6d090050df..3668e4391c 100644 --- a/app/layers_dialog.c +++ b/app/layers_dialog.c @@ -3823,7 +3823,7 @@ layers_dialog_add_mask_query (Layer *layer) options->query_box = gimp_dialog_new (_("Add Mask Options"), "add_mask_options", gimp_standard_help_func, - "dialogs/layers/add_mask.html", + "dialogs/layers/add_layer_mask.html", GTK_WIN_POS_MOUSE, FALSE, TRUE, FALSE, diff --git a/app/menus.c b/app/menus.c index a933bf4379..0a4ec4142a 100644 --- a/app/menus.c +++ b/app/menus.c @@ -210,7 +210,7 @@ static GimpItemFactoryEntry image_entries[] = "file/dialogs/file_save.html", NULL }, { { N_("/File/Save As..."), NULL, file_save_as_cmd_callback, 0 }, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Revert"), NULL, file_revert_cmd_callback, 0 }, + { { N_("/File/Revert..."), NULL, file_revert_cmd_callback, 0 }, "file/revert.html", NULL }, { { "/File/---", NULL, NULL, 0, "" }, @@ -623,7 +623,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Layer Boundary Size..."), "R", layers_dialog_resize_layer_callback, 0 }, - "dialogs/resize_layer.html", NULL }, + "dialogs/layer_boundary_size.html", NULL }, { { N_("/Layer to Imagesize"), NULL, layers_dialog_resize_to_image_callback, 0 }, "layer_to_image_size.html", NULL }, { { N_("/Scale Layer..."), "S", layers_dialog_scale_layer_callback, 0 }, @@ -641,7 +641,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Add Layer Mask..."), NULL, layers_dialog_add_layer_mask_callback, 0 }, - "dialogs/add_mask.html", NULL }, + "dialogs/add_layer_mask.html", NULL }, { { N_("/Apply Layer Mask"), NULL, layers_dialog_apply_layer_mask_callback, 0 }, "apply_mask.html", NULL }, { { N_("/Delete Layer Mask"), NULL, layers_dialog_delete_layer_mask_callback, 0 }, @@ -1462,14 +1462,20 @@ menus_item_key_press (GtkWidget *widget, item_factory = (GtkItemFactory *) data; active_menu_item = GTK_MENU_SHELL (widget)->active_menu_item; - /* first, check if the user tries to assign a shortcut to the help - * menu items and ignore it... + /* first, get the help page from the item */ if (active_menu_item) { help_page = (gchar *) gtk_object_get_data (GTK_OBJECT (active_menu_item), "help_page"); + } + /* For any key except F1, continue with the standard + * GtkItemFactory callback and assign a new shortcut, but don't + * assign a shortcut to the help menu entries... + */ + if (kevent->keyval != GDK_F1) + { if (help_page && *help_page && item_factory == toolbox_factory && @@ -1480,14 +1486,12 @@ menus_item_key_press (GtkWidget *widget, "key_press_event"); return TRUE; } + else + { + return FALSE; + } } - /* ...otherwise, for any key except F1, continue with the standard - * GtkItemFactory callback and assign a new shortcut... - */ - if (kevent->keyval != GDK_F1) - return FALSE; - /* ...finally, if F1 was pressed over any menu, show it's help page... */ gtk_signal_emit_stop_by_name (GTK_OBJECT (widget), "key_press_event"); diff --git a/app/menus/menus.c b/app/menus/menus.c index a933bf4379..0a4ec4142a 100644 --- a/app/menus/menus.c +++ b/app/menus/menus.c @@ -210,7 +210,7 @@ static GimpItemFactoryEntry image_entries[] = "file/dialogs/file_save.html", NULL }, { { N_("/File/Save As..."), NULL, file_save_as_cmd_callback, 0 }, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Revert"), NULL, file_revert_cmd_callback, 0 }, + { { N_("/File/Revert..."), NULL, file_revert_cmd_callback, 0 }, "file/revert.html", NULL }, { { "/File/---", NULL, NULL, 0, "" }, @@ -623,7 +623,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Layer Boundary Size..."), "R", layers_dialog_resize_layer_callback, 0 }, - "dialogs/resize_layer.html", NULL }, + "dialogs/layer_boundary_size.html", NULL }, { { N_("/Layer to Imagesize"), NULL, layers_dialog_resize_to_image_callback, 0 }, "layer_to_image_size.html", NULL }, { { N_("/Scale Layer..."), "S", layers_dialog_scale_layer_callback, 0 }, @@ -641,7 +641,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Add Layer Mask..."), NULL, layers_dialog_add_layer_mask_callback, 0 }, - "dialogs/add_mask.html", NULL }, + "dialogs/add_layer_mask.html", NULL }, { { N_("/Apply Layer Mask"), NULL, layers_dialog_apply_layer_mask_callback, 0 }, "apply_mask.html", NULL }, { { N_("/Delete Layer Mask"), NULL, layers_dialog_delete_layer_mask_callback, 0 }, @@ -1462,14 +1462,20 @@ menus_item_key_press (GtkWidget *widget, item_factory = (GtkItemFactory *) data; active_menu_item = GTK_MENU_SHELL (widget)->active_menu_item; - /* first, check if the user tries to assign a shortcut to the help - * menu items and ignore it... + /* first, get the help page from the item */ if (active_menu_item) { help_page = (gchar *) gtk_object_get_data (GTK_OBJECT (active_menu_item), "help_page"); + } + /* For any key except F1, continue with the standard + * GtkItemFactory callback and assign a new shortcut, but don't + * assign a shortcut to the help menu entries... + */ + if (kevent->keyval != GDK_F1) + { if (help_page && *help_page && item_factory == toolbox_factory && @@ -1480,14 +1486,12 @@ menus_item_key_press (GtkWidget *widget, "key_press_event"); return TRUE; } + else + { + return FALSE; + } } - /* ...otherwise, for any key except F1, continue with the standard - * GtkItemFactory callback and assign a new shortcut... - */ - if (kevent->keyval != GDK_F1) - return FALSE; - /* ...finally, if F1 was pressed over any menu, show it's help page... */ gtk_signal_emit_stop_by_name (GTK_OBJECT (widget), "key_press_event"); diff --git a/app/paths_dialog.c b/app/paths_dialog.c index 52ef863e3c..c4f01e65b0 100644 --- a/app/paths_dialog.c +++ b/app/paths_dialog.c @@ -984,7 +984,7 @@ paths_dialog_edit_path_query (GtkWidget *widget) qbox = gimp_query_string_box (_("Edit Path Attributes"), gimp_standard_help_func, - "paths/dialogs/rename_path.html", + "paths/dialogs/edit_path_attributes.html", _("Enter a new name for the path"), text, NULL, NULL, diff --git a/app/preferences_dialog.c b/app/preferences_dialog.c index db265b5e7d..7d09ea1df0 100644 --- a/app/preferences_dialog.c +++ b/app/preferences_dialog.c @@ -1671,7 +1671,7 @@ prefs_cmd_callback (GtkWidget *widget, _("Default Comment"), GTK_CTREE (ctree), _("Default Comment"), - "dialogs/preferences/default_comment.html", + "dialogs/preferences/new_file.html#default_comment", top_insert, &child_insert, page_index); diff --git a/app/resize.c b/app/resize.c index e6465fca73..358b175f78 100644 --- a/app/resize.c +++ b/app/resize.c @@ -193,12 +193,12 @@ resize_widget_new (ResizeType type, case ResizeLayer: wmclass = "resize_layer"; window_title = _("Set Layer Boundary Size"); - help_page = "layers/dialogs/resize_layer.html"; + help_page = "layers/dialogs/layer_boundary_size.html"; break; case ResizeImage: wmclass = "resize_image"; window_title = _("Set Canvas Size"); - help_page = "dialogs/resize_image.html"; + help_page = "dialogs/set_canvas_size.html"; break; } frame = gtk_frame_new (_("Size")); @@ -215,7 +215,7 @@ resize_widget_new (ResizeType type, user_data, NULL, NULL, TRUE, FALSE, _("Reset"), reset_callback, - resize, NULL, NULL, FALSE, TRUE, + resize, NULL, NULL, FALSE, FALSE, _("Cancel"), cancel_cb ? cancel_cb : gtk_widget_destroy, cancel_cb ? user_data : NULL, diff --git a/app/widgets/gimpgradienteditor.c b/app/widgets/gimpgradienteditor.c index 8c4305f5b7..f1d07dbe47 100644 --- a/app/widgets/gimpgradienteditor.c +++ b/app/widgets/gimpgradienteditor.c @@ -907,7 +907,7 @@ gradient_editor_create (void) gtk_widget_show (button); button = ed_create_button (_("Save as POV-Ray"), - "dialogs/gradient_editor/save_as_pov_ray.html", + "dialogs/gradient_editor/save_as_povray.html", GTK_SIGNAL_FUNC (ed_save_pov_callback), NULL); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); @@ -1866,7 +1866,7 @@ ed_save_pov_callback (GtkWidget *widget, /* Connect the "F1" help key */ gimp_help_connect_help_accel (window, gimp_standard_help_func, - "dialogs/gradient_editor/save_as_pov_ray.html"); + "dialogs/gradient_editor/save_as_povray.html"); gtk_widget_show (window); gtk_widget_set_sensitive (g_editor->shell, FALSE); diff --git a/app/widgets/gimpitemfactory.c b/app/widgets/gimpitemfactory.c index a933bf4379..0a4ec4142a 100644 --- a/app/widgets/gimpitemfactory.c +++ b/app/widgets/gimpitemfactory.c @@ -210,7 +210,7 @@ static GimpItemFactoryEntry image_entries[] = "file/dialogs/file_save.html", NULL }, { { N_("/File/Save As..."), NULL, file_save_as_cmd_callback, 0 }, "file/dialogs/file_save.html", NULL }, - { { N_("/File/Revert"), NULL, file_revert_cmd_callback, 0 }, + { { N_("/File/Revert..."), NULL, file_revert_cmd_callback, 0 }, "file/revert.html", NULL }, { { "/File/---", NULL, NULL, 0, "" }, @@ -623,7 +623,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Layer Boundary Size..."), "R", layers_dialog_resize_layer_callback, 0 }, - "dialogs/resize_layer.html", NULL }, + "dialogs/layer_boundary_size.html", NULL }, { { N_("/Layer to Imagesize"), NULL, layers_dialog_resize_to_image_callback, 0 }, "layer_to_image_size.html", NULL }, { { N_("/Scale Layer..."), "S", layers_dialog_scale_layer_callback, 0 }, @@ -641,7 +641,7 @@ static GimpItemFactoryEntry layers_entries[] = { { "/---", NULL, NULL, 0, "" }, NULL, NULL }, { { N_("/Add Layer Mask..."), NULL, layers_dialog_add_layer_mask_callback, 0 }, - "dialogs/add_mask.html", NULL }, + "dialogs/add_layer_mask.html", NULL }, { { N_("/Apply Layer Mask"), NULL, layers_dialog_apply_layer_mask_callback, 0 }, "apply_mask.html", NULL }, { { N_("/Delete Layer Mask"), NULL, layers_dialog_delete_layer_mask_callback, 0 }, @@ -1462,14 +1462,20 @@ menus_item_key_press (GtkWidget *widget, item_factory = (GtkItemFactory *) data; active_menu_item = GTK_MENU_SHELL (widget)->active_menu_item; - /* first, check if the user tries to assign a shortcut to the help - * menu items and ignore it... + /* first, get the help page from the item */ if (active_menu_item) { help_page = (gchar *) gtk_object_get_data (GTK_OBJECT (active_menu_item), "help_page"); + } + /* For any key except F1, continue with the standard + * GtkItemFactory callback and assign a new shortcut, but don't + * assign a shortcut to the help menu entries... + */ + if (kevent->keyval != GDK_F1) + { if (help_page && *help_page && item_factory == toolbox_factory && @@ -1480,14 +1486,12 @@ menus_item_key_press (GtkWidget *widget, "key_press_event"); return TRUE; } + else + { + return FALSE; + } } - /* ...otherwise, for any key except F1, continue with the standard - * GtkItemFactory callback and assign a new shortcut... - */ - if (kevent->keyval != GDK_F1) - return FALSE; - /* ...finally, if F1 was pressed over any menu, show it's help page... */ gtk_signal_emit_stop_by_name (GTK_OBJECT (widget), "key_press_event"); diff --git a/configure.in b/configure.in index bf0339d6d4..32d2231554 100644 --- a/configure.in +++ b/configure.in @@ -819,6 +819,7 @@ help/C/image/image/mode/Makefile help/C/image/image/transforms/Makefile help/C/image/select/Makefile help/C/image/view/Makefile +help/C/images/Makefile help/C/layers/Makefile help/C/layers/stack/Makefile help/C/open/Makefile diff --git a/help/C/Makefile.am b/help/C/Makefile.am index 875a8f56b3..30958cbe58 100644 --- a/help/C/Makefile.am +++ b/help/C/Makefile.am @@ -1,14 +1,24 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = dialogs tools layers channels paths toolbox image open save filters file +SUBDIRS = dialogs tools layers channels paths toolbox image images open save filters file helpdatadir = $(gimpdatadir)/help/C helpdata_DATA = \ - contents.html \ - index.html \ - welcome.html \ - modes.html + command_line.html \ + contents.html \ + file_formats.html \ + gimp_license.html \ + gimp_remote.html \ + gimptool.html \ + glossary.html \ + index.html \ + introduction.html \ + keyboard_shortcuts.html \ + ln7.html \ + main_interface.html \ + using_gimp.html \ + why_gimp.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/channels/channel_to_selection.html b/help/C/channels/channel_to_selection.html index 94b4cadf39..f06400178c 100644 --- a/help/C/channels/channel_to_selection.html +++ b/help/C/channels/channel_to_selection.html @@ -1,31 +1,139 @@ - - - - - Help Page for channel_to_selection - - - - - - - - - - - -
- channel_to_selection help page -
-

- Index

- (/channels/channel_to_selection.html)

- Sorry but the help file for channel_to_selection is not yet done. -

- /Karin & Olof -

-

- - - +Channel to Selection
GIMP User Manual
PrevChapter 6. ChannelsNext

Channel to Selection

Turns the mask of a custom channel into a selection based + on the intensity of its grayscale mask. +


PrevHomeNext
Duplicate ChannelUpDelete Channel
\ No newline at end of file diff --git a/help/C/channels/delete_channel.html b/help/C/channels/delete_channel.html index 3acaf06ca9..fc50f5af30 100644 --- a/help/C/channels/delete_channel.html +++ b/help/C/channels/delete_channel.html @@ -1,31 +1,155 @@ - - - - - Help Page for delete_channel - - - - - - - - - - - -
- delete_channel help page -
-

- Index

- (/channels/delete_channel.html)

- Sorry but the help file for delete_channel is not yet done. -

- /Karin & Olof -

-

- - - +Delete Channel
GIMP User Manual
PrevChapter 6. ChannelsNext

Delete Channel

Deletes the active channel. The channel below the deleted + channel will become the active channel. You can't delete a standard + Red, Green, or Blue channel. This is the same as clicking the + + + icon. +


PrevHomeNext
Channel to SelectionUpEdit Channel Attributes
\ No newline at end of file diff --git a/help/C/channels/duplicate_channel.html b/help/C/channels/duplicate_channel.html index bc89a35e50..f7882edcf4 100644 --- a/help/C/channels/duplicate_channel.html +++ b/help/C/channels/duplicate_channel.html @@ -1,31 +1,156 @@ - - - - - Help Page for duplicate_channel - - - - - - - - - - - -
- duplicate_channel help page -
-

- Index

- (/channels/duplicate_channel.html)

- Sorry but the help file for duplicate_channel is not yet done. -

- /Karin & Olof -

-

- - - +Duplicate Channel
GIMP User Manual
PrevChapter 6. ChannelsNext

Duplicate Channel

Creates a copy of the active channel and places it above + the copied channel. The new path will have "copy" + added to the name of the copied channel as its name. This function + is the same as clicking the + + + icon. +


PrevHomeNext
Lower ChannelUpChannel to Selection
\ No newline at end of file diff --git a/help/C/channels/index.html b/help/C/channels/index.html index 1f7ab9f477..4604925110 100644 --- a/help/C/channels/index.html +++ b/help/C/channels/index.html @@ -1,37 +1,209 @@ - - - - - Index for channels - - - - - - - - - - - -
- channels Index -
-

- (/channels/index.html)

- Top index

-

Topics in this directory:

- channel_to_selection
- channels
- delete_channel
- duplicate_channel
- lower_channel
- raise_channel
-

- /Karin & Olof -

-

- - - +Channels
GIMP User Manual
PrevNext


PrevHomeNext
Edit Layer Attributes The Channels Dialog
\ No newline at end of file diff --git a/help/C/channels/lower_channel.html b/help/C/channels/lower_channel.html index dc4b48a168..b2598bd3d5 100644 --- a/help/C/channels/lower_channel.html +++ b/help/C/channels/lower_channel.html @@ -1,31 +1,153 @@ - - - - - Help Page for lower_channel - - - - - - - - - - - -
- lower_channel help page -
-

- Index

- (/channels/lower_channel.html)

- Sorry but the help file for lower_channel is not yet done. -

- /Karin & Olof -

-

- - - +Lower Channel
GIMP User Manual
PrevChapter 6. ChannelsNext

Lower Channel

Channels are stacked on top of each of each other in the same way + as layers. You can lower them using this function. Channels can + also be lowered by dragging the channel down in the channels dialog, + or by using the + + + icons. +


PrevHomeNext
Raise ChannelUpDuplicate Channel
\ No newline at end of file diff --git a/help/C/channels/raise_channel.html b/help/C/channels/raise_channel.html index de1eb818ea..100a80a1da 100644 --- a/help/C/channels/raise_channel.html +++ b/help/C/channels/raise_channel.html @@ -1,31 +1,156 @@ - - - - - Help Page for raise_channel - - - - - - - - - - - -
- raise_channel help page -
-

- Index

- (/channels/raise_channel.html)

- Sorry but the help file for raise_channel is not yet done. -

- /Karin & Olof -

-

- - - +Raise Channel
GIMP User Manual
PrevChapter 6. ChannelsNext

Raise Channel

Channels are stacked on top of each of each other in the same way + as layers. You can raise them using this function. Channels can + also be raised by dragging the channel up in the channels dialog + or by using the + + + icons. +


PrevHomeNext
The New Channel DialogUpLower Channel
\ No newline at end of file diff --git a/help/C/command_line.html b/help/C/command_line.html new file mode 100644 index 0000000000..262d9d0fa7 --- /dev/null +++ b/help/C/command_line.html @@ -0,0 +1,435 @@ +Command Line Options
GIMP User Manual
PrevNext

Appendix B. Command Line Options

Table of Contents
GIMP
GIMP Tool
GIMP Remote

GIMP

When you launch GIMP, it will often be + from a graphical menu where you simply click on the + GIMP entry. This usually launches + GIMP in its default form without any + images loaded. If you launch GIMP from + a console, or edit the command used to launch it from the menu, + you can pass several options to it. These are in the format: + gimp [options ... ] [files ... ] +

GIMP Options

-h, --help

Displays a list of available options, and gives a terse + description of each one. +

-v, --version

Prints the version number of the installed + GIMP. +

-b, --batch <commands>

Runs GIMP in batch + (non-interactive) mode. Can someone explain how this + works please!! +

-g, --gimprc <gimprc>

Use an alternative gimprc + (GIMP settings file) instead of the + default which is usually located at + ~/gimp-1.1/gimprc. This is useful + where plug-in paths or machine specifications may be different. +

-n, --no-interface

Run without a user interface. +

-r, --restore-session

Attempt to restore a saved session. This will start + GIMP with the various dialogs + as they were in the saved state. +

--no-data

Start GIMP without loading + patterns, gradients, palettes and brushes. This + significantly reduces the startup time, and is often + useful when using GIMP in + non-interactive situations. +

--verbose

Prints startup messages to the console, showing all the + settings files which are parsed and the modules + loaded. This is often useful in debugging situations. +

--no-splash

Do not show the splash screen. This significantly + decreases the load time, although you will not see the + progress bar from the splash screen. This automatically + implies --verbose. +

--no-splash-image

Do not show the splash screen image as part of the splash + screen. Only shows text information in the splash + screen. The progress indicator is still visible. This + decreases GIMP's load time. +

--no-shm

Do not use shared memory between + GIMP and its plug-ins. Instead + of using shared memory, GIMP + will send data via pipe. This will result in slower + performance than using shared memory. +

--no-xshm

Do not use the X Shared Memory extension. If + GIMP is being displayed on a + remote X server, this probably needs to be enabled. It is + also useful for any X server that doesn't properly support + the X shared memory extension. This will result in slower + performance than with X shared memory enabled. +

--display <display>

Use the specified X display. +

--console-messages

Do not pop-up dialog boxes on errors or warning, print + them to the console instead. +

--debug-handlers

Enable debug handlers which turns on the stack trace prompt + for all signals, not just fatal ones. +

--system-gimprc <gimprc>

Use an alternate system-wide gimprc file. +

+


PrevHomeNext
Keyboard Shortcuts GIMP Tool
\ No newline at end of file diff --git a/help/C/contents.html b/help/C/contents.html index d71678accc..ff3f92ceb5 100644 --- a/help/C/contents.html +++ b/help/C/contents.html @@ -1,31 +1,2204 @@ - - - - - Help Page for contents - - - - - - - - - - - -
- contents help page -
-

- Index

- (/contents.html)

- Sorry but the help file for contents is not yet done. -

- /Karin & Olof -

-

- - - +GIMP User Manual

GIMP User Manual

Copyright © 2000 by The GIMP Documentation Team


Table of Contents
1. Introduction
What is GIMP?
A Brief List of Features and Capabilities
Platform Support
About the Help System
What Can GIMP Do For Me?
Image Editing
Video Editing
2. Using GIMP
Starting for the First Time
User Directory
Performance Tuning
Monitor Resolution
The Main Interface
The ToolBox
The Image Window
File Formats
Supported Formats
What Format Should I Use?
3. ToolBox
Toolbox Introduction
The ToolBox
Module Browser
Help Page for Help
Context Help
Tip of the Day
About Dialog
4. Image
Image Menu Introduction
The Image Window
Undo
Redo
Cut
Copy
Paste
Paste Into
Paste As New
Cut Named
Copy Named
Paste Named
Clear
Fill
Stroke
Invert Selection
Select All
Select None
Float Selection
Feather Selection
Additional Information
Sharpen Selection
Shrink Selection
Grow Selection
Border Selection
Save Selection to Channel
Zoom
Dot for Dot
Info Window
The General Tab
The Extended Tab
Additional Information
Navigation Window
Additional Information
Toggle Selection
Toggle Rulers
Toggle Statusbar
Toggle Guides
Snap to Guides
New View
Shrink Wrap
RGB
Grayscale
Indexed Mode
Palette Options
Dithering
Desaturate
Invert
Equalize
Offset
Set Canvas Size
Scale Image
Scale Layer Warning
Duplicate
5. Layers
What are Layers?
Using Layers
Layers Dialog
New Layer
Stack
Duplicate Layer
Anchor Layer
Delete Layer
Layer Boundary Size
General
The chain button
Layer to Image Size
Scale Layer
Merge Visible Layers
General
Merge Down
Flatten Image
Add Layer Mask
Apply Layer Mask
Delete Layer Mask
Layer Mask to Selection
Add Alpha Channel
Aplha to Selection
Edit Layer Attributes
General
6. Channels
Channels Introduction
The Channels Dialog
Selections and Channels
The New Channel Dialog
Raise Channel
Lower Channel
Duplicate Channel
Channel to Selection
Delete Channel
Edit Channel Attributes
7. Paths
Paths Introduction
The Paths Dialog
Control area:
Edit area:
Path area:
New Path
Duplicate Path
Path to Selection
Stroke Path
Delete Path
Copy Path
Paste Path
Export Path
Import Path
Edit Path Attributes
8. Tools
Tools Introduction
Tool Options Dialog
Airbrush
Bezier Selection
Blend
Brightness-Contrast
Bucket Fill
By Color Selection
Clone
Color Balance
Color Picker
Convolver
Crop
Curves
Dodge or Burn
Elliptical Selection
Eraser
Flip
Free-Hand Selection
Fuzzy Selection
Histogram
Hue-Saturation
Ink
Intelligent Scissors
Levels
Magnify
Measure
Move
Paintbrush
Bezier Selection
Pencil
Posterize
Rectangular Selection
Smudge
Text Tool
Threshold
Transform
Perspective Transform
Rotate
Scale
Shear
9. File
File Operations Introduction
New Image
Open File
File Save or Save + As
Revert Image
Last Opened
Close
Really Close
Quit
Really Quit
10. Open
Open Image Introduction
Open by Extension
11. Save
Save Image Introduction
Save by Extension
12. Dialogs
Dialogs Introduction
Layers, Channels and Paths Dialog
Additional Information
The Preferences Dialog
New File Settings
Image Size and Unit
Image Resolution and Resolution Unit
Default Image Type
Maximum Image Size
Summary
Default Comment
Interface Settings
General
Help System
Image Windows
Tool Options
Display Settings
Transparency Type
Check Size
Install Colormap
Colormap Cycling
Environment Settings
Conservative Memory Usage
Levels of Undo
Tile Cache Size
Interpolation Type
Try to Write a Thumbnail File
"File > Save" Saves the Image
Session Management
Monitor Resolution
Directories
General
The Brush Selection Dialog
Preview and Brush Information
Settings
Pixmap Brushes
Brush Editor
Settings
The Gradient Selection Dialog
Additional Information
Gradient Editor
The Popup Menu
Copy Gradient
Delete Gradient
New Gradient
Rename Gradient
Replicate Segment
Save as PovRay
Split Segments Uniformly
The Pattern Selection Dialog
Additional Information
The Color Palette Dialog
Additional Information
The Palette Editor
General
Delete Palette
Import Palette
General
Merge Palette
New Palette
Indexed Palette
Input Devices
The Device Status Dialog
The Document Index Dialog
The Error Console Dialog
The Display Filters Dialog
The Gamma Display Filter
The High Contrast Display Filter
Undo History
The Standard GIMP Color Selector
The GTK Color Selector
The Triangle Color Selector
The Watercolor Color Selector
Edit Qmask Attributes
13. Filters
Filters Introduction
Reshow Last
Repeat Last
Description for Apply Canvas Filter
Description of Apply Canvas Dialog
Blinds
Blur
BZ2
Cubism
The Cubism Dialog
FITS
GPB
GIMP Table Magic
IIR Gaussian Blur
RLE Gaussian Blur
GZ
HRZ
JPEG
MIFF
Oilify
Short description of The Oilify + Dialog
PAT
Pixelize
PNG
PNM
The Print Plugin
Adjust Color
PSD
PSP
Qbist
The Qbist dialog
Ripple
Scatter HSV
Semi Flatten
SGI
Sharpen
Shift
Sunras
TGA
TIFF
Tile
URL
Value Invert
WMF
XWD
A. Keyboard Shortcuts
B. Command Line Options
GIMP
GIMP Tool
GIMP Remote
C. GIMP License
Glossary

  Next
  Introduction
\ No newline at end of file diff --git a/help/C/dialogs/Makefile.am b/help/C/dialogs/Makefile.am index 56cbccb47c..0e06028f95 100644 --- a/help/C/dialogs/Makefile.am +++ b/help/C/dialogs/Makefile.am @@ -5,43 +5,44 @@ SUBDIRS = layers channels paths palette_editor gradient_editor display_filters c helpdatadir = $(gimpdatadir)/help/C/dialogs helpdata_DATA = \ - about.html \ - border_selection.html \ - brush_editor.html \ - brush_selection.html \ - convert_to_indexed.html \ - copy_named.html \ - cut_named.html \ - device_status.html \ - document_index.html \ - edit_qmask_attributes.html \ - error_console.html \ - feather_selection.html \ - file_new.html \ - file_open.html \ - file_save.html \ - gradient_selection.html \ - grow_selection.html \ - help.html \ - index.html \ - indexed_palette.html \ - info_window.html \ - input_devices.html \ - layers_and_channels.html \ - module_browser.html \ - navigation_window.html \ - offset.html \ - palette_selection.html \ - paste_named.html \ - pattern_selection.html \ - really_close.html \ - really_quit.html \ - scale_image.html \ - scale_layer_warn.html \ - set_canvas_size.html \ - shrink_selection.html \ - tip_of_the_day.html \ - tool_options.html \ + about.html \ + border_selection.html \ + brush_editor.html \ + brush_selection.html \ + convert_to_indexed.html \ + copy_named.html \ + cut_named.html \ + device_status.html \ + document_index.html \ + edit_qmask_attributes.html \ + error_console.html \ + feather_selection.html \ + file_new.html \ + file_open.html \ + file_save.html \ + gradient_selection.html \ + grow_selection.html \ + help.html \ + index.html \ + indexed_palette.html \ + info_window.html \ + input_devices.html \ + layers_and_channels.html \ + module_browser.html \ + navigation_window.html \ + offset.html \ + palette_selection.html \ + paste_named.html \ + pattern_selection.html \ + really_close.html \ + really_quit.html \ + revert_image.html \ + scale_image.html \ + scale_layer_warn.html \ + set_canvas_size.html \ + shrink_selection.html \ + tip_of_the_day.html \ + tool_options.html \ undo_history.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/about.html b/help/C/dialogs/about.html index cdc4309844..bedb19c2fb 100644 --- a/help/C/dialogs/about.html +++ b/help/C/dialogs/about.html @@ -1,24 +1,157 @@ - - - - - About Dialog - - - - - - - - - -
About - Dialog

-

- The About dialog shows which Gimp version that you are using and also in - a random order the people that have contributed to the Gimp project. - To clear the dialog, click anywhere on it. -

- Index -

- +About Dialog
GIMP User Manual
PrevChapter 3. ToolBoxNext

About Dialog

The About dialog shows which + GIMP version you are using and + also, in random order, the people who have contributed to the + GIMP project. To close the dialog, + click anywhere on it. +


PrevHomeNext
Tip of the DayUpImage
\ No newline at end of file diff --git a/help/C/dialogs/border_selection.html b/help/C/dialogs/border_selection.html index 0ee2d8dea8..4deaccef11 100644 --- a/help/C/dialogs/border_selection.html +++ b/help/C/dialogs/border_selection.html @@ -1,23 +1,153 @@ - - - - - Border - - - - - - - - - -
Border

-

- Border creates a new selection surrounding the outline of the old one. The - new selection is a hollow border area or frame that covers an area both outside - and inside the original selection edge. -

- Index -

- +Border Selection
GIMP User Manual
PrevChapter 4. ImageNext

Border Selection

Border creates a new selection surrounding + the outline of the old one. The new selection is a hollow border + area or frame in the specified width that covers an area both + outside and inside the original selection edge . +


PrevHomeNext
Grow SelectionUpSave Selection to Channel
\ No newline at end of file diff --git a/help/C/dialogs/brush_editor.html b/help/C/dialogs/brush_editor.html index 20d974245f..622ba807fa 100644 --- a/help/C/dialogs/brush_editor.html +++ b/help/C/dialogs/brush_editor.html @@ -1,52 +1,254 @@ - - - - - Brush Editor - - - - - - - - - -
Brush - Editor

-

- The Brush Editor dialog allows you to make alterations to brushes. -At the top of the dialog, you can see the name of the brush (a new -brush will be called "Untitled"). This name can be edited to change the -brush name. If you choose a name which is the same as another brush, -Gimp will suffix "#x" (where x is a number). -

- Below the title, you can see a preview of how the final brush will -look. If you resize the brush to a size larger than the preview area, -the preveiw will be scaled, and the scale factor shown below it as a -ratio, such as 2:1 for 50% zoomed out. -

- Settings -

- The remainder of the dialog controls how the brush will be look. -The Radius controls the distance from the center of the brush to the -furthest edge in pixels. The radius of a brush is 100 pixels. -

- The Hardness slider controls how much the brush fades towards it's -edges. A value closer to 1 will give a sharp edge, and closer to 0 will -give a fuzzy, blured effect. -

- The Aspect Ratio defines the diameter vertical as a ratio against the -horizontal diameter. A value of 1.0 will give a round brush since this -means that the horizontal diameter is 1x the vertical. The maximum -value is 20, where the horizontal diameter is 20x the vertical, which -gives a very squashed eliptical brush. -

- The final setting is Angle which is used when the aspect ratio is -more than 1.0. The angle can be between 0 and 180 degrees, which works -in an anti-clockwise direction. -

- Index -

- - + Brush Editor
GIMP User Manual
PrevChapter 12. DialogsNext

Brush Editor

The Brush Editor dialog allows you to make + alterations to brushes. At the top of the dialog, you can see the + name of the brush (a new brush will be called + Untitled). This name can be edited to change + the brush name. If you choose a name which is the same as another + brush, GIMP will suffix the name with + #x.[1] +

Below the title, you can see a preview of the final brush. If you + size the brush to a size larger than the preview + area, the preview will be scaled and the scale factor shown below + it as a ratio, such as 2:1 for 50% zoomed out. +

Settings

The remainder of the dialog controls how the brush will look. + The Radius controls the distance from the + center of the brush to the furthest edge in pixels. The maximum + radius of a brush is 100 pixels. +

The Hardness slider controls how much the + brush fades towards its edges. A value closer to 1 will give a + sharp edge and closer to 0 will give a fuzzy, blurred effect. +

The Aspect Ratio defines the vertical + diameter in a ratio to the horizontal diameter. A value of 1.0 + will give a round brush since this means that the horizontal + diameter is the same as the vertical. The maximum value is 20 + which gives a horizontal diameter twenty times larger than the + vertical, resulting in a very squashed, elliptical brush. +

The final setting is Angle which is used + when the aspect ratio is more than 1.0. The angle can be between + 0 and 180 degrees, measured counterclockwise. +

Notes

[1]

where + x is a number.


PrevHomeNext
The Brush Selection DialogUpThe Gradient Selection Dialog
\ No newline at end of file diff --git a/help/C/dialogs/brush_selection.html b/help/C/dialogs/brush_selection.html index 7835af9098..164ee4d02e 100644 --- a/help/C/dialogs/brush_selection.html +++ b/help/C/dialogs/brush_selection.html @@ -1,103 +1,320 @@ - - - - - The Brush Selection Dialog - - - - - - - - - -
The Brush Selection - Dialog

-

- It's in this dialog you choose what brush you want to use, and the settings - you want to apply to the brush. The dialog displays all the available brushes. - You may also notice some unusual brushes, like colored brushes (pixmap brushes), - brushes with a red triangle in the right corner a so called "Image House" - brush , brushes with artistic text, little flourishes or doodles, etc. -

- All of those brushes are relatively easy to create in Gimp and save them - in the appropriate format. Gimp also provides you with a brush editor - where you can create and edit brushes (you can only edit brushes that are - created in the brush editor). -

- Preview and Brush Information -

-

- You will see that some of the brushes in the dialog has a little + sign. - The + sign is indicating that the brush preview is scaled to fit, i.e. the - brush is larger in reality. To view the real size of the brush, click and - hold on the brush square and the real size brush will appear (and disappear - when you release the mouse). -

- When you choose a brush the name and the size of the brush will appear in - the brush dialog. The brush size is measured in pixels. -

- Settings -

-

- Spacing is the distance between your brush marks. If you set the spacing - to 100 the brushmarks will be like a bead of pearls. If you set the spacing - to zero, the brushmarks will create a solid, brush-shaped line. If the spacing - is higher than 100 the brushmarks will form a dotted line. Note: It is mostly - not useful to set the spacing to zero since the brush (most notably fuzzy - ones) will look unnatural. -

- Pixmap Brushes -

-

- Pixmap brushes are small images (with or without color) that can be used - as a brush. Since the brush is a image you can't alter it's color, i.e the - color setting in the toolbox will not apply to this image. Note: That if - you use color as a pressure sensitivity when you paint you will be able to - change the color of the pixmap brush. For information how to create and save - a Pixmap Brush please see the Gimp Pixmap - Brush page. -

- Image Hose Brushes -

-

- The Image Hose brush is a specialized pixmap brush, you will notice that - the brush is a Image Hose by the little red triangle in the bottom right - corner. The difference between a Pixmap brush and a Image Hose is that the - Image Hose contains one or several Pixmap brushes. -

- The preview of an Image Hose is also a bit special, since an Image hose is - built up of several Pixmap brushes you will see all brushes displayed as - a small animation when you invoke the preview function (press and hold on - the brush preview). -

- Since the Image Hose is built up of several Pixmap brushes there are functions - to control which of the brushes you will paint with. The functions are - incremental, angular, random, velocity, pressure, xtilt and ytilt. To give - you an idea say that the Image Hose is built up of several arrows and has - angular as control function. Then you will be able to paint arrows that follows - your movements when you draw. Note: That you can't edit those function they - are built into the Image Hose brush file when it was created. For further - explanation of how to create Image Hoses please see the - Gimp Pixmap Brush page. -

- New, Edit and Delete Brushes -

-

- You can create new brushes by clicking on the new button. This will bring - up the Brush Editor dialog where - you can create your brush. You can edit brushes created in the brush dialog, - invoking edit on brush of that type will once again bring up the Brush Editor - dialog where you can alter your brush. Naturally you can also delete brushes - created in the Brush Editor, just click on Delete and they will vanish. -

- Additional Information -

-

- Default Keyboard Shortcut: Ctrl+Shift+B -

- Index -

- +The Brush Selection Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Brush Selection Dialog

In this dialog you choose what brush you want to use + and the settings you + want to apply to the brush. The dialog displays all the available + brushes. You may also notice some of + GIMP's special + features like colored brushes (pixmap brushes), brushes with a red + triangle in the right corner (so-called "Image Hose" + brushes), brushes with artistic text, little flourishes and + doodles, etc. +

All of those brushes are relatively easy to create in + GIMP and save in the appropriate + format. GIMP also provides you with a + brush editor + where you can create and edit brushes. [1] +

Preview and Brush Information

You will see that some of the brushes in the dialog have a + little + sign. The + sign + is indicating that the brush preview is scaled to fit the space. + To view the real size of the brush, click and hold on the + brush square and the real size brush will + appear (and disappear when you release the mouse). +

When you choose a brush, the name and the size of the brush will + appear in the brush dialog. The brush + size is measured in pixels. +

Settings

Spacing is the distance between your brush + marks. If you set the spacing to 100, the brushmarks will be + like a string of pearls. If you set the spacing to zero, the + brushmarks will create a solid, brush-shaped line. If the + spacing is higher than 100, the brushmarks will form a dotted + line. +

Pixmap Brushes

Pixmap brushes are small images that can be used as a brush. + Since the brush is an image, you can't alter its color. The + color setting in the toolbox will not apply to this image. +

If you use color as a pressure sensitivity when you paint + you will be able to change the color of the pixmap brush. + For information on how to create and save a Pixmap Brush + please see the GIMP Pixmap Brush page. +

+

Notes

[1]

you can + only edit brushes that are created in the brush + editor


PrevHomeNext
DirectoriesUpBrush Editor
\ No newline at end of file diff --git a/help/C/dialogs/channels/Makefile.am b/help/C/dialogs/channels/Makefile.am index ee36289b66..ff6e209b6d 100644 --- a/help/C/dialogs/channels/Makefile.am +++ b/help/C/dialogs/channels/Makefile.am @@ -3,9 +3,8 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/channels helpdata_DATA = \ - channels.html \ - edit_channel_attributes.html \ - index.html \ + channels.html \ + edit_channel_attributes.html \ new_channel.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/channels/channels.html b/help/C/dialogs/channels/channels.html index cafdeda634..83e09defa5 100644 --- a/help/C/dialogs/channels/channels.html +++ b/help/C/dialogs/channels/channels.html @@ -1,69 +1,279 @@ - - - - - The Channels Dialog - - - - - - - - - -
The Channels - Dialog

-

- The Channels tab displays the three RGB channels, showing the current red, - green or blue color values of each pixel in your image. The RGB channel - thumbnails are grayscale representations of each color channel, where white - represents 100% color, and black represents no color. -

- The RGB channels each have an eye icon, so you can look at your image in - a single color channel. Click off the eye icon in the Blue and Green channels, - so that only the Red channel is visible. Bright red in the red channel is - the equivalent of a maximum red value for that pixel; black means that the - pixel has no red at all in it. If all three channels have maximum values - for an area, that area is white. -

- The RGB channels are always active when a layer is active, and they display - the color values of all visible layers, not just the active one. Unlike layers, - the RGB channels can all be active at the same time.You can also choose to - work in one or two specific color channels, by clicking on the appropriate - channels to activate the ones you want and deactivate the ones you don't - want. -

- You can create new channels by clicking the on the new button. This will - bring up the New Channel dialog where you - can set name, color and fill amount of the new channel. If you want to alter - the values later on you just dubbel click on the channel which will bring - up the Edit Channel Attributes - dialog. Normally you don't work with extra channels but they can be very - handy to create and store selections within. -

- If you right click on the layer name you will be able to access the layer - menu, with in the layer menu you have access to several other layer commands, - see Index. -

- An experienced user can also use them to crate patterns and to create advanced - colored images with. The channel stack tools are more or less only useful - when you work with those kind of images. -

- Selections and Channels -

-

- You are able to store a selection as a channel with the - right-click|Select|Save - To Channel command. If you do so a new channel will be created, - and in that channel you can paint, and erase etc. When you have altered your - channel you can turn it into a selection again. To turn it into a selection - you just click on the - Channel To Selection - button. This is a very convenient way to alter selections and not to talk - about store several selections. In fact you can create selections from scratch - by creating a new channel, alter it and then apply Channel To Selection. -

- Index -

- +The Channels Dialog
GIMP User Manual
PrevChapter 6. ChannelsNext

The Channels Dialog

The Channels tab displays the three + RGB channels, showing the current red, green, or + blue color values of each pixel in your image. The + RGB channel thumbnails are grayscale + representations of each color channel with white representing 100% + color and black representing no color. +

The RGB channels each have an + eye icon, so you can look at your image in a + single color channel. Click off the eye icon in + the Blue and Green channels, so that only the Red channel is + visible. Bright red in the red channel is the equivalent of a + maximum red value for that pixel; black means that the pixel has + no red at all in it. You will see bright red for areas that are + white or bright red. If all three channels have maximum values + for an area, that area is white in the actual image. +

The RGB channels are always active when a layer + is active. They display the color values of all visible layers, + not just the active one. Unlike layers, the RGB + channels can all be active at the same time. You can also choose + to work in one or two specific color channels by clicking on the + appropriate channels to activate the ones you want and deactivate + the ones you don't want. +

You can create new channels by clicking the + New button. This will bring up the + New Channel + dialog where you can set name, color, and fill amount of the new + channel. If you want to alter the values later on, you just double + click on the channel which will bring up the + Edit Channel Attributes dialog. + Normally you don't work with extra channels, but they can be very + handy for creating and storing selections. +

If you right click on the layer name + you will be able to access the layer menu. In the layer menu you + have access to several other layer commands, see + Chapter 6. +

An experienced user can also use them to create patterns and + advanced colored images. The channel stack tools are more or less + only useful when you work with those kind of images. +

Selections and Channels

You are able to store a selection as a channel with the + rightclick Select + Save To Channel + command. This creates a new channel where you can paint, erase, + and perform any other drawing function. The altered channel can + be turned into a selection again by clicking on the + Channel To Selection button. + This is a very convenient way to alter selections and store + several selections. In fact, you can create selections from + scratch by creating a new channel, altering it, and then + applying Channel To Selection. +


PrevHomeNext
ChannelsUpThe New Channel Dialog
\ No newline at end of file diff --git a/help/C/dialogs/channels/edit_channel_attributes.html b/help/C/dialogs/channels/edit_channel_attributes.html index 79b1ccc9f7..0d7dd25e7d 100644 --- a/help/C/dialogs/channels/edit_channel_attributes.html +++ b/help/C/dialogs/channels/edit_channel_attributes.html @@ -1,27 +1,155 @@ - - - - - Edit Channel Attributes - - - - - - - - - -
Edit Channel - Attributes

-

- Allows you to alter the name, color and fill opacity of the channel. -

- The fill opacity is mainly useful if you want to set how much of the underlaying - image you want to see, when you work with channel that you later on will - turn into a selection. The advanced user will also use it to "control" ink - opacity when she works with e.g duotones. -

- Index -

- +Edit Channel Attributes
GIMP User Manual
PrevChapter 6. ChannelsNext

Edit Channel Attributes

Allows you to alter the name, color and fill opacity of the + channel. +

The fill opacity is useful for setting + how visible the underlying image is when you work with a channel + that will later be converted to a selection. The advanced user + will also use it to "control" ink opacity when he + works with things like duotones. +


PrevHomeNext
Delete ChannelUpPaths
\ No newline at end of file diff --git a/help/C/dialogs/channels/index.html b/help/C/dialogs/channels/index.html deleted file mode 100644 index 326d6ff80f..0000000000 --- a/help/C/dialogs/channels/index.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Index for channels - - - - - - - - - - - -
- channels Index -
-

- (/dialogs/channels/index.html)

- Top index

-

Topics in this directory:

- channels
- edit_channel_attributes
- new_channel
-

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/channels/new_channel.html b/help/C/dialogs/channels/new_channel.html index adf6cf37ac..7a3bde69a5 100644 --- a/help/C/dialogs/channels/new_channel.html +++ b/help/C/dialogs/channels/new_channel.html @@ -1,28 +1,193 @@ - - - - - The New Channel Dialog - - - - - - - - - -
The New Channel - Dialog

-

- Allows you to set the name, color and fill opacity of the channel you are - about to create. -

- The fill opacity is mainly useful if you want to set how much of the underlaying - image you want to see, when you work with channel that you later on will - turn into a selection. The advanced user will also use it to "control" ink - opacity when she works with e.g duotones. -

- Index -

- +The New Channel Dialog
GIMP User Manual
PrevChapter 6. ChannelsNext

The New Channel Dialog

Allows you to alter the name, color and fill opacity of the + new channel. +

The fill opacity is useful for setting + how visible the underlying image is when you work with a channel + that will later be converted to a selection. The advanced user + will also use it to "control" ink opacity when he + works with things like duotones. Also you have the opportunity + to set a color which the channel will use when it's active. +

The color field is a multifunction widget - doubleclicking + with your left mousebutton will + show the color selector and you can drag and drop colors + from any color field in GIMP on it. +

+


PrevHomeNext
The Channels DialogUpRaise Channel
\ No newline at end of file diff --git a/help/C/dialogs/color_selectors/Makefile.am b/help/C/dialogs/color_selectors/Makefile.am index 5565402a88..eece124500 100644 --- a/help/C/dialogs/color_selectors/Makefile.am +++ b/help/C/dialogs/color_selectors/Makefile.am @@ -3,10 +3,9 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/color_selectors helpdata_DATA = \ - built_in.html \ - gtk.html \ - index.html \ - triangle.html \ + built_in.html \ + gtk.html \ + triangle.html \ watercolor.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/color_selectors/built_in.html b/help/C/dialogs/color_selectors/built_in.html index bfc3087633..7ecd28bdd8 100644 --- a/help/C/dialogs/color_selectors/built_in.html +++ b/help/C/dialogs/color_selectors/built_in.html @@ -1,49 +1,226 @@ - - - - - - The Standard Gimp Color Selector - - - -

-The Standard Gimp Color Selector -

- -

-You can change the color manually by clicking on a hue in the spectrum color -field to the right, and then dragging the cross in the large color box on -the left to the exact color you want. If you want a specific RGB -(Red, Green, Blue) or HSV (Hue, Saturation, -Value) color, type the exact value in -the HSV or RGB parameter fields or drag the sliders to specify a -color. -

- -

-The H (hue) channel is displayed in the color fields by default when you -open the Color Selection dialog. However, you can choose to search in another -channel for the color you want. It can be very useful to change the channel -to S (saturation) or V (value) when you're searching for a specific color. The -color spectrum will be displayed in a quite different way by doing this and -you might find it more useful. -

- -

-In the bottom of the dialog you will find the current color specified as -a hexedecimal triplet. The function is targeted at Web developers - to -get the color -code into your HTML document simply select it and paste it in with your middle -mouse button. In Windows you must use Ctrl-C and Ctrl-V to achieve the same -result. -

- -

-Index -

- - - +The Standard GIMP Color Selector
GIMP User Manual
PrevChapter 12. DialogsNext

The Standard GIMP Color Selector

You can change the color manually by clicking on a hue in the + spectrum color field to the right, and then + dragging the cross in the large color box + on the left to the exact color you want. If you want a specific + RGB (Red, Green, Blue) or + HSV (Hue, Saturation, Value) color, type the + exact value in the HSV or + RGB parameter fields or drag the sliders to + specify a color. +

The H (hue) channel is displayed in the color + fields by default when you open the Color + Selection dialog. However, you can choose to search + in another channel for the color you want. It can be very useful + to change the channel to S (saturation) or + V (value) when you're searching for a specific + color. The color spectrum will be displayed in a quite different + way by doing this and you might find it more useful. +

In the bottom of the dialog you will find the current color + specified as a hexedecimal triplet. The function is targeted at + Web developers — to get the color code into your + HTML document simply select it and paste it in + with your middle mouse button. If you are + using GIMP for Windows you must use Ctrl+C + and Ctrl+V + to achieve the same result. +


PrevHomeNext
Undo HistoryUpThe GTK Color Selector
\ No newline at end of file diff --git a/help/C/dialogs/color_selectors/gtk.html b/help/C/dialogs/color_selectors/gtk.html index b9e5da1dfa..cef48bec3d 100644 --- a/help/C/dialogs/color_selectors/gtk.html +++ b/help/C/dialogs/color_selectors/gtk.html @@ -1,34 +1,170 @@ - - - - - - The GTK Color Selector - - - -

-The GTK Color Selector -

- -

-The GTK color selector is similar to Gimp's standard -color selector. The main difference is that you can't select in which color -space you want to work. The left color bar is always working -in value mode and you can alter the hue and saturation by dragging your -mouse in the circle. -

- -

-Another difference is that the RGB values are represented in percent instead -of values from 0 to 255. 100% (1.0) is 255 and 0% (0.0) is 0. The fact -is that you should see it as the amount of e.g. red that you want to mix into -your color. -

- -

-Index -

- - - \ No newline at end of file +The GTK Color Selector
GIMP User Manual
PrevChapter 12. DialogsNext

The GTK Color Selector

The GTK color selector is similar to + Gimp's standard color selector. + The main difference is that you can't select in which color space + you want to work. The left color bar is always working in value + mode and you can alter the hue and saturation by dragging your + mouse in the circle. +

Another difference is that the RGB values are + represented in percent instead of values from 0 to 255. 100% (1.0) + is 255 and 0% (0.0) is 0. The fact is that you should see it as + the amount of e.g. red that you want to mix into your color. +


PrevHomeNext
The Standard GIMP Color SelectorUpThe Triangle Color Selector
\ No newline at end of file diff --git a/help/C/dialogs/color_selectors/index.html b/help/C/dialogs/color_selectors/index.html deleted file mode 100644 index a763a1f6bc..0000000000 --- a/help/C/dialogs/color_selectors/index.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - Index for color selectors - - - - -

color selectors Index

- -

Top index

-

Topics in this directory:

-built in
-gtk
-triangle
-watercolor
- - diff --git a/help/C/dialogs/color_selectors/triangle.html b/help/C/dialogs/color_selectors/triangle.html index fba2762ce6..aea86469cf 100644 --- a/help/C/dialogs/color_selectors/triangle.html +++ b/help/C/dialogs/color_selectors/triangle.html @@ -1,28 +1,169 @@ - - - - - - The Triangle Color Selector - - - -

-The Triangle Color Selector -

- -

-The triangle color selector is one of the best color selectors in GIMP. -This is due to the fact that it allows you to visualize hue, value and -saturation simultaneously. You control the hue by dragging the -triangle around in the outer circle. When you have -selected your base color, you simply alter the value and saturation by -pressing and dragging inside the triangle color scale. - -

-Index -

- - - +The Triangle Color Selector
GIMP User Manual
PrevChapter 12. DialogsNext

The Triangle Color Selector

The triangle color selector is one of the + best color selectors in GIMP. This is + due to the fact that it allows you to visualize hue, value and + saturation simultaneously. You control the hue by dragging the + triangle around in the outer + circle. When you have selected your base color, you + simply alter the value and saturation by pressing and dragging + inside the triangle color scale. +


PrevHomeNext
The GTK Color SelectorUpThe Watercolor Color Selector
\ No newline at end of file diff --git a/help/C/dialogs/color_selectors/watercolor.html b/help/C/dialogs/color_selectors/watercolor.html index 77ae198d04..e20c1870ff 100644 --- a/help/C/dialogs/color_selectors/watercolor.html +++ b/help/C/dialogs/color_selectors/watercolor.html @@ -1,41 +1,173 @@ - - - - - - The Watercolor Color Selector - - - -

-The Watercolor Color Selector -

- -

-This color selector resembles the little water cup you use for -blending colors when you're making a watercolor painting. -

- -

-If you want to mix a color, simply move the mouse over the color scale -while pressing the left mouse button. If the color gets too dark you -just press the right mouse button to fade the color. You can also set -the pressure with which you collect the colors. Setting a low pressure -means you have to drag more to get a dark, highly saturated color, but -gives better control over the mixing. -

- -

-You can save ten colors in the dialog. If you want to save a color -that you have mixed, just press new and the color will appear in the -color array. Remember that you can only save ten colors. If you -already have ten colors and save a new color, the oldest one will be -replaced. -

- -

-Index -

- - - \ No newline at end of file +The Watercolor Color Selector
GIMP User Manual
PrevChapter 12. DialogsNext

The Watercolor Color Selector

This color selector resembles the little water cup you use for + blending colors when you're making a watercolor painting. +

If you want to mix a color, simply move the mouse over the color + scale while pressing the left mouse button. + If the color gets too dark you just press the + right mouse button to fade the color. You + can also set the pressure with which you collect the colors. + Setting a low pressure means you have to drag more to get a dark, + highly saturated color, but gives better control over the mixing. +

You can save ten colors in the dialog. If you want to save a color + that you have mixed, just press new and the + color will appear in the color array. Remember that you can only + save ten colors. If you already have ten colors and save a new + color, the oldest one will be replaced. +


PrevHomeNext
The Triangle Color SelectorUpEdit Qmask Attributes
\ No newline at end of file diff --git a/help/C/dialogs/convert_to_indexed.html b/help/C/dialogs/convert_to_indexed.html index 686cca5834..a61bdfe762 100644 --- a/help/C/dialogs/convert_to_indexed.html +++ b/help/C/dialogs/convert_to_indexed.html @@ -1,116 +1,438 @@ - - - - - Indexed Mode - - - - - - - - - -
Indexed - Mode

-

- This mode enables you to convert your RGB or Grayscale Image to an Indexed - image. An Indexed image is a image which only can have the colors specified - in it's color palette present in the image file. The maximum number of colors - in a Index image is 256. If you want to make e.g transparent GIF images then - you can only have a maximum of 255 colors since the last color (i.e color - number 256) will be used to determine if the pixel is opaque or transparent. -

- Palette Options -

-
-
-
- Generate optimal palette: -
- This is most of the time the best options to create a indexed image with. - Gimp will evaluate your colors and create a color palette suitable for the - image. You can specify the amount of colors that you want to have in your - index image but remember that you can't have more than 255 colors if are - about to create a index image with transparency. -
- Use custom palette: -
- If you want to use a predefined palette you have to use this option. You - have to choose your palette from the drop down menu, by default it's Web - palette. The Web palette is the palette used by e.g Netscape. This will help - you create web safe index images images (There is some debate if you should - index against the Web palette or not). -
-
- Custom Palette Options: -
- Remove unused colors from final palette: If the palette contains colors that - aren't used in the Index image you can remove those colors and make the image - file size smaller. This is a good option so keep it enabled. -
-
- Use black/white (1-bit) palette: -
- This option will create a "monochrome" image only built up of either black - or white pixels. -
-

- Dithering -

-

- An Index image can only be built up of a maximum of 256 colors. Most of the - time this is quite limited and you will not be able to have all the colors - in your image represented in this limited color space. The image will look - like it is built up of "bands" or "color areas". To make Index images look - better you can dither them. This means that you will mix two or several colors - to mimic the missing color. The disadvantage is that the image can look like - it's built up of "dots". -

-

-
- No color dithering: -
- Will disable dithering totally. -
- Positioned color dithering: -
- This is a option to use when you are dealing with animations (e.g gif - animations). The problem with dithering with e.g Floyd Steinberg dithering - in animations is that the dithering will not be constant. If you instead - use positioned dithering the dithering in constant areas will remain constant - across your frames. It is not as good as Floyd Steinberg dithering but is - better than no dithering at all. -
- Floyd Steinberg dithering color dithering (reduced color - bleeding): -
- When you use normal Floyd Steinberg dithering you will experience that the - colors will bleed to much . This is very visible when you index gradients, - the effect is that the gradient will look unnatural. If you encounter this - effect it's advisable to use this option (i.e Floyd Steinberg dithering reduced - colour bleeding). -
- Floyd Steinberg dithering (normal): -
- This is the best option to use when you are indexing images. It's only in - special cases that you will use the other dithering methods available. -
-
-
- Enable dithering of transparency: -
- Indexed images only have one transparency mode either it is off (the pixel - is totally solid) or on (the pixel is totally transparent). This makes it - very difficult to index images with smooth transitions from opaque to - transparent. When you enable dithering of transparency Gimp will try to mimic - the smooth transition by dithering pixels on and off. Note: A good alternative - to transparency dithering is the - Right-Click|Filters|Colors|Semi-Flatten - function. -
-

- Index -

- + Indexed Mode
GIMP User Manual
PrevChapter 4. ImageNext

Indexed Mode

This mode enables you to convert RGB or grayscale images + to indexed images. An indexed image is an image which only has the colors + specified in its color palette. The color palette is saved in the image + file. The maximum number of colors in an indexed image is 256. If you want + to make transparent GIF images, then you can only use a + maximum of 255 colors since the last color will be used to determine if the + pixel is opaque or transparent. +

Palette Options

Generate optimal palette

For the most part, this option is the best to use when + creating an indexed image. + GIMP will evaluate your colors and + create a color palette suitable for the image. You can + specify the number of colors that you want to have in your + indexed image, but remember that you can't have more than 255 + colors if are about to create an indexed image with + transparency. +

Use custom palette

If you want to use a predefined palette, you have to use + this option. You then choose your palette from the drop + down menu. By default it's Web + palette. The Web palette + is the palette used by web browsers such as + Netscape. This will help you + create web-safe indexed images. +

There is some debate over indexing against the + Web palette. +

+

Custom Palette Options

Remove unused colors from final palette + : If the palette contains colors that aren't + used in the indexed image, you can remove the extra colors + and make the image file size smaller. This is a good + option so keep it enabled. +

Use black/white (1-bit) palette +

This option will create a monochrome image only built up + of black and white pixels. +

Dithering

An indexed image can only be built up of a maximum of 256 + colors. Most of the time this is quite limiting and you will not + be able to have all the colors in your image represented in this + limited color space. The image might look like it is built up of + "bands" or "color areas". To make + indexed images look better, you can dither them. This means that + two or more colors are mixed to mimic the missing color. The + disadvantage is that the image can look like it's built up of + "dots". +

No color dithering

Will disable dithering totally. +

Positioned color dithering

Use this option when you are dealing with animations + such as GIF animations. The problem + with dithering in animations is that the dithering will + not be constant. If you choose positioned dithering + instead, the dithering in constant areas will remain + constant across your frames. It is not as good as + Floyd Steinberg dithering, but is + better than no dithering at all. +

Floyd Steinberg color dithering + (reduced color bleeding)

With normal Floyd Steinberg dithering, you may + experience too much color bleeding. This is very visible + when you index gradients, causing an unnatural look. If + you encounter this effect, it is advisable to use this + option (i.e Floyd Steinberg dithering reduced colour + bleeding). +

Floyd Steinberg dithering (normal) +

This is the best option to use when you are indexing + images. It's only in special cases that you will use the + other dithering methods available. +

Enable dithering of transparency +

Indexed images only have one transparency mode — either it + is off (the pixel is totally solid) or on (the pixel is + totally transparent). This makes it very difficult to + index images with smooth transitions from opaque to + transparent. When you enable dithering of transparency, + GIMP will try to mimic the + smooth transition by dithering pixels on and off. +

Note: A good alternative to transparency dithering + is the Rightclick-> + Filters -> + Colors -> + Semi-Flatten + function. +

+

+


PrevHomeNext
GrayscaleUpDesaturate
\ No newline at end of file diff --git a/help/C/dialogs/copy_named.html b/help/C/dialogs/copy_named.html index 367e64dee5..e9ceb02039 100644 --- a/help/C/dialogs/copy_named.html +++ b/help/C/dialogs/copy_named.html @@ -1,26 +1,168 @@ - - - - - Copy Named - - - - - - - - - -
Copy Named

-

- Lets you copy the current selection of the image to a named buffer. You can copy several - parts to different buffers by giving them different names. Later on you are - able to paste an elective buffer by invoking - Right-Click|Edit|Buffer|Paste - Named. If you don't specify a selection, the whole of -the current layer will by copied. -

- Index -

- + Copy Named
GIMP User Manual
PrevChapter 4. ImageNext

Copy Named

Lets you copy the current selection of the image to a named + buffer. You can copy several parts to different buffers by giving + them different names. Later on you are able to paste a buffer by + invoking Rightclick -> + Edit -> Buffer + -> Paste Named . If you + don't specify a selection, the entire active layer will be copied. +


PrevHomeNext
Cut NamedUpPaste Named
\ No newline at end of file diff --git a/help/C/dialogs/cut_named.html b/help/C/dialogs/cut_named.html index 3276cc698c..5526812bc8 100644 --- a/help/C/dialogs/cut_named.html +++ b/help/C/dialogs/cut_named.html @@ -1,26 +1,168 @@ - - - - - Cut Named - - - - - - - - - -
Cut Named

-

- Lets you cut the current selection to a named buffer. You can cut several parts - to different buffers by giving them different names. Later on you are able - to paste an elective buffer by invoking - Right-Click|Edit|Buffer|Paste - Named. If you don't specify a selection, the whole of -the current layer is cut. -

- Index -

- + Cut Named
GIMP User Manual
PrevChapter 4. ImageNext

Cut Named

Lets you cut the current selection to a named buffer. You can cut + several parts to different buffers by giving them different names. + Later on you are able to paste a selected buffer by invoking + Right-click + Edit -> Buffer + -> Paste Named . If you + don't specify a selection, the entire active layer is cut. +


PrevHomeNext
Paste As NewUpCopy Named
\ No newline at end of file diff --git a/help/C/dialogs/device_status.html b/help/C/dialogs/device_status.html index 6108d62dcb..4769d4ac31 100644 --- a/help/C/dialogs/device_status.html +++ b/help/C/dialogs/device_status.html @@ -1,34 +1,176 @@ - - - - - Device Status - - - - - - - - - -
The Device - Status Dialog

-

- The Device dialog will show you the status of your input devices. This is - (only) useful if you have a drawing tablet. If you do have then you will - be able to see and adjust what tool, color, brush, pattern and gradient you - have assigned to your different pens (i.e input devices). -

- To alter the context each device has you simply drag and drop brushes, tools - etc. with the middle mouse button from the respective dialog (e.g you drag - and drop tools from the tool box). -

- It can be very wise to set up a standard context for all your tools and save - it (and disable saving of device status on exit in the preference dialog). - By doing so you will always have the same settings of the tools each time - you start Gimp. -

- Index -

- +The Device Status Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Device Status Dialog

The Device dialog will show you the status + of your input devices. This is only useful if you have a drawing + tablet. If you do have one, then you will be able to see and + adjust what tool, color, brush, pattern and gradient you have + assigned to your different pens (i.e input devices). +

To alter the context each device has, you simply drag and drop + brushes, tools etc. with the middle + mouse button from the respective dialog (e.g you drag and drop + tools from the toolbox). +

It can be very wise to set up a standard context for all your + tools and save it (and disable saving of device status on exit in + the preference dialog). By doing so you + will always have the same settings of the tools each time you + start GIMP. +


PrevHomeNext
Input DevicesUpThe Document Index Dialog
\ No newline at end of file diff --git a/help/C/dialogs/display_filters/Makefile.am b/help/C/dialogs/display_filters/Makefile.am index a679b4f84e..32605c9d52 100644 --- a/help/C/dialogs/display_filters/Makefile.am +++ b/help/C/dialogs/display_filters/Makefile.am @@ -3,9 +3,9 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/display_filters helpdata_DATA = \ - display_filters.html \ - gamma.html \ - index.html + display_filters.html \ + gamma.html \ + highcontrast.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/display_filters/display_filters.html b/help/C/dialogs/display_filters/display_filters.html index 1b30449a79..42d725cbb6 100644 --- a/help/C/dialogs/display_filters/display_filters.html +++ b/help/C/dialogs/display_filters/display_filters.html @@ -1,28 +1,156 @@ - - - - - - The Display Filters Dialog - - - -

-The Display Filters Dialog -

- -

-Enables you to control Gimp color correction modules. On the right -side you have a list of available filters which you can add and there -by activate. The active filters will show up in the left list where -you can adjust the order of the currently active filters. If you mark -the filter and invoke Configure you can set options -specific to that filter. -

- -

-Index -

- - - \ No newline at end of file +The Display Filters Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Display Filters Dialog

Enables you to control GIMP color + correction modules. On the right side, is a list of available + filters which you can add and activate. The active + filters will show up in the left list where you can adjust the + order of the active filters. If you mark the filter and + invoke Configure you can set options + specific to that filter. +


PrevHomeNext
The Error Console DialogUpThe Gamma Display Filter
\ No newline at end of file diff --git a/help/C/dialogs/display_filters/gamma.html b/help/C/dialogs/display_filters/gamma.html index 6958ab31ae..fb3878d3dd 100644 --- a/help/C/dialogs/display_filters/gamma.html +++ b/help/C/dialogs/display_filters/gamma.html @@ -1,27 +1,152 @@ - - - - - - The Gamma Display Filter - - - -

-The Gamma Display Filter -

- -

-The gamma display filter allows you to configure the way GIMP displays -images so your monitor will display them in a method that, as much as -possible, is the same as how the images will appear when printed -out. The level of gamma can be configured in display -filters — the default value is 1.00. -

- -

-Index -

- - - \ No newline at end of file +The Gamma Display Filter
GIMP User Manual
PrevChapter 12. DialogsNext

The Gamma Display Filter

The gamma display filter allows you to configure the way + GIMP displays images so your monitor + will display them in a method that, as much as possible, is the + same as how the images will appear when printed out. The level of + gamma can be configured in display filters + — the default value is 1.00. +


PrevHomeNext
The Display Filters DialogUpThe High Contrast Display Filter
\ No newline at end of file diff --git a/help/C/dialogs/display_filters/highcontrast.html b/help/C/dialogs/display_filters/highcontrast.html new file mode 100644 index 0000000000..962b14ad5c --- /dev/null +++ b/help/C/dialogs/display_filters/highcontrast.html @@ -0,0 +1,139 @@ +The High Contrast Display Filter
GIMP User Manual
PrevChapter 12. DialogsNext

The High Contrast Display Filter

Sorry, but the help page for "The High Contrast Display Filter" + is not written yet. +


PrevHomeNext
The Gamma Display FilterUpUndo History
\ No newline at end of file diff --git a/help/C/dialogs/display_filters/index.html b/help/C/dialogs/display_filters/index.html deleted file mode 100644 index 16c87dea24..0000000000 --- a/help/C/dialogs/display_filters/index.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Index for display_filters - - - - - - - - - - - -
- display_filters Index -
-

- (/dialogs/display_filters/index.html)

- Top index

-

Topics in this directory:

- display_filters
- gamma
-

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/document_index.html b/help/C/dialogs/document_index.html index 7fad057e1e..25bfe3945e 100644 --- a/help/C/dialogs/document_index.html +++ b/help/C/dialogs/document_index.html @@ -1,27 +1,164 @@ - - - - - The Document Index Dialog - - - - - - - - - -
The Document - Index Dialog

-

- The document index dialog will enable you to see all previously opened images - in Gimp. -

- You can open a image by double clicking on the entry for it or by marking - it and click open. You are also able to sort the index by either moving the - position of a entry or removing it. -

- Index -

- +The Document Index Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Document Index Dialog

The document index dialog will enable you + to see all previously opened images in GIMP + . +

You can open an image by double clicking on the entry for it or by + marking it and clicking open. You are also + able to sort the index by moving the position of entries or + removing them. +


PrevHomeNext
The Device Status DialogUpThe Error Console Dialog
\ No newline at end of file diff --git a/help/C/dialogs/edit_qmask_attributes.html b/help/C/dialogs/edit_qmask_attributes.html index b564a04d6a..aaf9f64367 100644 --- a/help/C/dialogs/edit_qmask_attributes.html +++ b/help/C/dialogs/edit_qmask_attributes.html @@ -1,28 +1,155 @@ - - - - - Edit Qmask Attributes - - - - - - - - - -
The Edit Qmask - Attributes Dialog

-

- Allows you to alter the name, color and fill opacity of the quick mask channel. -

- The fill opacity is mainly useful if you want to set how much of the underlying - image you want to see, when you work with quick mask that you later on will - turn into a selection. If you set it to high you will not be able to see the - image that you are working with. Changing the color is most of the time only - useful if the image you are working with is mostly red. -

- Index -

- + Edit Qmask Attributes
GIMP User Manual
PrevChapter 12. DialogsNext

Edit Qmask Attributes

Allows you to alter the name, color, and fill opacity of the quick + mask channel. +

The fill opacity is used to set how much of + the underlying image is visible when you work with the quick mask. + If you set it too high, you will not be able to see the image + underneath. Use a color that allows a good visibility of the + underlying image (i.e. not red if it is a red image). +


PrevHomeNext
The Watercolor Color SelectorUpFilters
\ No newline at end of file diff --git a/help/C/dialogs/error_console.html b/help/C/dialogs/error_console.html index 75afe2a5cd..92bc7b1546 100644 --- a/help/C/dialogs/error_console.html +++ b/help/C/dialogs/error_console.html @@ -1,28 +1,188 @@ - - - - - Help Page for error_console - - - - - - - - - -
The Error Console - Dialog

-

- The error console will show internal Gimp - error messages. An example of such error is when Gimp fails to save or load - a image. -

- If you encounter a bug in Gimp it can be wise to open the error console and - try to reproduce the bug. If Gimp then produces any error messages you can - post that along with a bug description to the Gimp developers. -

- Index -

- +The Error Console Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Error Console Dialog

The error console will show internal + GIMP error messages. An example of + such an error is when GIMP fails to save + or load an image. +

If you encounter a bug in GIMP, it can + be wise to open the error console and try to reproduce the bug. If + GIMP then produces any error messages, + you can email <bugs@gimp.org> the message along with + a bug description to the GIMP + developers at <gimp-developer@scam.xcf.berkeley.edu>. +


PrevHomeNext
The Document Index DialogUpThe Display Filters Dialog
\ No newline at end of file diff --git a/help/C/dialogs/feather_selection.html b/help/C/dialogs/feather_selection.html index 8b063a71c1..30c7a12f12 100644 --- a/help/C/dialogs/feather_selection.html +++ b/help/C/dialogs/feather_selection.html @@ -1,32 +1,182 @@ - - - - - Feather Selection - - - - - - - - - -
Feather - Selection

-

- In the Feather dialog you select how much you want to feather the selection - by. -

- Feather produces a selection with fuzzy edges. In other words, a feathered - selection becomes more and more transparent until it reaches the edges of - the selection. Feather allows you to blend a color or image softly with the - background. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Shift+F -

- Index -

- + Feather Selection
GIMP User Manual
PrevChapter 4. ImageNext

Feather Selection

In the Feather dialog you select by how + much you want to feather the selection. +

Feather produces a selection with fuzzy + edges. In other words, when a selection is feathered, it becomes + more and more transparent until it reaches the edges of the + selection. Feather allows you to blend a color or image softly + into the background. +

Additional Information

Default Keyboard Shortcut: Ctrl-Shift- F +


PrevHomeNext
Float SelectionUpSharpen Selection
\ No newline at end of file diff --git a/help/C/dialogs/file_new.html b/help/C/dialogs/file_new.html index bc66a8ebaf..d947563028 100644 --- a/help/C/dialogs/file_new.html +++ b/help/C/dialogs/file_new.html @@ -1,66 +1,257 @@ - - - - - New Image - - - - - - - - - -
New Image

-

- File New will create a new Gimp image in either RGB (color) or Grayscale - mode. You can't create an Indexed image since you will not know which colors - your palette should have. Besides, working in Indexed mode is not a good choice - instead work in RGB and convert to Indexed just before saving the image. -

- How to create a new image: -

-

-
- Set the resolution: -
- The resolution is how many pixels per length unit you what your image to - built up with. The default 72ppi (72 pixels/inch) is good if you want to - create web graphics (you can alter the default value in the preferences dialog). - However if you going to print your image you will probably need a lot more - than 72ppi.
- You have several choices about how you want to measure the resolution pixels - per inch, mm, points or picas (there is also an option which will bring - up a dialog with even more choices). We suggest that you stick to ppi since - that the most common format when you are dealing with images.
- You can have different X and Y resolutions by unchecking the chain but that - is not recommended. -
- Set the size: -
- You have two options either you can set it directly in pixels in the - top frame or in a real world unit in the middle frame. If you are working - with web graphics we suggest that you deal with pixels directly. If you going - to print your image then setting in a real world unit is the preferred. -
- Set the mode/type of image: -
- Set the mode to either RGB or Grayscale -
- Set fill type: -
- Foreground takes the currently active foreground color from the toolbox
- Background take the currently active background color from the toolbox
- White sets the fill color to white no matter what the toolbox - color is
- Transparent prevents the image from filling instead you will get a - totally "empty" image to start with. -
-

- The Reset button resets all values their default values. OK creates a new - image. -

- Index -

- + New Image
GIMP User Manual
PrevChapter 9. FileNext

New Image

File New will create a new image in + either RGB (color) or grayscale mode. You can't + create an indexed image since GIMP will + not know which colors your palette should have. Working in indexed + mode is usually not a good choice. Instead work in + RGB and convert to indexed just before saving + the image. +

How to create a new image: + +

Set the resolution

The resolution is how many pixels per unit you want for + your image. The default 72dpi (72 pixels/inch) is good if + you want to create web graphics (you can alter the default + value in the preferences dialog). + However if you are going to print your image, you will + probably need a lot more than 72dpi. You have several + choices about how you want to measure the resolution + — pixels per inch, mm, points or picas (there is + also an option which will bring up a dialog with even more + choices). We suggest that you stick to ppi since that the + most common format when you are dealing with images. You + can have different X and Y resolutions by unlinking the + chain, but that is not recommended. +

Set the size

You have two options. Either you can set it directly in + pixels in the top frame or in a real world unit in the + middle frame. If you are working with web graphics we + suggest that you deal with pixels directly. If you are + going to print your image, then setting in a real world + unit is the preferred. +

Set the mode/type of image

Set the mode to either RGB or Grayscale +

Set fill type

Foreground takes the current + foreground color from the toolbox. + Background takes the current + background color from the toolbox. + White sets the fill color to white no matter what the + toolbox colors are. Transparent prevents the image from + filling. Instead you will get a totally + "empty" image to start. +

+

The Reset button resets all values to + their default values. OK creates a new image. +


PrevHomeNext
FileUpOpen File
\ No newline at end of file diff --git a/help/C/dialogs/file_open.html b/help/C/dialogs/file_open.html index 714138e5e1..4ec57004cb 100644 --- a/help/C/dialogs/file_open.html +++ b/help/C/dialogs/file_open.html @@ -1,46 +1,234 @@ - - - - - Open File - - - - - - - - - -
Open File

-

- Open dialog is where you can load images into the Gimp for viewing -or editing. The left hand window shows the directories and the right -hand side shows the files in the selected directory. To open a file, -select it in the files listing, then choose what file type it is - if -the file has an extension which defines it's filetype (such as .xcf) -you can select "Automatic" and Gimp will open the file in that format. -Alternatively, you can force Gimp to open the file as a specific format -by choosing one of the other options in the drop down list. -

- Some images have a preview associated with then so you can see what -the image is before opening it. This is particularly useful for larger -images, where opening the full image will take a while. If an image -doesn't have a preview, you can click "Generate Preview" to create on. -This preview image is stored in the a sub-directory of the current one, -called .xvpics. This preview image will be used in future when using -the open dialog. Clicking OK opens the image with the selected -settings, Cancel aborts. -

- A useful feature of the Load Image dialog is autocompletion of -filenames. Type the first few letters of the filename and pressing the -Tab key will complete as much of the filename as is uniquely defined by -what has already been typed. The side of the dialog will display all -files that match the letters in the selection box. You can then type -more letters and press Tab again to update the window. You -can load multiple images by pressing Shift key and clicking on each -file you want to open. -

- Index -

- + Open File
GIMP User Manual
PrevChapter 9. FileNext

Open File

Open dialog is where you can load images + into GIMP for viewing or editing. The + left hand window shows the directories and the right hand window + shows the files in the selected directory. To open a file, select + it in the files listing then choose the correct file type. If the + file has an extension which defines its filetype (such as .xcf) + you can select Automatic and + GIMP will open the file in that format. + Alternatively, you can force GIMP to + open the file as a specific format by choosing one of the other + options in the drop down list. +

Some images have a preview associated with them so you can see + what the image is before opening it. This is particularly useful + for larger images where opening the full image will take a while. + If an image doesn't have a preview, you can click + Generate Preview to create one. This + preview image is stored in a sub-directory of the current one + called .xvpics. This + preview image will be used in the future when using the + open dialog. Clicking + OK opens the image with the selected + settings; Cancel aborts. +

A useful feature of the Load Image dialog + is autocompletion of file names. Type the first few letters of the + file name and press the Tab key. + GIMP will then complete as much of the + file name as is uniquely defined by what has already been typed. + The right side of the dialog will display all files that match the + letters in the selection box. You can then type more letters and + press Tab again to update the window. +

You can load multiple images by pressing Shift + and clicking on each file you want to open. +


PrevHomeNext
New ImageUpFile Save or Save + As
\ No newline at end of file diff --git a/help/C/dialogs/file_save.html b/help/C/dialogs/file_save.html index 4e1952d978..7beedb6d58 100644 --- a/help/C/dialogs/file_save.html +++ b/help/C/dialogs/file_save.html @@ -1,45 +1,306 @@ - - - - - File Save or Save As - - - - - - - - - -
File Save or - Save As

-

- File save lets you save your file either by it's extension e.g save a file.xcf - as a a XCF image. The XCF file format is Gimps native file format and is - the preferred format to save all your images in. You can of course - save as e.g TIFF or JPEG but all the specific Gimp image information will - be lost (i.e the information about layers, channels, parasites, etc). -

- When you save a image in a non Gimp format (i.e not as a XCF or XJT image) - will get the opportunity to export it. By exporting it you will be sure of - getting all the visual image information saved in the non native format. - If you Ignore export then only the currently active layer will be saved. -

- The save dialog works like any other file dialogs but you also have two ways - to fast navigation. Tab completion, e.g if you have a directory /gimp and - the save dialog is currently with in the /home/gimp directly. Then you only - have to type /gi and hit tab and the name will be completed (It works - just like tab completion in bash or tchs sells in UNIX or if you have turned - it on as tab completion in the cms in NT). You also have a drop down directory - menu which will enable you to quickly move up in the directory hirarcy. -

- To even extend the opportunity you can create directories, delete and rename - files in the save dialog. Creating directories is very handy since often - end up doing a new image for a new project before you made a directory to - contain images for the project. However you must sometimes step up and down - once in the directory hierarcy before Gimp will be able to see the new directory. -

- Index -

- + File Save or Save + As
GIMP User Manual
PrevChapter 9. FileNext

File Save or Save + As

File Save lets you save your file either by + its extension e.g. save a + file.xcf as an + XCF image. The XCF file + format is GIMP's native file format + and is the preferred format to save all your images in. + +

You can of course save as TIFF, + JPEG, or one of the other available + formats, but all the specific GIMP + image information will be lost (i.e the information about + layers, channels, parasites, etc). +

+

When you save an image in a non-GIMP + format (i.e not as a XCF or + XJT image) you could be asked to export it. By + exporting it, you will be sure of getting all the visual image + information saved in the non-native format. (Exporting will, for + example, flatten an image to be saved as + .jpg) Ignoring the suggestion to export runs + the risk of losing valuable image information such as nonactive + layers. +

The save dialog works like any other file + dialog, but you also have two means of fast navigation. Tab + completion, if you have a directory /gimp and the + save dialog is currently with in the + /home/gimp directly. Then + you only have to type /gi and hit + TAB and the name will be completed (It works just + like TAB completion in + bash or tsh + shells in UNIX or if you have turned it on as TAB + completion in the cms in + NT). You also have a drop down + directory menu which will enable you to quickly move up in the + directory hierarchy. +

You can also create directories and delete or rename files in the + save dialog. Sometimes it is necessary to + step up and down once in the directory hierarchy before + GIMP will be able to see the new + directory. +


PrevHomeNext
Open FileUpRevert Image
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/Makefile.am b/help/C/dialogs/gradient_editor/Makefile.am index 260037068b..eafaae9f49 100644 --- a/help/C/dialogs/gradient_editor/Makefile.am +++ b/help/C/dialogs/gradient_editor/Makefile.am @@ -3,14 +3,13 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/gradient_editor helpdata_DATA = \ - copy_gradient.html \ - delete_gradient.html \ - gradient_editor.html \ - index.html \ - new_gradient.html \ - rename_gradient.html \ - replicate_segment.html \ - save_as_pov_ray.html \ + copy_gradient.html \ + delete_gradient.html \ + gradient_editor.html \ + new_gradient.html \ + rename_gradient.html \ + replicate_segment.html \ + save_as_povray.html \ split_segments_uniformly.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/gradient_editor/copy_gradient.html b/help/C/dialogs/gradient_editor/copy_gradient.html index 01868e0334..9c488f967c 100644 --- a/help/C/dialogs/gradient_editor/copy_gradient.html +++ b/help/C/dialogs/gradient_editor/copy_gradient.html @@ -1,23 +1,155 @@ - - - - - Copy Gradient - - - - - - - - - -
Copy - Gradient

-

- Lets you specify the name of the copy. The copy will be stored in your personal - Gimp gradient directory. -

- Index -

- + Copy Gradient
GIMP User Manual
PrevChapter 12. DialogsNext

Copy Gradient

Lets you specify the name of the copied gradient. The copy will + be stored in your personal GIMP + gradient directory. +


PrevHomeNext
Gradient EditorUpDelete Gradient
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/delete_gradient.html b/help/C/dialogs/gradient_editor/delete_gradient.html index f333882ccc..4e0fb262f4 100644 --- a/help/C/dialogs/gradient_editor/delete_gradient.html +++ b/help/C/dialogs/gradient_editor/delete_gradient.html @@ -1,27 +1,164 @@ - - - - - Delete Gradient - - - - - - - - - -
Delete - Gradient

-

- Confirmation dialog if you really want to delete the gradient. Remember that - you will some times will not delete the Gradient for real due to access rights. - But you better be sure (specially under Win32) otherwise you will not be - able to redo the delete. However if you due to permission rights not are - entitled to delete the Gradient for real it will be deleted for the rest - of your present Gimp Session and appear the next time you start Gimp. -

- Index -

- + Delete Gradient
GIMP User Manual
PrevChapter 12. DialogsNext

Delete Gradient

A confirmation dialog asks if you really want to delete the + gradient. Remember that sometimes you cannot actually delete the + gradient because you lack the necessary rights to the file. But + you better be sure (especially under + Win32) because you will not be able + to undo the delete. However, if you are not entitled to delete the + Gradient, it will be deleted from the rest of your present + GIMP Session and reappear the next time + you start GIMP. +


PrevHomeNext
Copy GradientUpNew Gradient
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/gradient_editor.html b/help/C/dialogs/gradient_editor/gradient_editor.html index 899a51182b..26b6ba1fff 100644 --- a/help/C/dialogs/gradient_editor/gradient_editor.html +++ b/help/C/dialogs/gradient_editor/gradient_editor.html @@ -1,88 +1,361 @@ - - - - - The Gradient Editor - - - - - - - - - -
The Gradient - Editor

-

- The Gradient Editor allows you to create or edit complex gradients that you - can use with e.g the blend tool. -

- You'll find a list of all available gradients under Gradients, and the currently - selected gradient can be seen in a preview window.   The buttons to - the right let you create, copy, delete, save and refresh gradients and save - as POV-Ray format. You can also zoom the gradient with the zoom buttons present - in the main dialog. -

- The triangles at the bottom of the gradient preview window are color section - markings. Two kinds of marks exist: black endpoints and white midpoints. - The area between two black points is called a segment. You select a segment - by clicking on it. A selected segment turns a darker shade of gray. Most - work that you do in the gradient editor will be about changing and editing - those segments in one way or another. -

- ° You can move an entire selection by clicking in the darker gray field - and dragging. -

- ° If you move a white midpoint and affect the color transition by dragging - it. -

- ° Dragging a black endpoint  will stretch the area between that - endpoint and the midpoint -

- ° If you click on an endpoint, then press Shift and drag, you will compress - or expand the entire selection. -

- ° You can extend or add to a selection by pressing the Shift key and - clicking on another segment. -

- Any of the described manipulations can be used on extended selections. -

- The Popup Menu -

-

- If you press the right mouse button in the gradient preview window, a menu - will appear for further editing of the selected segment. -

- You can edit the left or right color by invoking left or right endpoint color. - The Load from and Save to menu options allow you to load a color from an - RGBA channel to an endpoint,or to save a RGBA channel. -

- In the Blending function for segment submenu, you will find some functions - that control how the appearance of the gradient in your selection. -

- The coloring type for segment submenu lets you choose a color model for your - selection or segment. You can choose Plain RGB and two kinds of HSV. -

- The Segment commands will work on the selected segment. If you have selected - more than one segment, they will not be treated as a unit. -

- ° Split segment at midpoint: Puts an endpoint at the midpoint and then - divides the two new segments. -

- ° Split segment uniformly: Splits to a specified amount o f segments. -

- ° Delete segment: Deletes the entire selection. -

- ° Re-center segment's midpoint: Re-centers the midpoints -

- ° Re-distribute handles in segment: Evenly distributes all the points - in the segment. -

- The Selection operations submenu allows you to flip or replicate the segment - and also allows you to blend the endpoints' colors and/or -opacity. -

- Index -

- + Gradient Editor
GIMP User Manual
PrevChapter 12. DialogsNext

Gradient Editor

The Gradient Editor allows you to create or + edit complex gradients that you can use with, for example, the + blend tool. +

You'll find a list of all available gradients under + Gradients, and the currently selected + gradient can be seen in a preview window. The buttons to the right + let you create, + copy, delete, + save, refresh + gradients and save as POV-Ray + format. You can also zoom the gradient with the zoom buttons + present in the main dialog. +

The triangles at the bottom of the gradient + preview window are color section markings. Two kinds of marks + exist: black endpoints and white midpoints. The area between two + black points is called a segment. You select a segment simply + click on it. A selected segment turns a darker shade of gray. Most + work that you do in the gradient editor will be about changing and + editing those segments in one way or another. +

  • You can move an entire selection by clicking in the + darker gray field and dragging. +

  • Moving a white midpoint affects the color transition. +

  • Dragging a black endpoint will stretch the area between that + endpoint and the midpoint. +

  • If you click on an endpoint then press + Shift and drag, you will compress or expand + the entire selection. +

  • You can extend or add to a selection by pressing the + Shift key and clicking on another segment. +

+

Any of the described manipulations can be used on extended + selections. +

The Popup Menu

If you press the right mouse button + in the gradient preview window, a menu will appear for further + editing of the selected segment. +

You can edit the left or right color by invoking left or right + endpoint color. The Load From and + Save To menu options allow you to + load a color from an RGBA channel to an + endpoint or to save an RGBA channel. +

In the Blending function submenu from + the Segment menu, you will find some + functions that control the appearance of the gradient in your + selection. +

The Coloring type submenu from the + segment menu lets you choose a color model + for your selection or segment. You can choose plain + RGB or one of two kinds of + HSV. +

The Segment commands will work on the selected segment. If you + have selected more than one segment, they will not be treated as + a unit. +

  • Split segment at midpoint: Puts an endpoint at the + midpoint and then divides the two new segments. +

  • Split segment uniformly: Splits to a specified amount of + segments. +

  • Delete segment: Deletes the entire selection. +

  • Re-center segment's midpoint: Re-centers the midpoints. +

  • Re-distribute handles in segment: Evenly distributes all + the points in the segment. +

+

The Selection operations submenu allows + you to flip or replicate the segment and also allows you to + blend the endpoints' colors and/or opacity. +


PrevHomeNext
The Gradient Selection DialogUpCopy Gradient
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/index.html b/help/C/dialogs/gradient_editor/index.html deleted file mode 100644 index fb9ba657f5..0000000000 --- a/help/C/dialogs/gradient_editor/index.html +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Index for gradient_editor - - - - - - - - - - - -
- gradient_editor Index -
-

- (/dialogs/gradient_editor/index.html)

- Top index

-

Topics in this directory:

- copy_gradient
- delete_gradient
- gradient_editor
- new_gradient
- rename_gradient
- replicate_segment
- save_as_pov_ray
- split_segments_uniformly
-

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/gradient_editor/new_gradient.html b/help/C/dialogs/gradient_editor/new_gradient.html index 39d23c9746..f7396496b0 100644 --- a/help/C/dialogs/gradient_editor/new_gradient.html +++ b/help/C/dialogs/gradient_editor/new_gradient.html @@ -1,23 +1,156 @@ - - - - - New Gradient - - - - - - - - - -
New - Gradient

-

- Lets you specify the name of the new Gradient. The newly created gradient - will be stored in your personal Gimp gradeint directory. -

- Index -

- + New Gradient
GIMP User Manual
PrevChapter 12. DialogsNext

New Gradient

Lets you specify the name of the new gradient. The newly created + gradient will be stored in your personal + GIMP gradient directory + (normally ~/gimp-1.1/gradients). +


PrevHomeNext
Delete GradientUpRename Gradient
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/rename_gradient.html b/help/C/dialogs/gradient_editor/rename_gradient.html index 593b479919..266bab26bb 100644 --- a/help/C/dialogs/gradient_editor/rename_gradient.html +++ b/help/C/dialogs/gradient_editor/rename_gradient.html @@ -1,28 +1,161 @@ - - - - - Rename Gradient - - - - - - - - - -
Rename - Gradient

-

- Lets you specify the new name for the Gradient. When you rename a Gradient - the renamed Gradient will end up in your personal gimp gradient directory. - However if you have the permission to alter files in the system wide Gimp - Gradient directory the file will be erased from that directory. This means - that other Gimp users on the system will not be able to use the gradient - even if you just renamed it. So you better be sure (specially under Win32) - what you are doing. -

- Index -

- + Rename Gradient
GIMP User Manual
PrevChapter 12. DialogsNext

Rename Gradient

Lets you specify the new name for the gradient. When you rename a + gradient the renamed gradient will appear in your personal + GIMP gradient directory. If, however, + you have the permission to alter files in the system-wide + GIMP gradient directory, the file will + be erased from that directory. This means that other users on the + system will not be able to use the gradient even if you only + renamed it. So you need to be sure what you are doing. Be fair to + others and don't deprive them of gradients! +


PrevHomeNext
New GradientUpReplicate Segment
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/replicate_segment.html b/help/C/dialogs/gradient_editor/replicate_segment.html index 5f899b4b2d..c5545dc22b 100644 --- a/help/C/dialogs/gradient_editor/replicate_segment.html +++ b/help/C/dialogs/gradient_editor/replicate_segment.html @@ -1,23 +1,148 @@ - - - - - Replicate Segment - - - - - - - - - -
Replicate - Segment

-

- Lets you specify the amount of replicas (copies) that you want to create. - The copies will be squeezed into the original segment's space. -

- Index -

- + Replicate Segment
GIMP User Manual
PrevChapter 12. DialogsNext

Replicate Segment

Lets you specify the amount of copies that you want to create. The + copies will be squeezed into the original segment's space. +


PrevHomeNext
Rename GradientUpSave as PovRay
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/save_as_pov_ray.html b/help/C/dialogs/gradient_editor/save_as_pov_ray.html deleted file mode 100644 index 9edcb4fe5a..0000000000 --- a/help/C/dialogs/gradient_editor/save_as_pov_ray.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - Save as Pov-Ray - - - - - - - - - -
Save as - Pov-Ray

-

- Lets you save your gradient as a Pov-Ray gradient, you have to choose the - location and name of the Pov-Ray gradient. -

- Index -

- diff --git a/help/C/dialogs/gradient_editor/save_as_povray.html b/help/C/dialogs/gradient_editor/save_as_povray.html new file mode 100644 index 0000000000..8e0aaabd6c --- /dev/null +++ b/help/C/dialogs/gradient_editor/save_as_povray.html @@ -0,0 +1,148 @@ + Save as PovRay
GIMP User Manual
PrevChapter 12. DialogsNext

Save as PovRay

Lets you save your gradient as a PovRay gradient. You have to choose the + location and name of the PovRay gradient. +


PrevHomeNext
Replicate SegmentUpSplit Segments Uniformly
\ No newline at end of file diff --git a/help/C/dialogs/gradient_editor/split_segments_uniformly.html b/help/C/dialogs/gradient_editor/split_segments_uniformly.html index 40a7a0b571..16c6f6595e 100644 --- a/help/C/dialogs/gradient_editor/split_segments_uniformly.html +++ b/help/C/dialogs/gradient_editor/split_segments_uniformly.html @@ -1,23 +1,148 @@ - - - - - Split Segments Uniformly - - - - - - - - - -
Split Segments - Uniformly

-

- Lets you specify the number of subsegments that you want to split up your - segment in. -

- Index -

- + Split Segments Uniformly
GIMP User Manual
PrevChapter 12. DialogsNext

Split Segments Uniformly

Lets you specify the number of subsegments into which your segment + should be divided. +


PrevHomeNext
Save as PovRayUpThe Pattern Selection Dialog
\ No newline at end of file diff --git a/help/C/dialogs/gradient_selection.html b/help/C/dialogs/gradient_selection.html index b95bf2922f..19b68e9b5f 100644 --- a/help/C/dialogs/gradient_selection.html +++ b/help/C/dialogs/gradient_selection.html @@ -1,30 +1,176 @@ - - - - - The Gradient Selection Dialog - - - - - - - - - -
The Gradient - Selection Dialog

-

- Lets you choose the gradient that should be the currently active one. You - are also able to edit the gradient by pressing the edit button. This will - bring up the Gradient - editor. -

- Additional Information -

-

- Default Keyboard Shortcut: Ctrl+G -

- Index -

- + The Gradient Selection Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Gradient Selection Dialog

Lets you select a gradient. You are also able to edit the gradient + by pressing the edit button. This will + bring up the Gradient Editor. +

Additional Information

Default Keyboard Shortcut: Ctrl-G +


PrevHomeNext
Brush EditorUpGradient Editor
\ No newline at end of file diff --git a/help/C/dialogs/grow_selection.html b/help/C/dialogs/grow_selection.html index f78aa417f9..d9f142f1a9 100644 --- a/help/C/dialogs/grow_selection.html +++ b/help/C/dialogs/grow_selection.html @@ -1,23 +1,149 @@ - - - - - Grow Selection - - - - - - - - - -
Grow - Selection

-

- Lets you specify the amount (usually in pixels, but you can set it to a real - unit) to grow the current selection with. -

- Index -

- +Grow Selection
GIMP User Manual
PrevChapter 4. ImageNext

Grow Selection

Will grow the selection (not the content of the selection but + the selection itself) by an arbitrary amount measured in the + set unit (usually pixels). +


PrevHomeNext
Shrink SelectionUpBorder Selection
\ No newline at end of file diff --git a/help/C/dialogs/help.html b/help/C/dialogs/help.html index bb125da25b..91ecd5321c 100644 --- a/help/C/dialogs/help.html +++ b/help/C/dialogs/help.html @@ -1,37 +1,238 @@ - - - - - Help Page for Help - - - - - - - - - -
Help Page

-

- Well what about a help page for a help. In the Help Dialog you will see - three note book tabs. Index, Context and the current help page (this is the - tab you are reading this text in). -

- In the Index tab you will find links to most of the subject in the Gimp help - system. In the Content tab you will find links built up of a hirarcy. This - will enable you to find all help pages about a special area of Gimp e.g all - help pages about selections. -

- You can invoke the help system either by pressing F1 in a Gimp dialog or - window, but also by pressing F1 when a menu item is active. E.I. go into - a menu and hover over a menu  entry e.g Grow, no press F1 and the help - page for Grow will be loaded in the Help browser. -

- If you press <Shift>-F1 then you will get a ? sign which you can point - and click in buttons and other context items in Gimp. If the item is contexted - help enabled then the help page for that item is loaded into the Help browser. -

- Index -

- +Help Page for Help
GIMP User Manual
PrevChapter 3. ToolBoxNext

Help Page for Help

Well, what about a help page for a help. In the + Help Dialog, if you are using the + GIMP + help browser, you will see three tabs + — Index, Contents, + and the current help page (this is the tab where you are reading + this text). +

In the Index tab you will find links to most + of the subjects in the GIMP help + system. In the Contents tab you will find + links built up of a hierarchy. This will enable you to find all + help pages about a special area of GIMP + (e.g all help pages about selections). +

You can invoke the help system either by pressing + F1 in a GIMP dialog or + window or by pressing F1 when a menu item is + active. For example, go into a menu and hover over a menuentry, + such as Grow, now press + F1 and the help page for + Grow will be loaded into the + help browser. +

If you press Shift-F1 then you will get a + ? sign which you can point and click on buttons + and other items in GIMP. If the item + has help available, the help document is loaded into the + help browser. +


PrevHomeNext
Module BrowserUpContext Help
\ No newline at end of file diff --git a/help/C/dialogs/index.html b/help/C/dialogs/index.html index b5116558fb..8cd69b66a4 100644 --- a/help/C/dialogs/index.html +++ b/help/C/dialogs/index.html @@ -1,76 +1,444 @@ - - - - - Index for dialogs - - - - - - - - - - - -
- dialogs Index -
-

- (/dialogs/index.html)

- Top index

- Subtopics available:

- channels
- layers
- color_selectors
- display_filters
- gradient_editor
- palette_editor
- paths
- preferences
-

Topics in this directory:

- about
- border_selection
- brush_editor
- brush_selection
- convert_to_indexed
- copy_named
- cut_named
- device_status
- document_index
- edit_qmask_attributes
- error_console
- feather_selection
- file_new
- file_open
- file_save
- gradient_selection
- grow_selection
- help
- indexed_palette
- info_window
- input_devices
- layers_and_channels
- module_browser
- navigation_window
- offset
- palette_selection
- paste_named
- pattern_selection
- really_close
- really_quit
- scale_image
- set_canvas_size
- shrink_selection
- tip_of_the_day
- tool_options
- undo_history
-

- /Karin & Olof -

-

- - - +Dialogs
GIMP User Manual
PrevNext

Chapter 12. Dialogs

Table of Contents
Dialogs Introduction
Layers, Channels and Paths Dialog
The Preferences Dialog
New File Settings
Interface Settings
Display Settings
Environment Settings
Session Management
Monitor Resolution
Directories
The Brush Selection Dialog
Brush Editor
The Gradient Selection Dialog
Gradient Editor
Copy Gradient
Delete Gradient
New Gradient
Rename Gradient
Replicate Segment
Save as PovRay
Split Segments Uniformly
The Pattern Selection Dialog
The Color Palette Dialog
The Palette Editor
Delete Palette
Import Palette
Merge Palette
New Palette
Indexed Palette
Input Devices
The Device Status Dialog
The Document Index Dialog
The Error Console Dialog
The Display Filters Dialog
The Gamma Display Filter
The High Contrast Display Filter
Undo History
The Standard GIMP Color Selector
The GTK Color Selector
The Triangle Color Selector
The Watercolor Color Selector
Edit Qmask Attributes

Dialogs Introduction

This chapter contains destriptions of all + GIMP dialogs. +


PrevHomeNext
Save by Extension Layers, Channels and Paths Dialog
\ No newline at end of file diff --git a/help/C/dialogs/indexed_palette.html b/help/C/dialogs/indexed_palette.html index a893bd27f8..fc731b0d91 100644 --- a/help/C/dialogs/indexed_palette.html +++ b/help/C/dialogs/indexed_palette.html @@ -1,46 +1,194 @@ - - - - - Indexed Palette - - - - - - - - - -
Indexed - Palette

-

- Allows you to edit and alter the palette present in an indexed - image. Remember - that you can only paint with the colors present in your indexed palette. - This is why it's very handy to be able to add or alter colors in - the palette. -

-

-
- Altering a color: -
- Choose the color that you want to alter by clicking on it
- Choose edit from the Operation menu. This will bring up the - GIMP color selector which enables you to pick a replacement color. -
- Adding a color: -
- If your indexed image contains less that 256 colors then you - can add a color - to the palette.
- Choose add from the Operation menu. A new color will appear - as the last color in the palette. The new palette color is a - copy of the previous entry - in the palette. You are now free to alter the color and paint - with it in your indexed image. -
-

- Index -

- + Indexed Palette
GIMP User Manual
PrevChapter 12. DialogsNext

Indexed Palette

Allows you to edit and alter the palette present in an indexed + image. Remember that you can only paint with the colors present + in your indexed palette. This is why it's very handy to be able + to add or alter colors in the palette. +

Altering a color

Choose the color that you want to alter by clicking on it. + Choose edit from the + Operation menu. This will bring up the + GIMP color + selector which enables you to pick a + replacement color. +

Adding a color

If your indexed image contains less that 256 colors, then + you can add a color. Choose Add + from the Operation menu. A new color + will appear as the last color in the palette. The new + palette color is a copy the previous color in the palette. + You are now free to alter the color and use it in your + image. +

+


PrevHomeNext
New PaletteUpInput Devices
\ No newline at end of file diff --git a/help/C/dialogs/info_window.html b/help/C/dialogs/info_window.html index fb42aee3f7..e20d702a22 100644 --- a/help/C/dialogs/info_window.html +++ b/help/C/dialogs/info_window.html @@ -1,69 +1,262 @@ - - - - - Info Window - - - - - - - - - -
Info - Window

-

- The General Tab folder -

-

-

-
- Dimension (w x h): -
- Shows the image height and width both in pixels and in the current -unit. -
- Resolution: -
- Shows the current resolution. -
- Scale Ratio: -
- Shows the current zoom factor. -
- Display Type: -
- Shows the current image mode. -
- Visual Class: -
- Shows the visual class of your display. -
- Visual Depth: -
- Shows the visual depth of your display. -
-
-

- The Extended Tab folder -

-

- Shows you the current pixel value while you moving the pointer - over the image - without pressing any buttons, In effect, it is a color picker - that does not affect the - current color, but instead gives you the pixel value regardless - of the current - tool or color. For information how to interpret the pixel value, see the - Color Picker tool. -

- Additional Information -

-

- Default Keyboard Shortcut: Ctrl+Shift+I -

- Index -

- +Info Window
GIMP User Manual
PrevChapter 4. ImageNext

Info Window

The General Tab

Dimension (w x h)

Shows the image height and width both in pixels and in the + current unit. +

Resolution

Shows the current resolution. +

Scale Ratio

Shows the current zoom factor. +

Display Type

Shows the current image mode. +

Visual Class

Shows the visual class of your display. +

Visual Depth

Shows the visual depth of your display. +

The Extended Tab

Shows you the current pixel value while you move the pointer + over the image without pressing any buttons. In effect, it is + a color picker that does not affect the current color, but + instead gives you the pixel value regardless of the current + tool or color. For information on how to interpret the pixel + value, see the Color Picker tool. +

Additional Information

Default Keyboard Shortcut: Ctrl-Shift-I +


PrevHomeNext
Dot for DotUpNavigation Window
\ No newline at end of file diff --git a/help/C/dialogs/input_devices.html b/help/C/dialogs/input_devices.html index 54bee5d11f..312c3a5a5d 100644 --- a/help/C/dialogs/input_devices.html +++ b/help/C/dialogs/input_devices.html @@ -1,35 +1,147 @@ - - - - - Input Devices - - - - - - - - - -
The Input Device - Dialog

-

- UNIX and Linux -

-

- The Input device dialog will only appear in the described form if you have - Xinput enabled and are using it to support e.g a drawing tablet. -If you don't have an alternative input device, or your device is set up -incorrectly, you will get the message "No input devices". -

- TODO describe the device dialog -

- Microsoft Windows -

-

- Still TODO -

- Index -

- +Input Devices
GIMP User Manual
PrevChapter 12. DialogsNext

Input Devices

The Input Devices dialog will only appear in the described form if you have + Xinput enabled and are using it to support e.g a drawing tablet. + If you don't have an alternative input device, or your device is set up + incorrectly, you will get the message "No input devices". +


PrevHomeNext
Indexed PaletteUpThe Device Status Dialog
\ No newline at end of file diff --git a/help/C/dialogs/layers/Makefile.am b/help/C/dialogs/layers/Makefile.am index 3a15142633..1c8eec91b9 100644 --- a/help/C/dialogs/layers/Makefile.am +++ b/help/C/dialogs/layers/Makefile.am @@ -3,13 +3,12 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/layers helpdata_DATA = \ - add_mask.html \ - edit_layer_attributes.html \ - index.html \ - layers.html \ - layer_boundary_size.html \ - merge_visible_layers.html \ - new_layer.html \ + add_layer_mask.html \ + edit_layer_attributes.html \ + layers.html \ + layer_boundary_size.html \ + merge_visible_layers.html \ + new_layer.html \ scale_layer.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/layers/add_layer_mask.html b/help/C/dialogs/layers/add_layer_mask.html new file mode 100644 index 0000000000..9478127e44 --- /dev/null +++ b/help/C/dialogs/layers/add_layer_mask.html @@ -0,0 +1,163 @@ +Add Layer Mask
GIMP User Manual
PrevChapter 5. LayersNext

Add Layer Mask

Will add a layer mask to the currently active layer. A layer mask + is a way to control transparency of the current layer . The mask + it self is a grayscale "image" where black pixels will make the + layer totally transparent and white pixels will make it opaque. +

The fill dialog enables you to choose the initial fill of the + layer mask. Black which will make the layer totally transparent, + white which will make the layer totally opace or the alpha channel + of the layer. When you choose the alpha channel the transparency + of each pixels will be mapped to a grayscale value in the mask. If + you want to further manipulate the transparency in a layer this + can be a very good option (e.g maybe you have softly erased some + parts of the image and want to continue to manipulate the + transparency). +

To work with the layer mask you have to active it, you do that by + clicking on the thumbnail image of the mask. However you will not + see the mask you will just see the result of your mask + operations. To see the mask you have to <ZZZZ> click on the + thumbnail. If you want to see you layer without the mask you have + to <ZZZZ> click on the thumbnail. Remember to to click one + again with the same modification key to exit the current "preview" + state. Sorry, but the help page for "Add Layer Mask" is not + written yet. +


PrevHomeNext
Flatten ImageUpApply Layer Mask
\ No newline at end of file diff --git a/help/C/dialogs/layers/add_mask.html b/help/C/dialogs/layers/add_mask.html deleted file mode 100644 index b4967143c7..0000000000 --- a/help/C/dialogs/layers/add_mask.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - Add Layer Mask - - - - - - - - - -
Add Layer - Mask

-

- Will add a layer mask to the currently active layer. A layer mask is a way - to control transparency of the current layer . The mask it self is a grayscale - "image" where black pixels will make the layer totally transparent and white - pixels will make it opaque. -

- The fill dialog enables you to choose the initial fill of the layer mask. - Black which will make the layer totally transparent, white which will make - the layer totally opace or the alpha channel of the layer. When you choose - the alpha channel the transparency of each pixels will be mapped to a grayscale - value in the mask. If you want to further manipulate the transparency in - a layer this can be a very good option (e.g maybe you have softly erased - some parts of the image and want to continue to manipulate the transparency). -

- To work with the layer mask you have to active it, you do that by clicking - on the thumbnail image of the mask. However you will not see the mask you - will just see the result of your mask operations. To see the mask you have - to <ZZZZ> click on the thumbnail. If you want to see you layer without - the mask you have to <ZZZZ> click on the thumbnail. Remember - to to click one again with the same modification key to exit the current - "preview" state. -

- Index -

- diff --git a/help/C/dialogs/layers/edit_layer_attributes.html b/help/C/dialogs/layers/edit_layer_attributes.html index 203bf4db40..74d3056cbf 100644 --- a/help/C/dialogs/layers/edit_layer_attributes.html +++ b/help/C/dialogs/layers/edit_layer_attributes.html @@ -1,39 +1,189 @@ - - - - - Edit Layer Attributes - - - - - - - - - -
Edit Layer - Attributes

-

- Lets you specify the name of the current layer. The name can also hold important - information about how to interpret a possible animation of the layers (e.g - if you save the image as a GIF you can set options about how to play the - animated GIF). -

- Animation Attributes -

-

- The animation attributes is specified as follows. "Layer_Name (delay - in ms) (combination_mode)" e.g Frame_1 (100ms) (replace). -

- The delay will specify the time each frame is visible in the animation. A - delay of e.g a hundred milliseconds will have the following format - (100ms). -

- The combination mode will specify if you will combine with the previous layer - or replace it. The two modes are either (combine) or - (replace). -

- Index -

- +Edit Layer Attributes
GIMP User Manual
PrevChapter 5. LayersNext

Edit Layer Attributes

General

Lets you specify the name of the current layer. The name can + also hold important information about how to interpret a + possible animation of the layers (e.g if you save the image as a + GIF you can set options about how to play the animated GIF). +

Animation Attributes

The animation attributes is specified as follows. + Layer_Name (delay in ms) (combination_mode) + e.g Frame_1 (100ms) (replace) +

The delay will specify the time each frame is visible in the + animation. A delay of e.g a hundred milliseconds will have the + following format (100ms). +

The combination mode will specify if you will combine with the + previous layer or replace it. The two modes are either + (combine) or (replace). +


PrevHomeNext
Aplha to SelectionUpChannels
\ No newline at end of file diff --git a/help/C/dialogs/layers/index.html b/help/C/dialogs/layers/index.html deleted file mode 100644 index ef10010dc4..0000000000 --- a/help/C/dialogs/layers/index.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - Index for layers - - - - - - - - - - - -
- layers Index -
-

- (/dialogs/layers/index.html)

- Top index

-

Topics in this directory:

- add_mask
- edit_layer_attributes
- layer_boundary_size
- layers
- merge_visible_layers
- new_layer
- scale_layer
-

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/layers/layer_boundary_size.html b/help/C/dialogs/layers/layer_boundary_size.html index 809c519c49..f41e95936d 100644 --- a/help/C/dialogs/layers/layer_boundary_size.html +++ b/help/C/dialogs/layers/layer_boundary_size.html @@ -1,58 +1,210 @@ - - - - - Layer Boundary Size - - - - - - - - - -
Layer Boundary - Size

-

- The Layer Boundary Size lets you set the the boundary of the layer. Remember - you can have a smaller or larger layer than the image boundary size. When - you enlarge the boundary size, then you will add some space to paint on to - your layer. Naturally it will be wise versa when you make the boundary size - it smaller. -

- The size area will control how big or small your new layer boundary will - be just as when you created a new layer. The Offset area will control how - your layer is clipped or expanded. -

-

-
- Making the layer smaller: -
- The offset fields will control where your upper left corner of the old layer - will be in the "new" layer. The best way to control the new location and - how and where the layer will be clipped. Is to drag the "layer preview" in - the Offset area to the right position, and make the final touch with - the spin buttons (or type it in by hand). The thin outline is the new layer - size and you have to drag the old layer to the right position so it will - be clipped according to your demands. -
- Making the layer bigger: -
- The offset fields will control where your upper left corner of the old layer - will be in the "new" layer. The best way to control the new location and - how and where the layer will be clipped. Is to drag the "layer preview" in - the Offset area to the right position, and make the final touch with - the spin buttons (or type it in by hand). The outline/canvas  is the - new layer size and you have to drag the old layer to the right position within - it. -
-

- If you uncheck the chain in the Size area, you will be able to have different - ratios when you make the "new" layer . It's therefore possible e.g to have - a layer which is smaller in X direction and bigger in Y direction than before - you altered the layer boundary size. -

- Index -

- +Layer Boundary Size
GIMP User Manual
PrevChapter 5. LayersNext

Layer Boundary Size

General

The Layer Boundary Size lets you set the the boundary of the + layer. Remember you can have a smaller or larger layer than the + image boundary size. When you enlarge the boundary size, then + you will add some space to paint on to your layer. Naturally it + will be wise versa when you make the boundary size it smaller. +

The size area will control how big or small your new layer + boundary will be just as when you created a new layer. The + Offset area will control how your layer is clipped or expanded. +

Making the layer smaller

The offset fields will control where your upper left corner of + the old layer will be in the "new" layer. The best way to + control the new location and how and where the layer will be + clipped. Is to drag the "layer preview" in the Offset area to + the right position, and make the final touch with the + spin buttons (or type it in by hand). The thin outline is the + new layer size and you have to drag the old layer to the right + position so it will be clipped according to your demands. +

Making the layer bigger

The offset fields will control where your upper left corner of + the old layer will be in the "new" layer. The best way to + control the new location and how and where the layer will be + clipped. Is to drag the "layer preview" in the Offset area to + the right position, and make the final touch with the + spin buttons (or type it in by hand). The outline/canvas +  is the new layer size and you have to drag the old layer + to the right position within it. +

The chain button

If you uncheck the chain in the Size area, you will be able to + have different ratios when you make the "new" layer . It's + therefore possible e.g to have a layer which is smaller in X + direction and bigger in Y direction than before you altered the + layer boundary size. +


PrevHomeNext
Delete LayerUpLayer to Image Size
\ No newline at end of file diff --git a/help/C/dialogs/layers/layers.html b/help/C/dialogs/layers/layers.html index ec8e496aa7..8bd151e197 100644 --- a/help/C/dialogs/layers/layers.html +++ b/help/C/dialogs/layers/layers.html @@ -1,53 +1,202 @@ - - - - - The Layer Dialog - - - - - - - - - -
The Layers - Dialog

-

- The Layer(s) dialog is the main interface to interact with layers present - in a Gimp image. You can think of layers as a stack of slides or clothes - on your body. Gimp gives you several methods of combining layers with help - of modes. The mode of a layer will determine - how it will interact with other layers present in the image. -

- Before you can do anything with a layer the layer must be activated (if you - only have one layer that layer is always active). You do so by clicking on - the layer name, if you double click on the name you will be able to set the - layer attributes of that layer. -

- If you right click on the layer name you will be able to access the layer - menu, with in the layer menu you have access to several other layer commands, - see Index. -

- With the Opacity slider will you control the over general transparency of - the currently active layer. The Keep Trans check button controls what ever - you can or can't paint on transparent areas of the layer. If it is checked - then you can paint on transparent areas of the layer (i.e you can only paint - on opaque areas). -

- In the button row you have six layer command buttons, - New Layer, - Raise Layer, - Lower Layer, - Duplicate Layer, - Anchor Layer and - Delete Layer. -

- Gimp's Layer dialog is by default Auto switched, it will always show the - image that you are working with. You can however switch this off and choose - another image to work with in the drop down menu. -

- Index -

- +Layers Dialog
GIMP User Manual
PrevChapter 5. LayersNext

Layers Dialog

The Layers dialog is the main interface to interact with layers + present in a Gimp image. You can think of layers as a stack of + slides or clothes on your body. Gimp gives you several methods of + combining layers with help of modes. The mode of a layer will + determine how it will interact with other layers present in the + image. +

Before you can do anything with a layer the layer must be + activated (if you only have one layer that layer is always + active). You do so by clicking on the layer name, if you double + click on the name you will be able to set the layer + attributes of that layer. +

If you right click on the layer name you will be able to access + the layer menu, with in the layer menu you have access to several + other layer commands, see Chapter 5. +

With the Opacity slider will you control the over general + transparency of the currently active layer. The Keep Trans check + button controls what ever you can or can't paint on transparent + areas of the layer. If it is checked then you can paint on + transparent areas of the layer (i.e you can only paint on opaque + areas). +

In the button row you have six layer command buttons, + New Layer, + Raise Layer, + Lower Layer, + Duplicate Layer, + Anchor Layer and + Delete Layer. +

Gimp's Layers dialog is by default Auto switched, it will always + show the image that you are working with. You can however switch + this off and choose another image to work with in the drop down + menu. +


PrevHomeNext
Using LayersUpNew Layer
\ No newline at end of file diff --git a/help/C/dialogs/layers/merge_visible_layers.html b/help/C/dialogs/layers/merge_visible_layers.html index 5fd868e8a9..5e288aa6d9 100644 --- a/help/C/dialogs/layers/merge_visible_layers.html +++ b/help/C/dialogs/layers/merge_visible_layers.html @@ -1,44 +1,193 @@ - - - - - Merge Visible Layers - - - - - - - - - -
Merge Visible - Layers

-

- Merge Visible Layers will combine currently visible layers to one layer, - invisible layers aren't effected and will stay as before the merge. There - are three ways to merge visible layers. -

-

-
- Expanded as necessary: -
- The final layer has the size of the biggest layer of all of the visible layers. - (Remember that a layer in Gimp can be bigger than the image) -
- Clipped to image: -
- Will set the final layer size equal to the image size. (Remember that layers - in Gimp can be bigger than the image it self. If you have such a visible - layer it will be clipped to the image size). -
- Clipped to bottom layer: -
- Will set the final layer size equal to the bottom layer. If the bottom layer - is smaller than any of your visible layers. The final layer will be clipped - and trimmed according to both the size and position of the bottom layer. -
-

- Index -

- +Merge Visible Layers
GIMP User Manual
PrevChapter 5. LayersNext

Merge Visible Layers

General

Merge Visible Layers will combine currently visible layers to + one layer, invisible layers aren't effected and will stay as + before the merge. There are three ways to merge visible layers. +

Expanded as necessary

The final layer has the size of the biggest layer of all of + the visible layers. (Remember that a layer in Gimp can be + bigger than the image) +

Clipped to image

Will set the final layer size equal to the image + size. (Remember that layers in Gimp can be bigger than the + image it self. If you have such a visible layer it will be + clipped to the image size). +

Clipped to bottom layer

Will set the final layer size equal to the bottom layer. If + the bottom layer is smaller than any of your visible + layers. The final layer will be clipped and trimmed according + to both the size and position of the bottom layer. +


PrevHomeNext
Scale LayerUpMerge Down
\ No newline at end of file diff --git a/help/C/dialogs/layers/new_layer.html b/help/C/dialogs/layers/new_layer.html index 05b2843382..23e61b27bf 100644 --- a/help/C/dialogs/layers/new_layer.html +++ b/help/C/dialogs/layers/new_layer.html @@ -1,32 +1,160 @@ - - - - - New Layer - - - - - - - - - -
New Layer

-

- Will create a new layer.  You can set the new layers attributes in the - Layer Name field please see Edit Layer - Attributes for an explanation of layer attributes. Just as in - New Image can you also set the Fill Type to - either the Foreground or Background color of the tool box, White or totally - Transparent. -

- The size of the layer can be set in a number of different ways and units. - A new unit is the % unit which will create a new layer that is X% of the - bottom layer. Default is to measure the new layer in pixels which is the - best if you are dealing with web graphics, but if you going to print your - image then real world units such as inches is probably the preferred. -

- Index -

- +New Layer
GIMP User Manual
PrevChapter 5. LayersNext

New Layer

Will create a new layer. You can set the new layers attributes in + the Layer Name field please see Edit Layer + Attributes for an explanation of layer attributes. Just as + in New Image can you also + set the Fill Type to either the Foreground or Background color of + the tool box, White or totally Transparent. +

The size of the layer can be set in a number of different ways and + units. A new unit is the % unit which will create a new layer + that is X% of the bottom layer. Default is to measure the new + layer in pixels which is the best if you are dealing with web + graphics, but if you going to print your image then real world + units such as inches is probably the preferred. +


PrevHomeNext
Layers DialogUpStack
\ No newline at end of file diff --git a/help/C/dialogs/layers/scale_layer.html b/help/C/dialogs/layers/scale_layer.html index 3afb449d86..71ac4916f9 100644 --- a/help/C/dialogs/layers/scale_layer.html +++ b/help/C/dialogs/layers/scale_layer.html @@ -1,32 +1,183 @@ - - - - - Scale Layer - - - - - - - -
Scale - Layer

-

- Will scale the layer content,  and also make the layer boundary either - size smaller or bigger. The difference between Scale Layer and Set Layer - Boundary Size is that Set Layer Boundary Size - will enable you to have a smaller or bigger layer without scaling the layer - content (i.e it will only add some space to on around the layer or clip the - layer). NOTE: Scale layer will only scale the currently active layer, scale +Scale Layer

GIMP User Manual
PrevChapter 5. LayersNext

Scale Layer

Will scale the layer content,  and also make the layer + boundary either size smaller or bigger. The difference between + Scale Layer and Set Layer Boundary + Size is that "Set Layer Boundary Size" will enable you to + have a smaller or bigger layer without scaling the layer content + (i.e it will only add some space to on around the layer or clip + the layer). +

- -

Scale layer will only scale the currently active layer, scale image will scale all layers with in the image. -

- You will set the new layer size either by altering the size or ratio. You - have have exactly the same options as in create new - layer. -

- Index -

- +

You will set the new layer size either by altering the size or + ratio. You have have exactly the same options as in + New Layer. +


PrevHomeNext
Layer to Image SizeUpMerge Visible Layers
\ No newline at end of file diff --git a/help/C/dialogs/layers_and_channels.html b/help/C/dialogs/layers_and_channels.html index daaa41a8ef..1ffcf60886 100644 --- a/help/C/dialogs/layers_and_channels.html +++ b/help/C/dialogs/layers_and_channels.html @@ -1,35 +1,208 @@ - - - - - Layers, Channels and Path Dialog - - - - - - - - - -
Layers, Channels - and Paths Dialog

-

- The Layers, Channels and Paths dialog is an "auto switching - dialog," which means that - the currently active image is is the one present in the tab - folders of the dialog. You can turn off Auto and choose another - opened image in the Image drop down menu. -

- Please see each tab's help page for help about - Layers, - Channels and - Paths. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+L -

- Index -

- +Layers, Channels and Paths Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

Layers, Channels and Paths Dialog

The Layers, Channels and Paths dialog is an + "auto switching dialog", which means that the current + image is the one shown in the tab folders of the dialog. + You can turn off Auto and choose another + opened image in the Image drop down menu. +

Please see each tab's help page for help about + +

+

Additional Information

Default Keyboard Shortcut: Ctrl-L +


PrevHomeNext
DialogsUpThe Preferences Dialog
\ No newline at end of file diff --git a/help/C/dialogs/module_browser.html b/help/C/dialogs/module_browser.html index 058e38f054..4ee084841b 100644 --- a/help/C/dialogs/module_browser.html +++ b/help/C/dialogs/module_browser.html @@ -1,36 +1,181 @@ - - - - - Module Browser - - - - - - - - - -
Module - Browser

-

- The module brower is an interface for currently loaded and - available modules - in GIMP, along with information about the module. Gimp 1.2 currently uses - modules only for color selectors (there is also a gamma display module). - In the module browser you can set if these modules - should be loaded at start - up (this button is non-functional at the moment and all modules will - be loaded by default). -

- You can also unload a module on the fly, e.g you may not want - the watercolor color selector. If you unload a module, the - functionality provided by the - module will no longer be available in your current Gimp session. - To enable the functionality again, you have to mark the module - and reload it. -

- Index -

- +Module Browser
GIMP User Manual
PrevChapter 3. ToolBoxNext

Module Browser

The module brower is an interface for + currently loaded and available modules in + GIMP, along with information about the + module. The current GIMP uses modules + only for color selectors (there is also a gamma display module). + In the module browser you can set if these + modules should be loaded at start up (this button is + non-functional at the moment and all modules will be loaded by + default). +

You can also unload a module on the fly, e.g. you may not want the + watercolor color selector. If you unload a + module, the functionality provided by the module will no longer be + available in your current GIMP + session. To enable the functionality again, you have to mark the + module and reload it. +


PrevHomeNext
The ToolBoxUpHelp Page for Help
\ No newline at end of file diff --git a/help/C/dialogs/navigation_window.html b/help/C/dialogs/navigation_window.html index 510a509ec7..47ccbd8474 100644 --- a/help/C/dialogs/navigation_window.html +++ b/help/C/dialogs/navigation_window.html @@ -1,35 +1,184 @@ - - - - - Navigation Window - - - - - - - - - -
Navigation - Window

-

- The navigation window allows you to quickly and easily move -around the image currently being edited. The dialog shows a small -preview of the whole image. The section of the image which is viewable -in the image window (where the editing takes place) is highlighted with -a black square. The current scale factor of the image is also shown -as a ratio (2:1 is 300% zoomed in). The zoom factor can be changed -by moving the slider (left to zoom out, right to zoom in) or clicking -the magnifying glass icons. You can also drag the highlighted square to -pan the image (to change which part is viewable in the image window). -

- Additional Information -

-

- Default Keyboard Shortcut: Ctrl+Shift+N -

- Index -

- + Navigation Window
GIMP User Manual
PrevChapter 4. ImageNext

Navigation Window

The navigation window allows you to quickly + and easily move around the image currently being edited. The + dialog shows a small preview of the whole image. The section of + the image which is visible in the image window (where the editing + takes place) is highlighted with a black square. The current scale + factor of the image is also shown as a ratio. The zoom factor can + be changed by moving the + slider (left to zoom out, right to zoom in) + or clicking the magnifying glass icons. You + can also drag the highlighted square to pan the image (to change + which part is viewable in the image window). +

Additional Information

Default Keyboard Shortcut: Ctrl-Shift-N +


PrevHomeNext
Info WindowUpToggle Selection
\ No newline at end of file diff --git a/help/C/dialogs/offset.html b/help/C/dialogs/offset.html index a79428da31..2d3ea02f56 100644 --- a/help/C/dialogs/offset.html +++ b/help/C/dialogs/offset.html @@ -1,37 +1,174 @@ - - - - - Offset - - - - - - - - - -
Offset

-

- Offset moves the current layer or channel up, down, left, or - right by the chosen number of pixels. When pixels overrun the - dimensions of the layer, you can decide if they are wrapped or - not. Offset can be used to place layers or floating selections - to a specific position in the image. -

- Offset is useful if you want to move layers a very exact amount, - or if you'd like to move them without extending the layer - border. The other important - application of this command is to create seamless tiles for patterns. -

- If the Wrap Around button is checked, after you offset the layer - or selection, the parts of the image that moved outside the - layer border will turn up on - the other side of the image. If you don't want this, you can - choose to fill the empty area with the background color or with - transparency. -

- Index -

- +Offset
GIMP User Manual
PrevChapter 4. ImageNext

Offset

Offset moves the current layer or channel + up, down, left, or right by the chosen number of pixels. When the + edges overrun the dimensions of the layer, you can decide if they + are wrapped or not. Offset can be used to + place layers or floating selections at a specific position in the + image. +

Offset is useful if you want to move layers + a very exact amount or if you'd like to move them without + extending the layer border. The other important application of + this command is to create seamless tiles for patterns. +

If the Wrap Aroundbutton is checked, + the parts of the image + that move outside the layer border will turn up on the other side + of the image. If you don't want this, you can choose to fill the + empty area with the background color or with transparency. +


PrevHomeNext
EqualizeUpSet Canvas Size
\ No newline at end of file diff --git a/help/C/dialogs/palette_editor/Makefile.am b/help/C/dialogs/palette_editor/Makefile.am index 52518b562e..5d00822470 100644 --- a/help/C/dialogs/palette_editor/Makefile.am +++ b/help/C/dialogs/palette_editor/Makefile.am @@ -3,11 +3,10 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/palette_editor helpdata_DATA = \ - delete_palette.html \ - import_palette.html \ - index.html \ - merge_palette.html \ - new_palette.html \ + delete_palette.html \ + import_palette.html \ + merge_palette.html \ + new_palette.html \ palette_editor.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/palette_editor/delete_palette.html b/help/C/dialogs/palette_editor/delete_palette.html index 4f78657784..9d81d33208 100644 --- a/help/C/dialogs/palette_editor/delete_palette.html +++ b/help/C/dialogs/palette_editor/delete_palette.html @@ -1,27 +1,165 @@ - - - - - Help Page for delete_palette - - - - - - - - - - - -
- Delete Palette -

-

- Deletes the selected palette. -

- Index -

- - +Delete Palette
GIMP User Manual
PrevChapter 12. DialogsNext

Delete Palette

Deletes the selected palette. +

The palette is deleted from disk too. +


PrevHomeNext
The Palette EditorUpImport Palette
\ No newline at end of file diff --git a/help/C/dialogs/palette_editor/import_palette.html b/help/C/dialogs/palette_editor/import_palette.html index dab8eb3763..1f25a1d3ea 100644 --- a/help/C/dialogs/palette_editor/import_palette.html +++ b/help/C/dialogs/palette_editor/import_palette.html @@ -1,70 +1,304 @@ - - - - - Import Palette - - - - - - - - - -
Import - Palette

-

- It's in the Import Palette dialog you set the import source. You can import - (create) a palette from a image, a gradient or a index palette (read index - image). -

-

-
- Import from Gradient: -
- Select gradient as source
- Set the name of the palette you are about to create.
- Click on select in the Preview area in order to bring up the Gradient selection - dialog where you will choose source gradient
- Set the amount of colors that you want in the palette in the Sample Size - field. -
-
-
- Import from Image: -
- Select Image as source
- Set the name of the palette you are about to create.
- Choose the one of the currently opened images that you want to create a palette - out of. NOTE: That you will create the palette from all visible layers with - in that image. (I.e like if you had merged all visible layers). Please see - Layers for an explanation of layer functions. -
- Set the Interval, which will control -- TODO
- Set the amount of colors that you want in the palette in the Sample Size - field. -
-
-
- Import from Index Palette: -
- Select Image as source
- Set the name of the palette you are about to create.
- Choose the one of the currently opened index images that you want to create - a palette out of.
- Set the amount of colors that you want in the palette in the Sample Size - field. NOTE: It's no use to have a higher amount of colors in the palette - than the currently amount of colors present in the index image. You can view - and alter the the index palette in the Index - Palette dialog, this will also give you an opportunity to evaluate how - many colors that are present in the indexed palette. -
-
-

- When you are done click Import and a new palette will be created. Close cancels - that whole operation. -

- Index -

- +Import Palette
GIMP User Manual
PrevChapter 12. DialogsNext

Import Palette

General

It's in the Import Palette dialog you set the import source. You + can import (create) a palette from a image, a gradient or a + index palette (read index image). +

Import from Gradient

Select gradient as source +

Set the name of the palette you are about to create. +

Click on select in the Preview area in order to bring up the + Gradient selection dialog where you will choose source + gradient +

Set the amount of colors that you want in the palette in the + Sample Size field. +

Import from Image

Select Image as source +

Set the name of the palette you are about to create. +

Choose the one of the currently opened images that you want to + create a palette out of. +

You will create the palette from all visible layers with in + that image. (I.e like if you had merged all visible + layers). Please see Chapter 5 + for an explanation of layer functions. +

Set the Interval, which will control -- TODO +

Set the amount of colors that you want in the palette in the + Sample Size field. +

Import from Index Palette

Select Image as source +

Set the name of the palette you are about to create. +

Choose the one of the currently opened index images that you + want to create a palette out of. +

Set the amount of colors that you want in the palette in the + Sample Size field. +

It's no use to have a higher amount of colors in the palette + than the currently amount of colors present in the index + image. You can view and alter the the index palette in the + Indexed + Palette dialog, this will also give you an + opportunity to evaluate how many colors that are present in + the indexed palette. +

Finally

When you are done click Import and a new palette will be + created. Close cancels that whole operation. +


PrevHomeNext
Delete PaletteUpMerge Palette
\ No newline at end of file diff --git a/help/C/dialogs/palette_editor/index.html b/help/C/dialogs/palette_editor/index.html deleted file mode 100644 index d4317d1b24..0000000000 --- a/help/C/dialogs/palette_editor/index.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Index for palette_editor - - - - - - - - - - - -
- palette_editor Index -
-

- (/dialogs/palette_editor/index.html)

- Top index

-

Topics in this directory:

- delete_palette
- import_palette
- merge_palette
- new_palette
- palette_editor
-

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/palette_editor/merge_palette.html b/help/C/dialogs/palette_editor/merge_palette.html index 3722a7d4fb..7f561cfe84 100644 --- a/help/C/dialogs/palette_editor/merge_palette.html +++ b/help/C/dialogs/palette_editor/merge_palette.html @@ -1,22 +1,139 @@ - - - - - Merge Palette - - - - - - - - - -
Merge - Palette

-

- Lets you name the new palette consistent of the palettes selected for merge. -

- Index -

- +Merge Palette
GIMP User Manual
PrevChapter 12. DialogsNext

Merge Palette

Lets you name the new palette consistent of the palettes selected + for merge. +


PrevHomeNext
Import PaletteUpNew Palette
\ No newline at end of file diff --git a/help/C/dialogs/palette_editor/new_palette.html b/help/C/dialogs/palette_editor/new_palette.html index 14180b671d..14514eeee8 100644 --- a/help/C/dialogs/palette_editor/new_palette.html +++ b/help/C/dialogs/palette_editor/new_palette.html @@ -1,22 +1,141 @@ - - - - - New Palette - - - - - - - - - -
New - Palette

-

- Lets you set the name of the palette you are about to create. -

- Index -

- +New Palette
GIMP User Manual
PrevChapter 12. DialogsNext

New Palette

Lets you set the name of the palette you are about to create. +


PrevHomeNext
Merge PaletteUpIndexed Palette
\ No newline at end of file diff --git a/help/C/dialogs/palette_editor/palette_editor.html b/help/C/dialogs/palette_editor/palette_editor.html index 95ab6be974..fa06b80f04 100644 --- a/help/C/dialogs/palette_editor/palette_editor.html +++ b/help/C/dialogs/palette_editor/palette_editor.html @@ -1,80 +1,261 @@ - - - - - Palette Editor - - - - - - - - - -
Palette - Editor

-

- In the palette editor you can edit palettes, create new palettes, import - palettes, merge and delete palettes. You also have a option to refresh palettes. - You have to use this option to make palettes installed after you started - Gimp available and ready for use. -

-

-
- Edit Palette: -
- Either you can choose the palette to edit in the palette select dialog or - you activate it in the palette editor with a single left clicking on it. - The palette that you are about to edit will now appear in the edit area. - If the palette has a large amount of colors then each color cell in the palette - can be rather small. To be able to view and edit the palette you can therefore - zoom in and out with the zoom buttons.
-
- To change the name of a color cell you first mark it by left clicking on - it. The Name field next to the zoom buttons will be activated and you can - change the name.
-
- The edit menu will appear if you right click in the edit frame. Choose to - edit and the standard Gimp Color selector will appear and you will be able - to change to color in the color cell that you right-clicked in. New will - add a color at the end of the palette. The new color cell will inherit the - color of the cell that you brought up the menu in. To alter the newly created - cell you have to right-click in it and choose edit. Delete in the right click - pop up menu will delete the color cell from which you brought up the menu - in (you will not get a confirmation window).
-
- New Palette: -
- Will create a new empty palette in the edit frame, a confirmation window - with where you name the new palette will appear. - When you have created your new palette, you have to insert color cells. You - do that by right-clicking anywhere in the edit area and choose new from the - popup menu.
-
- Delete Palette: -
- Will delete your palette. NOTE: It will delete the palette without the presence - of confirmation dialog. Remember it's a UNIX program from the beginning i.e - you are supposed to know what you are doing.
-
- Import Palette: -
- Will bring up the Import dialog where you - can create a new platte from a gradient, image or indexed palette. -
-
- Merge Palette: -
- You are able to merge palettes in the editor, the new palette is a combination - of the selected palettes. To merge two or several palettes you have to mark - the palettes that you want to merge and click on Merge which will bring up - the Name dialog. There are two ways to mark - palettes either you <Modkey> click, you will then mark a single palette - each time (or unmark). You can also <Modkey> click which will mark - all palettes from the first marked to the last marked palette. -
-

- Index -

- +The Palette Editor
GIMP User Manual
PrevChapter 12. DialogsNext

The Palette Editor

General

In the palette editor you can edit palettes, create new + palettes, import palettes, merge and delete palettes. You also + have a option to refresh palettes. You have to use this option + to make palettes installed after you started Gimp available and + ready for use. +

Edit Palette

Either you can choose the palette to edit in the palette + select dialog or you activate it in the palette editor with a + single left clicking on it. The palette that you are about to + edit will now appear in the edit area. If the palette has a + large amount of colors then each color cell in the palette can + be rather small. To be able to view and edit the palette you + can therefore zoom in and out with the zoom buttons. +

To change the name of a color cell you first mark it by left + clicking on it. The Name field next to the zoom buttons will + be activated and you can change the name. +

The edit menu will appear if you right click in the edit + frame. Choose to edit and the standard Gimp Color selector + will appear and you will be able to change to color in the + color cell that you right-clicked in. New will add a color at + the end of the palette. The new color cell will inherit the + color of the cell that you brought up the menu in. To alter + the newly created cell you have to right-click in it and + choose edit. Delete in the right click pop up menu will delete + the color cell from which you brought up the menu in (you will + not get a confirmation window). +

New Palette

Will create a new empty palette in the edit frame, a + confirmation window with where you name the + new palette will appear. When you have created your new + palette, you have to insert color cells. You do that by + right-clicking anywhere in the edit area and choose new from + the popup menu. +

Delete Palette

Will delete your palette. +

Import Palette

Will bring up the Import + dialog where you can create a new platte from a gradient, + image or indexed palette. +

Merge Palette

You are able to merge palettes in the editor, the new palette + is a combination of the selected palettes. To merge two or + several palettes you have to mark the palettes that you want + to merge and click on Merge which will bring up the Name + dialog. There are two ways to mark palettes either you + <Modkey> click, you will then mark a single palette each + time (or unmark). You can also <Modkey> click which will + mark all palettes from the first marked to the last marked + palette. +


PrevHomeNext
The Color Palette DialogUpDelete Palette
\ No newline at end of file diff --git a/help/C/dialogs/palette_selection.html b/help/C/dialogs/palette_selection.html index 9567e46767..1eae13f0b3 100644 --- a/help/C/dialogs/palette_selection.html +++ b/help/C/dialogs/palette_selection.html @@ -1,71 +1,291 @@ - - - - - The Color Palette Dialog - - - - - - - - - -
The Color Palette - Dialog

-

- You have two tab folders in the Color Palette dialog. One to - select the palette - you want to use and one to interact with the palette that you selected. -

-

-
- Select tab: -
- Within the select tab, you will see small thumbnails of all available - palettes. There is also information about the number of - colors in the palettes and their names. You can - choose a palette for direct - usage by simply clicking on it and shifting to the Palette - tab. You can edit the palette you selected by clicking on - the edit button which will bring - up the Color - Palette Editor - dialog. Note that you can also edit a palette in the - Palette tab folder, - but the Color Palette Editor gives more options. -
-
- Palette tab: -
- Within the palette tab, you interact with your palette. The primary - usage of the dialog is, naturally, to choose colors from the - palette. (It is very cumbersome to use the color selector to - choose colors when - you work with a project. The best way to work is to have a - color palette). -
-
- You can, however, also use this window to edit the - palette. Right click (and hold) on a color +The Color Palette Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Color Palette Dialog

You have two tab folders in the Color + Palette dialog. One to select the palette you want to + use and one to interact with the palette that you select. +

Select

Within the Select tab, you will see + small thumbnails of all available palettes. There is also + information about the number of colors in the palettes and + their names. You can choose a palette for direct usage by + simply clicking on it and shifting to the + Palette tab. You can edit the palette + you selected by clicking on the edit + button which will bring up the + Color Palette Editor + dialog. Note that you can also edit a palette in the + Palette tab folder, but the + Color Palette Editor gives more + options. +

Palette

Within the Palette tab, you interact + with your palette. The primary usage of the dialog is, + naturally, to choose colors from the palette. +

It is very cumbersome to use the color + selector to choose colors when you work with + a project. The best way to work is to have a color + palette. +

+

You can, however, also use this window to edit the palette. + Right click (and hold) on a color cell and a menu will appear. Within the menu you can edit - the color in the - cell, delete the cell, or create a brand new cell which will - be added in the - bottom row of your palette. The name which appears when you - either right or left click on a color cell can also be - changed. All changes that you make in the - palette will be autosaved and available immediately. -

-

- The zoom buttons enable you to zoom in and out in the palette. -

- Additional Information -

-

- Default Keyboard Shortcut: Ctrl+P -

- Index -

- + the color in the cell, delete the cell, or create a new cell + which will be added in the bottom row of your palette. The + name which appears when you either + right or + left click on a color cell can + also be changed. All changes that you make in the palette + will be autosaved and available immediately. +

The zoom buttons enable you to zoom in and + out in the palette. +

Additional Information

Default Keyboard Shortcut: Ctrl-P +


PrevHomeNext
The Pattern Selection DialogUpThe Palette Editor
\ No newline at end of file diff --git a/help/C/dialogs/paste_named.html b/help/C/dialogs/paste_named.html index 9886224071..e58c19e804 100644 --- a/help/C/dialogs/paste_named.html +++ b/help/C/dialogs/paste_named.html @@ -1,37 +1,200 @@ - - - - - Paste Named - - - - - - - - - -
Paste - Named

-

- Gimp has a cut and copy buffer, see Cut Named and - Copy Named. Objects cut or copied - with those functions are available for pasting in Paste Named. -

- In the dialog there is a list of all available buffers. You - select the buffer - to paste by clicking on it. When the buffer, is selected you - have three options - to paste it: Paste, - Paste Into, and - Paste As New. -

- You can also manage buffers in the dialog. If you want to delete a buffer - you select it and click on the Delete button. To exit the buffer without - pasting you click on Cancel. This will cancel the paste operation but it - will not cancel the delete operation. -

- Index -

- + Paste Named
GIMP User Manual
PrevChapter 4. ImageNext

Paste Named

GIMP has a cut and copy buffer, see + Cut Named and + Copy Named. + Objects cut or copied with those functions are available for pasting in + Paste Named. +

In the dialog, there is a list of all available buffers. You + select the buffer to paste by clicking on it. When the buffer is + selected you have three options to paste it: + Paste, + Paste Into, + and Paste As New. +

You can also manage buffers in the dialog. If you want to delete a + buffer you select it and click on the + Delete button. To exit the buffer without + pasting, you click on Cancel. This will + cancel the paste operation but it will not cancel delete + operations. +


PrevHomeNext
Copy NamedUpClear
\ No newline at end of file diff --git a/help/C/dialogs/paths/Makefile.am b/help/C/dialogs/paths/Makefile.am index f587b43db1..313e1fb526 100644 --- a/help/C/dialogs/paths/Makefile.am +++ b/help/C/dialogs/paths/Makefile.am @@ -3,11 +3,10 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/paths helpdata_DATA = \ - export_path.html \ - import_path.html \ - index.html \ - paths.html \ - rename_path.html + edit_path_attributes.html \ + export_path.html \ + import_path.html \ + paths.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/paths/edit_path_attributes.html b/help/C/dialogs/paths/edit_path_attributes.html new file mode 100644 index 0000000000..8b95a50bb7 --- /dev/null +++ b/help/C/dialogs/paths/edit_path_attributes.html @@ -0,0 +1,138 @@ +Edit Path Attributes
GIMP User Manual
PrevChapter 7. PathsNext

Edit Path Attributes

Enables you to rename a path. +


PrevHomeNext
Import PathUpTools
\ No newline at end of file diff --git a/help/C/dialogs/paths/export_path.html b/help/C/dialogs/paths/export_path.html index fc093e19eb..e488bee207 100644 --- a/help/C/dialogs/paths/export_path.html +++ b/help/C/dialogs/paths/export_path.html @@ -1,26 +1,142 @@ - - - - - Export Path - - - - - - - - - -
Export - Path

-

- Will export the path to a file, which you later on can import to an other - image. It may sound simple but it has big importance how useful paths will - be to you. Beside the basic selection related paths you also paint with paths. - To be able to store paths in a path library will make paintings with paths - so much easier. -

- Index -

- +Export Path
GIMP User Manual
PrevChapter 7. PathsNext

Export Path

Will export the path to a file which can later be imported to + another image. It may sound simple but it is important. + Besides the basic selection-related paths, there is also the + possibility of painting with paths. Storing paths in a path library + will make painting with paths so much easier. +


PrevHomeNext
Paste PathUpImport Path
\ No newline at end of file diff --git a/help/C/dialogs/paths/import_path.html b/help/C/dialogs/paths/import_path.html index 6d5cea1079..79268394c6 100644 --- a/help/C/dialogs/paths/import_path.html +++ b/help/C/dialogs/paths/import_path.html @@ -1,22 +1,143 @@ - - - - - Import Path - - - - - - - - - -
Import - Path

-

- Lets you import a path from a file, please see the - export path help page. - Index -

- +Import Path
GIMP User Manual
PrevChapter 7. PathsNext

Import Path

Lets you import a path from a file. Please see the section called Export Path. +


PrevHomeNext
Export PathUpEdit Path Attributes
\ No newline at end of file diff --git a/help/C/dialogs/paths/index.html b/help/C/dialogs/paths/index.html deleted file mode 100644 index 557148c0eb..0000000000 --- a/help/C/dialogs/paths/index.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - Index for paths - - - - - - - - - - - -
- paths Index -
-

- (/dialogs/paths/index.html)

- Top index

-

Topics in this directory:

- export_path
- import_path
- paths
- rename_path
-

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/paths/paths.html b/help/C/dialogs/paths/paths.html index f978a1a83d..dd809131fd 100644 --- a/help/C/dialogs/paths/paths.html +++ b/help/C/dialogs/paths/paths.html @@ -1,120 +1,473 @@ - - - - - The Paths Dialog - - - - - - - - - -
The Paths - Dialog

-

- Basically paths is a way to store bezier selections. But if you limit path - to that statement you will miss a lot of functionality. A better way to see - it is a way to manage vectors curves. If you are familiar with vector drawing - programs such as e.g Sketch, Illustrator® or Corel Draw® then paths - will be something that is very natural. -

- You will work with paths just like you work with bezier curves. Bezier - (select)curves are as a matter of fact Paths you may just not be aware of - the power that is hidden. The big difference is that you can edit your curve, - and you can paint with your curve or even save, import and export the curve. -

- There are three commando areas in the Paths dialog, the top edit area, the - path area with it's right button popup menu and the bottom control area. -

-

-
- Control area: -
- From left to right we count
-
- New Path, you will create a new path and activate the bezier tool. The path - is named Path X where X is a number. If you want to rename it you have to - double click on the path in the path area. If you do so a name dialog will - appear.
-
- Duplicate Path: Will duplicate your currently active path. To activate/mark - a path you single click on it in the path area. The name is by default OldName#X - where X indicates the N:th duplication of the path.
-
- Path to selection: Will create a selection out of a path. Note the path doesn't - have to be closed. The created selection will simply join the endpoints with - a line that will follow the curves direction in each endpoint.
-
- Selection to Path: Will create a path out of a selection. Beware of complicated - selection such as selections done by quick mask or select by color. Such - selection will create very complexed paths, which are hard to control.
-
- Stroke path: Will stroke the path with the currently (active device) active - brush. The path doesn't have to be closed. The stoke will stoke from one - endpoint to another.
-
- Delete Path: Will delete the currently active path (Note: no confirmation - dialog). -
-
-
- Edit area: -
- To be able to edit a path the bezier tool must be active, if it isn't you - will not be able to edit a path. In the top edit area we count from left - to right.
-
- New point. This command will add a control point to the path and make aline - from the last control point to the new point. There a two ways to create - a path either you just click to add a point. This will crate a curve with - sharp corners. However if you click and drag you will stretch and form the - curve related to the added control point. If you create the path this way - you will end up with a curve with smooth "corners". You can naturally combine - the two ways to create curves.
- You close your path by joining the first and last point (this is done by - adding the last point really close to the first point) a square sign will - now appear inside the path. This command will turn the path into a selection. - However if you click outside the previously closed curve you will start a - new bezier curve. The square path to selection command will now be deactivated - and you can add more points inside the previously closed curve. You can have - as many closed curves as you want but you can only have one that isn't closed - in the same Path. This may look like a limitation but you can have as many - paths as you like which will enable you to have as may unclosed curves as - you want as long as they are in separate paths.
-
- Add point: Will add a point to your curve. The new point must be located - on the curve, you can't add a point outside the curve. You will notice that - your cursor will have a little + sign when you are over a curve in the image. - When the + sign appears it means that you are able to add a point by clicking - on the curve. The new point will be adjusted to fit the curve and the curves - shape will not be altered.
-
- Remove point: Will remove a point in your curve. The point must be a between - the endpoints in a non-closed curve. If the curve is closed it can be any - point within the curve. You must however always have two point in the curve.
-
- Edit Point: Will allow you to adjust the curve. When you click on an anchor - point, two little handles appear. If you pull the handles, they will change - size and direction and shape a curve. By pressing Ctrl, you can move an anchor - point anyway you like. To be able to adjust each handle separately you have - to press Shift. -
-
-
- Path area: -
- The path area is where you choose the path that you want to work with. If - you right click on a path a popup menu will appear with command for copy, - paste etc. please see Path Index for - reference of those commands. The default name of a path is simple it's just - Path followed with a number. It can sometimes be really useful too change - name. To change name simply double click on the path and a name dialog will - appear. -
-

- Index -

- +The Paths Dialog
GIMP User Manual
PrevChapter 7. PathsNext

The Paths Dialog

Basically paths are a way to store bezier selections. Limiting + paths to that statement misses a lot of their functionality + though. A better way to see it is as a way to manage vector curves. + If you are familiar with vector drawing programs such as + Adobe Illustrator and + Corel Draw, then paths will be + something very familiar. +

You will work with paths just like you work with bezier curves. + Bezier curves are, as a matter of fact, Paths. You may just not be + aware of the power that is hidden within them. The big difference + is that you can edit your curve, you can paint with your curve, or + even save, import and export the curve. +

There are three command areas in the Paths dialog: +

  • The top edit area +

  • The path area with its right button popup menu +

  • The bottom control area +

+

Control area:

From left to right we count: +

New Path

You will create a new path and activate the bezier tool. + The path is named Path X where X is a number. If you + want to rename it you have to double click on the path + in the path area. If you do so a name + dialog will appear. +

Duplicate Path

Will duplicate the active path. To activate/mark a path + you single click on it in the path area. The name is, by + default, OldName#X where X indicates the N:th + duplication of the path. +

Path to Selection

Will create a selection out of a path. Notice that the + path doesn't have to be closed. The created selection + will simply join the endpoints with a line that will + follow the curves direction in each endpoint. +

Selection to Path

Will create a path out of a selection. Beware of + complicated selections such as selections done by quick + mask or select by color. Such selections will create + very complex paths which are hard to control. +

Stroke Path

Will stroke the path with the (active device's) active + brush. The path doesn't have to be closed. The stoke + will stroke from one endpoint to another. +

Delete Path

Will delete the active path. +

No confirmation dialog will appear. +

+

+

Edit area:

To be able to edit a path, the bezier tool must be active. If + it isn't, you will not be able to edit a path. In the top edit + area we count from left to right. +

New Point

This command will add a control point to the path and + make a line from the last control point to the new + point. There a two ways to create a path. You can just + click to add a point. This will create a curve with + sharp corners. If instead you click and drag you will + stretch and form the curve related to the added control + point. If you create the path this way, you will end up + with a curve with smooth "corners". You can, + naturally, combine the two ways to create curves. +

You close your path by joining the first and last point + (this is done by adding the last point really close to + the first point) a square sign + will now appear inside the path. This command will turn + the path into a selection. Clicking outside the + previously closed curve will start a new bezier curve. + The square path to selection command will now be + deactivated and you can add more points inside the + previously closed curve. You can have as many closed + curves as you want, but you can only have one that isn't + closed in the same Path. This may look like a + limitation, but you can have as many paths as you like. + This will enable you to have as many unclosed curves as + you want as long as they are in separate paths. +

+ +

Add Point

Will add a point to your curve. The new point must be + located on the curve. You can't add a point outside the + curve. You will notice that your cursor will have a + little + sign when you are over a + curve in the image. When the + + sign appears it means that you are able to add a point + by clicking on the curve. The new point will be adjusted + to fit the curve and the curve's shape will not be + altered. +

+ +

Remove Point

Will remove a point in your curve. The point must be + between the endpoints in a non-closed curve. If the + curve is closed it can be any point within the curve. + You must, however, always have two points in the + curve. +

+ +

Edit Point

Will allow you to adjust the curve. When you click on an + anchor point, two little handles appear. If you pull the + handles, they will change size and direction and shape a + curve. By pressing Ctrl, you can move + an anchor point anyway you like. To be able to adjust + each handle separately, you have to press + Shift. +

+

Path area:

+ The path area is where you choose the path that you want to work + with. If you right click on a path, a + popup menu will appear with commands for copy, paste etc. Please + see Chapter 7 for references of + those commands. The default name of a path is simple — + it's just Path followed by a number. It can + be useful to change a path's name. To change + its name, simply double click on the path and a name dialog will + appear. +


PrevHomeNext
PathsUpNew Path
\ No newline at end of file diff --git a/help/C/dialogs/paths/rename_path.html b/help/C/dialogs/paths/rename_path.html deleted file mode 100644 index c7287bf7bd..0000000000 --- a/help/C/dialogs/paths/rename_path.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Rename Path - - - - - - - - - -
Rename - Path

-

- Enables you to rename the name of the Path. -

- Index -

- diff --git a/help/C/dialogs/pattern_selection.html b/help/C/dialogs/pattern_selection.html index 9d19f5e807..5ee19f3ecb 100644 --- a/help/C/dialogs/pattern_selection.html +++ b/help/C/dialogs/pattern_selection.html @@ -1,36 +1,192 @@ - - - - - The Pattern Selection Dialog - - - - - - - - - -
The Pattern - Selection Dialog

-

- Lets you set the active pattern. The pattern selected will - also be shown as a preview in the toolbox status area. The - patterns are often bigger than - the view area in the dialog. To be able to view the entire - pattern, click and hold on the pattern. A popup window will - appear showing the entire - pattern. If you have several devices, the pattern will be - assigned to the currently active device. -

- If you install a pattern after you started Gimp, you must click - on Refresh before you can use and view it. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Shift+P -

- Index -

- +The Pattern Selection Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Pattern Selection Dialog

Lets you set the active pattern. The pattern selected will also be + shown as a preview in the toolbox status + area. The patterns are often bigger than the view area in the + dialog. To be able to view the entire pattern, click and hold on + the pattern. A popup window will appear + showing the entire pattern. If you have several devices, the + pattern will be assigned to the current device. +

If you install a pattern after you started + GIMP, you must click on + Refresh before you can view and use it. +

Additional Information

+ Default Keyboard Shortcut: Ctrl-Shift-P +


PrevHomeNext
Split Segments UniformlyUpThe Color Palette Dialog
\ No newline at end of file diff --git a/help/C/dialogs/preferences/Makefile.am b/help/C/dialogs/preferences/Makefile.am index b7d473d1bd..8d41d91813 100644 --- a/help/C/dialogs/preferences/Makefile.am +++ b/help/C/dialogs/preferences/Makefile.am @@ -3,15 +3,13 @@ helpdatadir = $(gimpdatadir)/help/C/dialogs/preferences helpdata_DATA = \ - default_comment.html \ - directories.html \ - display.html \ - environment.html \ - index.html \ - interface.html \ - monitor.html \ - new_file.html \ - preferences.html \ + directories.html \ + display.html \ + environment.html \ + interface.html \ + monitor.html \ + new_file.html \ + preferences.html \ session.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/dialogs/preferences/default_comment.html b/help/C/dialogs/preferences/default_comment.html deleted file mode 100644 index 2c6d6db5e1..0000000000 --- a/help/C/dialogs/preferences/default_comment.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for default_comment - - - - - - - - - - - -
- default_comment help page -
-

- Index

- (/usr/src/CVS/gimp-1.1/help/C/dialogs/preferences/default_comment.html)

- Sorry but the help file for default_comment is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/preferences/directories.html b/help/C/dialogs/preferences/directories.html index 0f1aae6f80..37ba410d18 100644 --- a/help/C/dialogs/preferences/directories.html +++ b/help/C/dialogs/preferences/directories.html @@ -1,58 +1,220 @@ - - - - - Preferences / Directories - - - - - - - - - -
Directories

-

- Gimp uses several directories to store such things as addon filters (plug-ins), - scripts, brushes etc. but also it's swap and temporary files. -

- The top view in Directories controls Temp Dir and Swap Dir. The Swap Dir - is by default in your personal Gimp directory located in your home directory. - It's quite usual that your home dir is on a NFS (UNIX) or SMB (Windows) server. - If it is then Gimp will memory swap slowed down due to network latency. It's - there for very important that the Gimp directory is a local directory such - as e.g /tmp under Unix or C:\temp under Windows. The temp dir is a directory - where Gimp will store temporary files such as e.g palettes that you work - with. The temp dir should not be in a public directory such as /tmp and but +Directories

GIMP User Manual
PrevChapter 12. DialogsNext

Directories

General

GIMP uses several directories to store such things as addon filters + (plug-ins), scripts, brushes etc. but also it's swap and temporary + files. +

The top view in Directories controls Temp Dir and Swap Dir. The Swap Dir + is by default in your personal GIMP directory located in your home + directory. It's quite usual that your home dir is on a NFS (UNIX) + or SMB (Windows) server. If it is then GIMP will memory swap slowed + down due to network latency. It's there for very important that the + GIMP directory is a local directory such as e.g /tmp under Unix + or C:\temp under Windows. The temp dir is a directory where Gimp will + store temporary files such as e.g palettes that you work with. The + temp dir should not be in a public directory such as /tmp and but a directory that only you read and write have access to. -

- The sub categories such as Brushes, Patterns, Plug-Ins controls where Gimp - will search for those items and in which order. -

-

-
- Change a search path: -
- Mark it by clicking on it, type the changed path or browse the files system - with ... browse button, press enter to activate the new path. -
- Change search order: -
- Mark a search path, click on the up or down buttons to change the search - order. -
- New search path: -
- Click on the new button (the paper) type the path or browse the files system - with ... browse button, press enter to activate the path. -
- Delete path: -
- Mark the path and click on the trashcan. -
-
-

- Index -

- +

The sub categories such as Brushes, Patterns, Plug-Ins controls where + GIMP will search for those items and in which order. +

Change a Search Path

Mark it by clicking on it, type the changed path or browse the + files system with ... browse button, press enter to activate the + new path. +

Change Search Order

Mark a search path, click on the up or down buttons to change the + search order. +

New Search Path

Click on the new button (the paper) type the path or browse the + files system with ... browse button, press enter to activate the path. +

Delete Path

Mark the path and click on the trashcan. +


PrevHomeNext
Monitor ResolutionUpThe Brush Selection Dialog
\ No newline at end of file diff --git a/help/C/dialogs/preferences/display.html b/help/C/dialogs/preferences/display.html index 91097025e4..b78a4c1a9f 100644 --- a/help/C/dialogs/preferences/display.html +++ b/help/C/dialogs/preferences/display.html @@ -1,44 +1,238 @@ - - - - - Preferences / Display - - - - - - - - - -
Display

-

- Transparency -

-

- Type: By default Gimp has a checker bord pattern built up of mid tone gray - checks. You can however change that in the drop down menu. NOTE: That white, - black and gray only checks disables checks and the transparency will be shown - as a solid black, white or gray color. -

- Check Size: The size of the checkers in the pattern that indicates transparency. - NOTE: If you have set the checker type to white, gray or black only then - then the size will have no effect what so ever. -

- Scaling -

-

- When you scale a image (make it bigger) you have to fill in missing pixels - what color and value that those pixels should have is calculated in a - interpolation algorithm . Gimp uses a Linear interpolation algorithm by default. - Linear is a gives you a mid quality interpolation. Linear interpolation has - less quality trade off for speed that Nearest Neighbour interpolation algorithm - does. Nearest Neighbour is the fastest way to interpolate but it has the - lowest quality of the interpolation algorithms. The Cubic interpolation algorithm - produces the highest quality of the three interpolation types supported by - Gimp. However it is considerably slower that the linear interpolation algorithm. -

- Index -

- +Display Settings
GIMP User Manual
PrevChapter 12. DialogsNext

Display Settings

Transparency Type

By default Gimp has a checker bord pattern built up of mid tone gray + checks. You can however change that in the drop down menu. +

That white, black and gray only checks disables checks and the + transparency will be shown as a solid black, white or gray color. +

Check Size

The size of the checkers in the pattern that indicates transparency. +

If you have set the checker type to white, gray or black only then + then the size will have no effect what so ever. +


PrevHomeNext
Interface SettingsUpEnvironment Settings
\ No newline at end of file diff --git a/help/C/dialogs/preferences/environment.html b/help/C/dialogs/preferences/environment.html index 0dd6865c54..5d810f3d85 100644 --- a/help/C/dialogs/preferences/environment.html +++ b/help/C/dialogs/preferences/environment.html @@ -1,69 +1,242 @@ - - - - - Preferences / Environment - - - - - - - - - -
Environment

-

-

-
- Conservative Memory Usage: -
- Gimp is optimized to speed i.e speed is more important than memory usage. - Enabling Conservative Memory Usage will "optimize" Gimp to use less memory. - The tradeoff is of course speed but if your system is low on memory then - it can be an option to use Conservative Memory Usage. -
- Tile Cache Size: -
- This is the most important parameter that Gimp has, if you set it to low - Gimp will be very slow. There isn't a upper level of how much memory that - you can give Gimp i.e give Gimp as much as you can. But don't give Gimp more - that your physical memory (i.e pure memory without swap). In reality you - have to measure how much memory you usually use and give Gimp a little less - than the rest of it. -
- Maximum Image Size: -
- Gimp will warn you if you try to create images bigger than this value. -
-
-
- Install Colormap: -
- Not used since we use GdkRgb now -
- Colormap Cycling: -
- Still TODO -
-
-
- Try to Write a Thumbnail File: -
- By default when you save a image a thumbnail file will be created storing - a little image of your image. When you mark a image in the file open dialog - you will see this thumbnail. If you set this option to Never you have to - press on the thumbnail button in the file open dialog to be able to see a - thumbnail of your image. -
- "File > Save" saves the image: -
- This is by default set to Always but if you e.g saves your image on a networked - disk (nfs, smb etc.) then saves some times are slow and saving always isn't - that necessary. Instead you will only save when the file is really changed. -
-
-

- Index -

- +Environment Settings
GIMP User Manual
PrevChapter 12. DialogsNext

Environment Settings

Conservative Memory Usage

GIMP is optimized to speed i.e speed is more important than memory + usage. Enabling Conservative Memory Usage will "optimize" GIMP to + use less memory. The tradeoff is of course speed but if your system + is low on memory then it can be an option to use Conservative Memory + Usage. +

Levels of Undo

By default GIMP has five levels of undo. + The amount of undo levels is only limited by disk space. A high + amount of undo levels requires a large amount of disk space so use + it with care. The default value is reasonably good for most use. +

Tile Cache Size

This is the most important parameter that GIMP has, if you set it + to low GIMP will be very slow. There isn't a upper level of how much + memory that you can give GIMP i.e give GIMP as much as you can. But + don't give GIMP more that your physical memory (i.e pure memory + without swap). In reality you have to measure how much memory you + usually use and give GIMP a little less than the rest of it. +

Interpolation Type

When you scale a image (make it bigger) you have to fill in missing + pixels what color and value that those pixels should have is calculated + in a interpolation algorithm . Gimp uses a Linear interpolation + algorithm by default. Linear is a gives you a mid quality interpolation. + Linear interpolation has less quality trade off for speed that Nearest + Neighbour interpolation algorithm does. Nearest Neighbour is the fastest + way to interpolate but it has the lowest quality of the interpolation + algorithms. The Cubic interpolation algorithm produces the highest + quality of the three interpolation types supported by GIMP. However it + is considerably slower that the linear interpolation algorithm. +

Try to Write a Thumbnail File

By default when you save a image a thumbnail file will be created + storing a little image of your image. When you mark a image in the + file open dialog you will see this thumbnail. If you set this option + to Never you have to press on the thumbnail button in the + File Open Dialog to be able + to see a thumbnail of your image. +

"File > Save" Saves the Image

This is by default set to Always but if you e.g saves your image on + a networked disk (nfs, smb etc.) then saves some times are slow and + saving always isn't that necessary. Instead you will only save when + the file is really changed. +


PrevHomeNext
Display SettingsUpSession Management
\ No newline at end of file diff --git a/help/C/dialogs/preferences/index.html b/help/C/dialogs/preferences/index.html deleted file mode 100644 index 7bdf9f0d36..0000000000 --- a/help/C/dialogs/preferences/index.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Index for preferences - - - - - - - - - - - -
- preferences Index -
-

- (/dialogs/preferences/index.html)

- Top index

-

Topics in this directory:

- default_comment
- directories
- display
- environment
- interface
- monitor
- new_file
- preferences
- session
-

- /Karin & Olof -

-

- - - diff --git a/help/C/dialogs/preferences/interface.html b/help/C/dialogs/preferences/interface.html index 6888dfb49c..f5b197592c 100644 --- a/help/C/dialogs/preferences/interface.html +++ b/help/C/dialogs/preferences/interface.html @@ -1,190 +1,462 @@ - - - - - Preferences / Interface - - - - - - - - - -
Interface

-

-

- Interface Settings -

-
-
-
-
- Preview Size: -
- Set the size of the preview thumbnails present in e.g the Layers & Channels - dialog. NOTE: That setting the size to None will disable the preview function. -
- Nav Preview Size: -
- Will affect the size of the - navigation window present from the - bottom right corner of the image widow or as right-click|View|Nav Window -
- Levels of Undo: -
- By default Gimp has five levels of undo. The amount of undo levels is only - limited by disk space. A high amount of undo levels requires a large amount - of disk space so use it with care. The default value is reasonably good for - most use. -
- Resent Document List Size: -
- Will set the amount of previously opened or saved documents that you can - direct access in the Toolbox|File menu. -
- Nav window per display: -
- If you check enable this feature the Navigation will behave like the Layers - & Channels dialog with Auto enabled. I.e it will switch as you switch - image. -
-
-
- Show Tool Tips: -
- Lets you enable or disable tool tips in Gimp. -
- Context Sensitive Help with "F1": -
- Lets you enable or disable the <ModKey>-F1 way of enabling context - sensitive help. It can sometimes interfere with the window manager. You can - still access the context help in the Toolbox|Help menu. -
-

- Image Windows Settings -

-

-

-
- Resize Window on Zoom: -
- Lets you enable (disable) window resize on zoom. Normally when you zoom the - window size will not be affected. If you enable this function the size of - the window will be fitted to the size of the image when you zoom in our out. - I.e zoom in will enlarge the window and zoom out will shrink the window. -
- Show Rulers: -
- Controls what ever you want to show the rulers or not by default. -
- Show Statusbar: -
- Controls what ever you want to show the statusbar or not by default. -
- Marching Ants Speed: -
- When you make a selection in Gimp you will the will be a "blinking" boundary - of the selection. This "blinking" boundary is refered as marching ants. This - options controls how fast the ants will march. -
- Image Title Format: -
- Lets you set the window title of the image window. The default custom value - is reasonably sane but you are able to choose form Standard, Show zoom - percentage, Show zoom ratio, Show reversed zoom ratio and Custom. To build - a custom image title can you use some macros along with ordinary characters. -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Title Format -
%%literal percent sign
%fbare filename, or "Untitled"
%Ffull path to file
%pPDB image id
%iview instance number
%timage type (RGB, indexed, grayscale)
%zzoom factor as a percentage
%ssource scale factor
%ddestination scale factor
%D*expands to * if the image is dirty
-
-
-
- Perfect-but-slow Pointer Tracking: -
- When you are drawing in Gimp, Gimp will not catch your pointer every moment. - Instead Gimp catch it a certain time interval. This means if you draw a circle - very fast Gimp will not draw a circle but lines between each pointer grab. - However if you turn on Perfect...Tracking Gimp will record every single movement - and make a perfect circe even if you draw it very fast. You will however - not be able to draw in real time instead that drawing will "played" with - a time delay since you "recorded" every movement. (Well this is not exactly - what's happens but it makes it easier to explain it this way). -
- Disable Cursor Updating: -
- Normally when you paint with e.g the airbrush you will have a little pencil - as cursor. If you disable cursor updating the cursor will always be a little - pencil even if you shift tool. I.e the cursor will always be the same shape - as the last tool you used before you disabled updating. -
-
-

- Tool Options Settings -

-

-

-
- Use Global Paint Options: -
- Normally when you paint in Gimp you set the opacity and paint mode in the - brush dialog. If you disable Use Global Paint Options you will have the - opportunity to set both Opacity and paintmode separately for each tool (the - tool option dialog will change and you will have new controls for opacity - and paint mode). -
- Display brush and pattern indicators on Toolbar: -
- In the toolbox you have a area displaying the currently active brush, pattern - and gradient. If you don't want the area to be present in the toolbox you - can disable it here. -
-

- Index -

- +Interface Settings
GIMP User Manual
PrevChapter 12. DialogsNext

Interface Settings

General

Preview Size

Set the size of the preview thumbnails present in e.g the + Layers & Channels + dialog. +

That setting the size to None will disable the preview function. +

Nav Preview Size

Will affect the size of the + Navigation Window + present from the bottom right corner of the image widow or as + right-click|View|Nav Window +

Recent Documents List Size

Will set the amount of previously opened or saved documents that you + can direct access in the Toolbox|File menu. +

Display Brush, Pattern and Gradient Indicators

In the toolbox you have a area displaying the currently active + brush, pattern and gradient. If you don't want the area to be + present in the toolbox you can disable it here. +

Nav Window per Display

If you check enable this feature the Navigation will behave like the + Layers & Channels + dialog with Auto enabled. I.e it will switch as you switch images. +

Help System

Show Tool Tips

Lets you enable or disable tool tips in GIMP. +

Context Sensitive Help with "F1"

Lets you enable or disable the <ModKey>-F1 way of enabling + context sensitive help. It can sometimes interfere with the window + manager. You can still access the context help in the Toolbox|Help + menu. +

Help Browser to Use

Lets you choose which Help Browser GIMP uses: it's internal one + or Netscape (mozilla-remote). +

Image Windows

Resize Window on Zoom

Lets you enable (disable) window resize on zoom. Normally when you + zoom the window size will not be affected. If you enable this + function the size of the window will be fitted to the size of the + image when you zoom in our out. I.e zoom in will enlarge the window + and zoom out will shrink the window. +

Show Rulers

Controls what ever you want to show the rulers or not by default. +

Show Statusbar

Controls what ever you want to show the statusbar or not by default. +

Marching Ants Speed

When you make a selection in Gimp you will the will be a "blinking" + boundary of the selection. This "blinking" boundary is refered as + marching ants. This options controls how fast the ants will march. +

Image Title Format

Lets you set the window title of the image window. The default + custom value is reasonably sane but you are able to choose form + Standard, Show zoom percentage, Show zoom ratio, Show reversed zoom + ratio and Custom. To build a custom image title can you use some + macros along with ordinary characters. +

Perfect-but-slow Pointer Tracking

When you are drawing in GIMP, GIMP will not catch your pointer + every moment. Instead GIMP catch it a certain time interval. This + means if you draw a circle very fast GIMP will not draw a circle + but lines between each pointer grab. However if you turn on + Perfect-but-slow Pointer Tracking GIMP will record every single + movement and make a perfect circe even if you draw it very fast. + You will however not be able to draw in real time instead that + drawing will "played" with a time delay since you "recorded" + every movement. (Well this is not exactly what's happens but it + makes it easier to explain it this way). +

Disable Cursor Updating

Normally when you paint with e.g the airbrush you will have a + little pencil as cursor. If you disable cursor updating the cursor + will always be a little pencil even if you shift tool. I.e the + cursor will always be the same shape as the last tool you used + before you disabled updating. +

Tool Options

Use Global Paint Options

Normally when you paint in GIMP you set the opacity and paint mode + in the brush dialog. If you disable Use Global Paint Options you + will have the opportunity to set both Opacity and paintmode + separately for each tool (the tool option dialog will change and + you will have new controls for opacity and paint mode). +


PrevHomeNext
New File SettingsUpDisplay Settings
\ No newline at end of file diff --git a/help/C/dialogs/preferences/monitor.html b/help/C/dialogs/preferences/monitor.html index 38a3dfb90e..58af2e58aa 100644 --- a/help/C/dialogs/preferences/monitor.html +++ b/help/C/dialogs/preferences/monitor.html @@ -1,33 +1,151 @@ - - - - - Preferences / Monitor - - - - - - - - - -
Monitor

-

- If you create a image new image with the size of two times two inches, and - don't have right-click|View|Dot for dot enabled. Then you should be able - to take a folding rule, and the measure the image directly on the screen - reading a size of two by two inches. -

- If you can't i.e the size you read is wrong then you have to adjust it in - this dialog. Gimp is using a manual settings by default (72dpix72dpi). If - you run Gimp on e.g a Unix workstation then you can probably use the From - X server option and get a correct value. If you run on PC hardware you will - most likely not be able to use the value given by the Xserver. You have to - measure and set hose values by hand which can be a bit bulky. There is two - fields one with the default measure unit DPI, and one with custom measure - unit which can be useful for us how are used to the metric system. -

- Index -

- +Monitor Resolution
GIMP User Manual
PrevChapter 12. DialogsNext

Monitor Resolution

If you create a image new image with the size of two times two inches, and + don't have right-click|View|Dot for dot enabled. Then you should be able + to take a folding rule, and the measure the image directly on the screen + reading a size of two by two inches. +

If you can't i.e the size you read is wrong then you have to adjust it in + this dialog. Gimp is using a manual settings by default (72dpix72dpi). If + you run Gimp on e.g a Unix workstation then you can probably use the From + X server option and get a correct value. If you run on PC hardware you will + most likely not be able to use the value given by the Xserver. You have to + measure and set hose values by hand which can be a bit bulky. There is two + fields one with the default measure unit DPI, and one with custom measure + unit which can be useful for those who are used to the metric system. +


PrevHomeNext
Session ManagementUpDirectories
\ No newline at end of file diff --git a/help/C/dialogs/preferences/new_file.html b/help/C/dialogs/preferences/new_file.html index c64a083b46..d004f3855c 100644 --- a/help/C/dialogs/preferences/new_file.html +++ b/help/C/dialogs/preferences/new_file.html @@ -1,57 +1,231 @@ - - - - - Prefernces / New File - - - - - - - - - -
New File

-

- Image Size and Unit -

-

- The top fields will allow you to set the size in pixels and the bottom field - will allow you to set the size in a arbitrary length unit. The difference - between the two of them is that if you specify the the size in e.g inches - then the size in pixels is dependent of the image resolution. I.e if you - decrease the default resolution you will decrease the size in pixels but - not the real size measured in e.g inches. -

- Image Resolution and Resolution Unit -

-

- Let you set the default image resolution and resolution unit. The default - image resolution is always measured in dpi (ppi) while the default resolution - type is arbitrary. However Gimp lets you set the default resolution in your - arbitrary resolution unit in the two bottom fields. -

- Image Type -

-

- Lets you set what type of image you want to create by default either RGB - or Grayscale. -

- Summary -

-

- Does the size & unit contra resolution image/unit sound a bit complicated - and hard to understand? Let us give you an example. You are familiar with - the metric system but as most designers you are more familiar with a resolution - based on pixels per inch (ppi or dpi). Then you have to set image unit to - millimeters (or centimeters) while you will set the resolution unit to - pixels/inch. This will give you the comfort of working with two familiar - units in this case size measured in the metric system and resolution measured - in ppi. As default values that you have to set i.e size in this case millimeters - and the resolution in ppi is up to you and what type of work you are involved - in. -

- Index -

- +New File Settings
GIMP User Manual
PrevChapter 12. DialogsNext

New File Settings

Image Size and Unit

The top fields will allow you to set the size in pixels and the + bottom field will allow you to set the size in a arbitrary length + unit. The difference between the two of them is that if you specify + the the size in e.g inches then the size in pixels is dependent of + the image resolution. I.e if you decrease the default resolution you + will decrease the size in pixels but not the real size measured in + e.g inches. +

Image Resolution and Resolution Unit

Let you set the default image resolution and resolution unit. The + default image resolution is always measured in dpi (ppi) while the + default resolution type is arbitrary. However Gimp lets you set the# + default resolution in your arbitrary resolution unit in the two bottom + fields. +

Default Image Type

Lets you set what type of image you want to create by default either + RGB or Grayscale. +

Maximum Image Size

GIMP will warn you if you try to create images bigger than this value. +

Summary

Does the size & unit contra resolution image/unit sound a bit + complicated and hard to understand? Let us give you an example. + You are familiar with the metric system but as most designers you + are more familiar with a resolution based on pixels per inch (ppi + or dpi). Then you have to set image unit to millimeters (or + centimeters) while you will set the resolution unit to pixels/inch. + This will give you the comfort of working with two familiar units in + this case size measured in the metric system and resolution measured + in ppi. As default values that you have to set i.e size in this case + millimeters and the resolution in ppi is up to you and what type of + work you are involved in. +

Default Comment

Lets you enter a text which will be attached and saved as comment + with many file formats. +


PrevHomeNext
The Preferences DialogUpInterface Settings
\ No newline at end of file diff --git a/help/C/dialogs/preferences/preferences.html b/help/C/dialogs/preferences/preferences.html index 9530fbc3c9..c3f5edf1fe 100644 --- a/help/C/dialogs/preferences/preferences.html +++ b/help/C/dialogs/preferences/preferences.html @@ -1,39 +1,191 @@ - - - - - Preferences - - - - - - - - - -
Preferences

-

- In the preference dialog will you set nearly all adjustable values in Gimp, - some additional preferences values are still only stable in the gimprc file - in your personal Gimp directory. For further information of such values consult - your system wide gimprc file usually located in /usr/share/gimp or - /usr/local/share/gimp. -

- There are several categories that you can adjust. New - File which controls the default values of when you create a new file. - Display which controls transparency type and scaling. - Interface which controls preview, navigation, - help, image window, and tool options. - Environment which controls memory usage, file - saving and 8bit display settings. Session which - controls the session management in Gimp. Monitor - which controls how you manage monitor. - Directories which controls where Gimp loads additional resource such - as plug-ins, scripts, patterns are located. It also controls where Gimps - swap file is located. The swap file location is very important to Gimps - performance. -

- Index -

- +The Preferences Dialog
GIMP User Manual
PrevChapter 12. DialogsNext

The Preferences Dialog

In the preference dialog will you set nearly all adjustable values + in Gimp, some additional preferences values are still only stable + in the gimprc file in your personal Gimp directory. For further + information of such values consult your system wide gimprc file + usually located in /usr/local/etc/gimp/1.2. +

There are several categories that you can adjust. + New File + which controls the default values of when you create a new file and + the comment which is attached to the image by default. + Display + which controls transparency type and scaling. + Interface + which controls preview, navigation, help, image window, and tool options. + Environment + which controls memory usage, file saving and 8bit display settings. + Session + which controls the session management in Gimp. + Monitor + which controls how you manage monitor. + Directories + which controls where Gimp loads additional resource such as plug-ins, + scripts, patterns are located. It also controls where Gimps swap file + is located. The swap file location is very important to + GIMP's + performance. +


PrevHomeNext
Layers, Channels and Paths DialogUpNew File Settings
\ No newline at end of file diff --git a/help/C/dialogs/preferences/session.html b/help/C/dialogs/preferences/session.html index bf2195301b..943ffcf595 100644 --- a/help/C/dialogs/preferences/session.html +++ b/help/C/dialogs/preferences/session.html @@ -1,41 +1,194 @@ - - - - - Preferences / Session - - - - - - - -
Session

-

- Session management is a way to restore your Gimp session that was running - before you logged out. I.e leave Gimp running logout, and then login. Gimp - will now along with the Window Manager try to restore the Gimp session you - that was running before you logged out. You can disable/enable this feature - with the "Always Try to Restore Session" check button. Remember your desktop - environment must support session management otherwise this will not work. - NOTE: If you start Gimp from e.g a script to set special environment variables +Session Management

GIMP User Manual
PrevChapter 12. DialogsNext

Session Management

Session management is a way to restore your GIMP session that was + running before you logged out. I.e leave Gimp running logout, and + then login. GIMP will now along with the Window Manager try to restore + the GIMP session you that was running before you logged out. You can + disable/enable this feature with the "Always Try to Restore Session" + check button. +

- -

If you start Gimp from e.g a script to set special environment variables before Gimp is started, then it's not wise too use this option. -

- Gimp can save it's window positions i.e where e.g the gradient select dialog - is displayed on your display. If you use the Save Window Position at Exit - option then Gimp will save the position of e.g the brush dialog (if it is - opened). It can be useful to arrange your Gimp desktop with this option enabled - and then restart Gimp and disable the option. You will there by have a consistent - desktop each time you start Gimp. -

- If you have a tablet and use it with Gimp you will have several devices that - you can preconfigure in the - toolbox|File|Dialogs|Device Status. However - if you use Save Device Status on Exit option then the preconfiguration will - be over written and the last state before exit will be the new configuration. -

- Index -

- +

Gimp can save it's window positions i.e where e.g the + Gradient Select Dialog + is displayed on your display. If you use the Save Window Position at Exit + option then Gimp will save the position of e.g the brush dialog (if it is + opened). It can be useful to arrange your Gimp desktop with this option + enabled and then restart Gimp and disable the option. You will there by + have a consistent desktop each time you start Gimp. +

If you have a tablet and use it with Gimp you will have several devices + that you can preconfigure in the + Device Status. However + if you use Save Device Status on Exit option then the preconfiguration + will be overwritten and the last state before exit will be the new + configuration. +


PrevHomeNext
Environment SettingsUpMonitor Resolution
\ No newline at end of file diff --git a/help/C/dialogs/really_close.html b/help/C/dialogs/really_close.html index 7dcbbc9f8a..df546689e8 100644 --- a/help/C/dialogs/really_close.html +++ b/help/C/dialogs/really_close.html @@ -1,24 +1,146 @@ - - - - - Really_close - - - - - - - - - -
Really - Close

-

- Confirmation dialog for closing an image that has unsaved changes. - If you click Close then the image will close and you will lose - all unsaved changes. -

- Index -

- +Really Close
GIMP User Manual
PrevChapter 9. FileNext

Really Close

Confirmation dialog for closing an image that has unsaved changes. + If you click Close, the image will + close and all unsaved changes will be lost. +

\ No newline at end of file diff --git a/help/C/dialogs/really_quit.html b/help/C/dialogs/really_quit.html index 94ccc748ea..a3ca93fdb7 100644 --- a/help/C/dialogs/really_quit.html +++ b/help/C/dialogs/really_quit.html @@ -1,24 +1,150 @@ - - - - - Really_quit - - - - - - - - - -
Really - Quit

-

- Confirmation dialog for quitting Gimp and with unsaved changes in - one or more images. Clicking Quit will quit and all unsaved - changes will be lost. -

- Index -

- +Really Quit
GIMP User Manual
PrevChapter 9. FileNext

Really Quit

Confirmation dialog for quitting GIMP + with unsaved changes in one or more images. Clicking + Quit will quit and all unsaved changes will + be lost. +

\ No newline at end of file diff --git a/help/C/dialogs/revert_image.html b/help/C/dialogs/revert_image.html new file mode 100644 index 0000000000..bc00fe4b1e --- /dev/null +++ b/help/C/dialogs/revert_image.html @@ -0,0 +1,151 @@ +Revert Image
GIMP User Manual
PrevChapter 9. FileNext

Revert Image

The Revert entry can be found in the + image File menu. It allows you to discard all + changes that have been made since the image was last saved. +


PrevHomeNext
File Save or Save + AsUpLast Opened
\ No newline at end of file diff --git a/help/C/dialogs/scale_image.html b/help/C/dialogs/scale_image.html index e1a740bd23..bdeeec62a2 100644 --- a/help/C/dialogs/scale_image.html +++ b/help/C/dialogs/scale_image.html @@ -1,37 +1,207 @@ - - - - - Scale Image - - - - - - - - - -
Scale - Image

-

- Will scale the image content and the canvas size. The difference - between Scale Image and Set Canvas Size is that Set Canvas Size - will resize the canvas without scaling image content with out - scaling the image content (i.e it will only add some space around - the image or clip the image). NOTE: Scale Image will scale the - whole image. You can scale only the active layer with the - Scale Layer command. -

- You will set the new image size either by altering the size or the ratio. - You can also set the resolution of the image. If you lower the - resolution, the image will get bigger (in real units, but not in - pixels). You therefore have to - compensate it with a smaller pixels size if you still want the same image - size but a lower resolution. It will naturally be vice versa if - you increase the resolution. Pixel Dimension area is used to - resize the pixels. -

- Index -

- +Scale Image
GIMP User Manual
PrevChapter 4. ImageNext

Scale Image

Scales the image content and the canvas size. The difference + between Scale Image and Set + Canvas Size is that Set Canvas + Size will resize the canvas without scaling image + content. It will only add some space around the image or clip the + image. +

Scale Image will scale the whole + image. You can scale only the active layer with + Scale Layer. +

+

You set the new image size either by altering the size or the + ratio. You can also set the resolution of the image. If you lower + the resolution, the image will get bigger (in real units, but not + in pixels). You therefore have to compensate it with a smaller + pixels size if you still want the same image size but a lower + resolution. It will naturally be vice versa if you increase the + resolution. Pixel Dimension area is used to + resize the pixels. +


PrevHomeNext
Set Canvas SizeUpScale Layer Warning
\ No newline at end of file diff --git a/help/C/dialogs/scale_layer_warn.html b/help/C/dialogs/scale_layer_warn.html index 4ffbf1238a..71d6523267 100644 --- a/help/C/dialogs/scale_layer_warn.html +++ b/help/C/dialogs/scale_layer_warn.html @@ -1,45 +1,141 @@ - - - - - Scale Image - - - - - - - - - -
Layer Too Small
-

- [Placeholder: Documentation to come] -

-

- Additional Information -

-

- For further information see The Gimp User's Manual page XXXX and the Gimp - User's Tutorial page YYYY -

- Shortcut Key -

- Modifier -

- Drag and Drop -

- Xinput -

- ----DEV---- -

- Index -

- (/dialogs/scale_layer_warn.html) -

- Sorry but the help file for scale_layer_warn is not yet done. -

- /Karin & Olof -

-

- +Scale Layer Warning
GIMP User Manual
PrevChapter 4. ImageNext

Scale Layer Warning

Sorry, but the help page for "Scale Layer Warning" is not written yet. +


PrevHomeNext
Scale ImageUpDuplicate
\ No newline at end of file diff --git a/help/C/dialogs/set_canvas_size.html b/help/C/dialogs/set_canvas_size.html index 10dd9a4d2b..fd1fd64fd7 100644 --- a/help/C/dialogs/set_canvas_size.html +++ b/help/C/dialogs/set_canvas_size.html @@ -1,62 +1,232 @@ - - - - - Set Canvas Size - - - - - - - - - -
Set Canvas - Size

-

- The Image canvas is the boundary of the image. Even if you have a smaller - or larger layer than the image boundary size, the maximum image - area that you - can view is determined by the boundary size. -

- The size area will control how big or small your new canvas will be just - as when you created a new image. The Offset area will control - how your canvas is clipped or expanded. -

-

-
- Making the canvas smaller: -
- The offset fields will control how the upper left corner - of the old canvas will be positioned in the new canvas. The - best way to control the new location and how - it will be clipped is to drag the "canvas preview" in the - Offset frame to the chosen position. After that you make the - final adjustments with the spin buttons - (or type it in by hand). The thin outline is the new canvas - size and you - have to drag the old canvas to the right position so it will - be clipped according to your demands. -
- Making the canvas bigger: -
- The offset fields will control how the upper left corner of - the old canvas will be positioned in the new canvas . The - best way to control the new location and - how the canvas will be to be expanded is to drag the "canvas - preview" in the Offset frame to the correct position. After - that you make the final adjustments with - the spin buttons (or type it in by hand). The outline/canvas - is the new canvas size and you have to drag the old canvas - to the right position within it. -
-

- If you uncheck the chain in the Size area, you will be able to - have different proportions for the new canvas. It's therefore - possible, for example, to have a canvas which is smaller in X - direction and bigger in Y direction than before the resize. -

- Index -

- +Set Canvas Size
GIMP User Manual
PrevChapter 4. ImageNext

Set Canvas Size

The image canvas is the boundary of the image. Even if you have a + smaller or larger layer than the image boundary size, the maximum + image area that you can view is determined by the canvas size. +

The size area will control how big or small + your new canvas will be, just as when you created a new image. The + Offset area will control how your canvas is + clipped or expanded. +

+

Making the canvas smaller

The offset fields will control how the upper left corner + of the old canvas will be positioned in the new canvas. + The best way to control the new location and how it will + be clipped is to drag the "canvas preview" in + the Offset frame to the chosen + position. After that you make the final adjustments with + the spin buttons (or type it in by + hand). The thin outline is the new canvas size and you + have to drag the old canvas to the correct position so it + will be clipped according to your demands. +

Making the canvas bigger

The offset fields will control how the upper left corner + of the old canvas will be positioned in the new canvas. + The best way to control the new location and how the + canvas will be to be expanded is to drag the "canvas + preview" in the Offset frame + to the correct position. After that you make the final + adjustments with the spin buttons + (or type it in by hand). The outline/canvas is the new + canvas size and you have to drag the old canvas to the + desired position within it. +

+

If you uncheck the chain + in the Size area, you will be able to have + different proportions for the new canvas. It's thereby possible, + for example, to have a canvas which is smaller in X direction and + bigger in Y direction than before the resize. +


PrevHomeNext
OffsetUpScale Image
\ No newline at end of file diff --git a/help/C/dialogs/shrink_selection.html b/help/C/dialogs/shrink_selection.html index f3c32a50ae..1cb6735e57 100644 --- a/help/C/dialogs/shrink_selection.html +++ b/help/C/dialogs/shrink_selection.html @@ -1,24 +1,149 @@ - - - - - Shrink Selection - - - - - - - - - -
Shrink - Selection

-

- Will shrink the selection (not the content of the selection but - the selection itself) with an arbitrary amount measured in an - arbitrary unit. -

- Index -

- +Shrink Selection
GIMP User Manual
PrevChapter 4. ImageNext

Shrink Selection

Will shrink the selection (not the content of the selection but + the selection itself) by an arbitrary amount measured in the + set unit (usually pixels). +


PrevHomeNext
Sharpen SelectionUpGrow Selection
\ No newline at end of file diff --git a/help/C/dialogs/tip_of_the_day.html b/help/C/dialogs/tip_of_the_day.html index 69ce4d41e2..d803567865 100644 --- a/help/C/dialogs/tip_of_the_day.html +++ b/help/C/dialogs/tip_of_the_day.html @@ -1,27 +1,168 @@ - - - - - Tip of the Day - - - - - - - - - -
Tip of the - Day

-

- Will display a useful tip each time you start Gimp. You can navigate the - tip dialog by clicking on Previous and Next Tip. To disable - this, just uncheck "Show tip next time Gimp starts". -

- If you have any useful tips, please submit them to the GIMP - developers for possible inclusion in future releases. -

- Index -

- +Tip of the Day
GIMP User Manual
PrevChapter 3. ToolBoxNext

Tip of the Day

Displays a useful tip each time you start + GIMP. You can navigate the tip dialog + by clicking on Previous and + NextTip. To disable this, just uncheck + Show tip next time GIMP starts. +

If you have any useful tips, please submit them to the + GIMP developers for possible inclusion + in future releases. +


PrevHomeNext
Context HelpUpAbout Dialog
\ No newline at end of file diff --git a/help/C/dialogs/tool_options.html b/help/C/dialogs/tool_options.html index 883acb1255..7a0a7febb3 100644 --- a/help/C/dialogs/tool_options.html +++ b/help/C/dialogs/tool_options.html @@ -1,29 +1,159 @@ - - - - - Tool Options Dialog - - - - - - - - - -
Tool Options - Dialogs

-

- The tool option dialog will show the tool options for the active - tool. Please see Tool - index for a complete list of tools and tool - options. Depending on if you - have global or local tool options, the tools option dialog for - each tool can - look a bit different. Please see - Interface. -

- Index -

- +Tool Options Dialog
GIMP User Manual
PrevChapter 8. ToolsNext

Tool Options Dialog

The tool options dialog will show the tool + options for the active tool. Please see + Tool index for a + complete list of tools and tool options. Depending on if you have + global or local tool options, the tools + options dialog for each tool can look a bit different. + Please see Interface. +


PrevHomeNext
ToolsUpAirbrush
\ No newline at end of file diff --git a/help/C/dialogs/undo_history.html b/help/C/dialogs/undo_history.html index a03bc27975..14bd05926b 100644 --- a/help/C/dialogs/undo_history.html +++ b/help/C/dialogs/undo_history.html @@ -1,27 +1,190 @@ - - - - - Help Page for undo_history - - - - - - - - - -
Undo - History

-

- Shows the history of your image editing along with thumbnails. This makes - it very easy to jump back and forth in the command history. Tip: - Always use - Undo History when you work on hard and difficult tasks. It is a whole lot - easier to jump ten steps back just by clicking in the Undo History dialog - than doing it with Ctrl-Z. -

- Index -

- +Undo History
GIMP User Manual
PrevChapter 12. DialogsNext

Undo History

Shows the history of your image editing along with thumbnails. + This makes it very easy to jump back and forth in the command + history. +

Always use Undo History when you work + on hard and difficult tasks. It is a whole lot easier to jump + ten steps back just by clicking in the Undo + History dialog than doing it with + Ctrl-Z. +

+


PrevHomeNext
The High Contrast Display FilterUpThe Standard GIMP Color Selector
\ No newline at end of file diff --git a/help/C/file/Makefile.am b/help/C/file/Makefile.am index c7fd945198..022a3a9527 100644 --- a/help/C/file/Makefile.am +++ b/help/C/file/Makefile.am @@ -3,11 +3,10 @@ helpdatadir = $(gimpdatadir)/help/C/file helpdata_DATA = \ - close.html \ - index.html \ - last_opened.html \ - quit.html \ - revert.html + close.html \ + index.html \ + last_opened.html \ + quit.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/file/close.html b/help/C/file/close.html index 01003af702..aa51b15e7f 100644 --- a/help/C/file/close.html +++ b/help/C/file/close.html @@ -1,35 +1,154 @@ - - - - - Help Page for Close - - - - - - - - - - - -
- Close Help Page -

-

- Closes the currently active image window. If changes have been -made to the image, Gimp will ask you whether you are sure you want -continue - click "Close" in the popup dialog to continue, or "Cancel" -to leave the image open. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+W -

- Index

-

- - - +Close
GIMP User Manual
PrevChapter 9. FileNext

Close

Closes the active image window. If changes have been made + to the image, GIMP will ask you whether + you are sure you want to continue — click + Close in the popup dialog to continue, or + Cancel to leave the image open. +


PrevHomeNext
Last OpenedUpReally Close
\ No newline at end of file diff --git a/help/C/file/index.html b/help/C/file/index.html index 0df29eeb3e..d00fba3c81 100644 --- a/help/C/file/index.html +++ b/help/C/file/index.html @@ -1,35 +1,229 @@ - - - - - Index for file - - - - - - - - - - - -
- file Index -
-

- (/file/index.html)

- Top index

-

Topics in this directory:

- close
- last_opened
- quit
- revert
-

- /Karin & Olof -

-

- - - +File
GIMP User Manual
PrevNext

Chapter 9. File

File Operations Introduction

In this chapter we'll explain to you how can save your work to files, + load them again later and what file formats + GIMP knows. +


PrevHomeNext
Shear New Image
\ No newline at end of file diff --git a/help/C/file/last_opened.html b/help/C/file/last_opened.html index c783c346ff..76a4ef5cc8 100644 --- a/help/C/file/last_opened.html +++ b/help/C/file/last_opened.html @@ -1,39 +1,192 @@ - - - - - Help Page for Last Opened - - - - - - - - - - - -
- Last Opened Help Page -

-

- On the Gimp File menu in the toolbox above the "Quit" entry, -you will find a list of recently opened files. You can click any of -these entries to return to that file. -

- You can configure how many items are listed here in File -> -Preferences -> Interface -> Recent Documents List Size. The default -value is 4. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+x (where x is -a number between 1 and 4) -

- Index

-

- - - +Last Opened
GIMP User Manual
PrevChapter 9. FileNext

Last Opened

On the GIMP File + menu under the toolbox above the Quit + entry, you will find a list of recently opened files. You can + click any of these entries to open the file. +

You can configure how many entries are shown here in the + Interface section of the + Preferences. + Setting this to zero turns the list off altogether. +


PrevHomeNext
Revert ImageUpClose
\ No newline at end of file diff --git a/help/C/file/quit.html b/help/C/file/quit.html index 34daeac3b2..752694c1c5 100644 --- a/help/C/file/quit.html +++ b/help/C/file/quit.html @@ -1,35 +1,168 @@ - - - - - Help Page for Quit - - - - - - - - - - - -
- Quit Help Page -

-

- The "Quit" entry on both the toolbar and image file menus close -all open images and exit the Gimp. If any images are unsaved, Gimp will -prompt you - click "Quit" to contine or "Cancel" to leave the Gimp, and -the images, open. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Q -

- Index

-

- - - +Quit
GIMP User Manual
PrevChapter 9. FileNext

Quit

The Quit entry on both the toolbox and + image File menus closes all open images and + exits GIMP. If any images are unsaved, + GIMP will prompt you — + click Quit to continue or + Cancel to leave + GIMP and all images open. +


PrevHomeNext
Really CloseUpReally Quit
\ No newline at end of file diff --git a/help/C/file/revert.html b/help/C/file/revert.html deleted file mode 100644 index 885a7f3c8e..0000000000 --- a/help/C/file/revert.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Help Page for Revert - - - - - - - - - - - -
- Revert Help Page -

-

- The revert entry can be found on the image File menu. It allows -you to discard all changes that have been made since the image was last -saved. -

- Index

-

- - - diff --git a/help/C/file_formats.html b/help/C/file_formats.html new file mode 100644 index 0000000000..ba997cc73d --- /dev/null +++ b/help/C/file_formats.html @@ -0,0 +1,1002 @@ +File Formats
GIMP User Manual
PrevChapter 2. Using GIMPNext

File Formats

GIMP has support for a wide range of + still image and video file formats. +

Supported Formats

The following table lists the formats supported by + GIMP: +

Table 2-1. File Formats

 ReadWrite
AA - ASCII ArtNY
AVI - Audio/Video InterleaveYY
BMP - BitmapYY
C - "C" SourceNY
CEL - CIMFast Event LanguageYY
FITS - Flexible Image Transport SystemYY
FLI - Autodesk FLIC AnimationYY
GIF - Graphics Interchange Format + [a] + YY
H - "C" Header FileNY
HRZ - Slow Scan TelevisionYY
HTML - Formatted TableNY
JPEG - Joint Photographics Expert GroupYY
MIFF - Magick Image File FormatYY
MPEG - Motion Picture Expert GroupYN
PCX - PC PaintbrushYY
PIX - Inset Systems BitmapYY
PNG - Portable Network GraphicsYY
PNM - Portable AnymapYY
PSD - Photoshop DocumentYN
PSP - Paint Shop ProYN
PS - PostScriptYY
SGI - Silicon GraphicsYY
Sunras - Sun RasterYY
TGA - Targa BitmapYY
TIFF - Tagged Image File FormatYY
WMF - Windows Meta FileYN
XBM - X BitmapYY
XCF - GIMP NativeYY
XWD - X Window DumpYY
XPM - X PixmapYY
Notes:
a. + You need a license from Unisys to legally save files in this format. +

What Format Should I Use?

When saving a file, you need to decide which file format to + use. There are descriptions of some important and popular formats + below to help you choose the right one for your images. +

XCF: GIMP's + Native Format

If you're saving an image that's not + "finished" and intend to continue working on + the image in GIMP later, you + should always save it as XCF. + XCF preserves all of your image's + layers, channels, and masks, as well as your paths, + guides, selections, and other important details. +

However, XCF is only suitable for + GIMP. If you want to share your + image or put the image on the web, you should probably use + another file format as well as + XCF because most web + browsers, image viewers, and other software packages + cannot read XCF. +

PNG: Portable Network Graphics

PNG can preserve all the transparency + and color of your original image and uses powerful + lossless compression to reduce file sizes. In particular, + computer-generated images usually compress very well. +

Although PNG supports smooth + transparency, today's most popular web browsers still + don't. While we wait for Microsoft to catch up, you'll + probably want to stick with non-transparent PNGs on web + pages. You can use transparency effectively elsewhere + though. +

JPEG: Compressed Photographic images

Photographs and other images from the real world (which + include most images taken with digital cameras and color + scans) can be compressed very effectively with + JPEG. Usually screenshots, logos, and + computer generated images will not benefit from + JPEG. +

The JPEG method is lossy, which means + that, although the saved image will appear almost + identical to the original, it will actually have hidden + detail removed. You should not use it on images that you + intend to do additional processing on later because the + loss is exaggerated by repeated use. +

GIMP's JPEG filter uses JFIF + files for compatability with most existing software. It + allows you to adjust the "quality" of the + image and see immediately how the saved image will look + and how big the file will be. +

GIF: Compuserve GIF

Unlike all the other file formats described here + GIF requires the use of a colormap. + This means that a maximum of 256 different colors will be + preserved in the saved image. + GIMP can handle the conversion + automatically, but the results may sometimes be + disappointing due to this limitation of GIF. +

Despite the poor compression and limited number of colors, + there are two desirable features of GIF + for web designers. They are simple forms of transparency + and animation. GIMP's + GIF filter supports both of these + features. +

Support for creating GIFs may not be included in your + version of GIMP due to patent + problems. +

BMP: Windows Bitmap

This format is often used by applications for Microsoft + Windows. Full color images can + be stored in this format, but shortcomings of the + compression scheme mean that the resulting files may be + quite large. Image resolution is preserved, but no other + metadata is stored in the BMP format. +

Some web browsers have included support for viewing + BMP images but this is not common, so you should avoid + using them on the web. +

XPM: X Pixmap

This format is sometimes used by applications for the + X Window System. The files + created can be compiled directly into a program by a + software developer, but this convenience comes at a price + of much increased file size. You will probably already + know if this feature is useful to you. +

Some web browsers have included support for viewing XPM + images but this is not common, so you should avoid using + them on the web. +

TIFF: Tagged Image File Format

One of the oldest formats still commonly in use today, + TIFF is a very powerful but complicated + format. If you need to export images from + GIMP to a package which doesn't + support any of the other formats mentioned earlier in this + section, it will probably accept TIFF. +

TIFF can preserve all the transparency + and color of your original image, but you may lose some of + this information when importing the + TIFF into another package. +


PrevHomeNext
The Main InterfaceUpToolBox
\ No newline at end of file diff --git a/help/C/filters/Makefile.am b/help/C/filters/Makefile.am index 429d2455ae..fa536469e2 100644 --- a/help/C/filters/Makefile.am +++ b/help/C/filters/Makefile.am @@ -3,167 +3,48 @@ helpdatadir = $(gimpdatadir)/help/C/filters helpdata_DATA = \ - alienmap.html \ - alienmap2.html \ - align_layers.html \ - animationplay.html \ - animoptimize.html \ - apply_lens.html \ - autocrop.html \ - autostretch_hsv.html \ - avi.html \ - blinds.html \ - blur.html \ - bmp.html \ - borderaverage.html \ - bumpmap.html \ - bz2.html \ - c_astretch.html \ - cel.html \ - checkerboard.html \ - cml_explorer.html \ - color_enhance.html \ - colorify.html \ - compose.html \ - convmatrix.html \ - csource.html \ - cubism.html \ - curve_bend.html \ - dataurl.html \ - dbbrowser.html \ - decompose.html \ - deinterlace.html \ - depthmerge.html \ - despeckle.html \ - destripe.html \ - diffraction.html \ - displace.html \ - edge.html \ - emboss.html \ - engrave.html \ - exchange.html \ - faxg3.html \ - film.html \ - fits.html \ - flame.html \ - flarefx.html \ - fp.html \ - fractalexplorer.html \ - fractaltrace.html \ - gap_filter.html \ - gap_plugins.html \ - gauss_iir.html \ - gauss_rle.html \ - gbr.html \ - gdyntext.html \ - gfig.html \ - gflare.html \ - gfli.html \ - gicon.html \ - gif.html \ - gifload.html \ - gimp_xcf_load.html \ - gimp_xcf_save.html \ - gimpressionist.html \ - glasstile.html \ - gpb.html \ - gqbist.html \ - gradmap.html \ - grid.html \ - gtm.html \ - guillotine.html \ - gz.html \ - header.html \ - hot.html \ - hrz.html \ - ifscompose.html \ - illusion.html \ - imagemap.html \ - index.html \ - iwarp.html \ - jigsaw.html \ - jpeg.html \ - laplace.html \ - lic.html \ - lighting.html \ - mail.html \ - mapcolor.html \ - mapobject.html \ - max_rgb.html \ - maze.html \ - mblur.html \ - miff.html \ - mosaic.html \ - mpeg.html \ - newsprint.html \ - nlfilt.html \ - noisify.html \ - normalize.html \ - nova.html \ - oilify.html \ - pagecurl.html \ - papertile.html \ - pat.html \ - pcx.html \ - pix.html \ - pixelize.html \ - plasma.html \ - plugindetails.html \ - png.html \ - pnm.html \ - polar.html \ - print.html \ - ps.html \ - psd.html \ - psp.html \ - randomize.html \ - rcm.html \ - repeat_last.html \ - reshow_last.html \ - ripple.html \ - rotate.html \ - sample_colorize.html \ - scatter_hsv.html \ - screenshot.html \ - script-fu.html \ - sel2path.html \ - sel_gauss.html \ - semiflatten.html \ - sgi.html \ - sharpen.html \ - shift.html \ - sinus.html \ - smooth_palette.html \ - snoise.html \ - sobel.html \ - sparkle.html \ - spheredesigner.html \ - spread.html \ - struc.html \ - sunras.html \ - tga.html \ - threshold_alpha.html \ - tiff.html \ - tile.html \ - tileit.html \ - tiler.html \ - uniteditor.html \ - unsharp.html \ - url.html \ - video.html \ - vinvert.html \ - vpropagate.html \ - warp.html \ - waves.html \ - webbrowser.html \ - whirlpinch.html \ - wind.html \ - wmf.html \ - xbm.html \ - xjt.html \ - xpm.html \ - xwd.html \ - zealouscrop.html + undocumented_filter.html \ + repeat_last.html \ + reshow_last.html \ + \ + applycanvas.html \ + blinds.html \ + blur.html \ + bz2.html \ + cubism.html \ + fits.html \ + gauss_iir.html \ + gauss_rle.html \ + gpb.html \ + gqbist.html \ + gtm.html \ + gz.html \ + hrz.html \ + index.html \ + jpeg.html \ + miff.html \ + oilify.html \ + pat.html \ + pixelize.html \ + png.html \ + pnm.html \ + print.html \ + psd.html \ + psp.html \ + ripple.html \ + scatter_hsv.html \ + semiflatten.html \ + sgi.html \ + sharpen.html \ + shift.html \ + sunras.html \ + tga.html \ + tiff.html \ + tile.html \ + url.html \ + vinvert.html \ + wmf.html \ + xwd.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/filters/alienmap.html b/help/C/filters/alienmap.html deleted file mode 100644 index 2df1abf305..0000000000 --- a/help/C/filters/alienmap.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for alienmap - - - - - - - - - - - -
- alienmap help page -
-

- Index

- (/filters/alienmap.html)

- Sorry but the help file for alienmap is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/alienmap2.html b/help/C/filters/alienmap2.html deleted file mode 100644 index b7472f3e07..0000000000 --- a/help/C/filters/alienmap2.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for alienmap2 - - - - - - - - - - - -
- alienmap2 help page -
-

- Index

- (/filters/alienmap2.html)

- Sorry but the help file for alienmap2 is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/align_layers.html b/help/C/filters/align_layers.html deleted file mode 100644 index 616cd19ec2..0000000000 --- a/help/C/filters/align_layers.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for align_layers - - - - - - - - - - - -
- align_layers help page -
-

- Index

- (/filters/align_layers.html)

- Sorry but the help file for align_layers is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/animationplay.html b/help/C/filters/animationplay.html deleted file mode 100644 index f5b935826f..0000000000 --- a/help/C/filters/animationplay.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for animationplay - - - - - - - - - - - -
- animationplay help page -
-

- Index

- (/filters/animationplay.html)

- Sorry but the help file for animationplay is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/animoptimize.html b/help/C/filters/animoptimize.html deleted file mode 100644 index 581fe3f282..0000000000 --- a/help/C/filters/animoptimize.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for animoptimize - - - - - - - - - - - -
- animoptimize help page -
-

- Index

- (/filters/animoptimize.html)

- Sorry but the help file for animoptimize is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/apply_lens.html b/help/C/filters/apply_lens.html deleted file mode 100644 index 69e118a9c0..0000000000 --- a/help/C/filters/apply_lens.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for apply_lens - - - - - - - - - - - -
- apply_lens help page -
-

- Index

- (/filters/apply_lens.html)

- Sorry but the help file for apply_lens is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/applycanvas.html b/help/C/filters/applycanvas.html new file mode 100644 index 0000000000..0122406772 --- /dev/null +++ b/help/C/filters/applycanvas.html @@ -0,0 +1,212 @@ + Description for Apply Canvas Filter
GIMP User Manual
PrevChapter 13. FiltersNext

Description for Apply Canvas Filter

Located in Filters + Artistic Apply + Canvas, this filter applies a canvas-like effect to + the current image. It textures the image as if it were an + artist's canvas. +

Compare this filter to the GIMPressionist filter.

Description of Apply Canvas Dialog

The first four selections, the radio buttons + Top-Right, Top-Left, + Bottom-Left, and + Bottom-Right, determine the direction in + which the canvas is drawn. It causes a slight variation in the + effect. Depth determines how intense the + effect is. A deeper canvas is more pronounced. Only + experimentation can allow you to find the appropriate depth for + your purposes. +


PrevHomeNext
Repeat LastUpBlinds
\ No newline at end of file diff --git a/help/C/filters/autocrop.html b/help/C/filters/autocrop.html deleted file mode 100644 index 89d87b3638..0000000000 --- a/help/C/filters/autocrop.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for autocrop - - - - - - - - - - - -
- autocrop help page -
-

- Index

- (/filters/autocrop.html)

- Sorry but the help file for autocrop is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/autostretch_hsv.html b/help/C/filters/autostretch_hsv.html deleted file mode 100644 index 90167b0b70..0000000000 --- a/help/C/filters/autostretch_hsv.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for autostretch_hsv - - - - - - - - - - - -
- autostretch_hsv help page -
-

- Index

- (/filters/autostretch_hsv.html)

- Sorry but the help file for autostretch_hsv is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/avi.html b/help/C/filters/avi.html deleted file mode 100644 index b8dc036366..0000000000 --- a/help/C/filters/avi.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for avi - - - - - - - - - - - -
- avi help page -
-

- avi

- (/filters/avi.html)

- Sorry but the help file for bmp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/blinds.html b/help/C/filters/blinds.html deleted file mode 100644 index e8a44c8bd9..0000000000 --- a/help/C/filters/blinds.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for blinds - - - - - - - - - - - -
- blinds help page -
-

- Index

- (/filters/blinds.html)

- Sorry but the help file for blinds is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/blur.html b/help/C/filters/blur.html index 7c9ad683fe..9a1472a0c0 100644 --- a/help/C/filters/blur.html +++ b/help/C/filters/blur.html @@ -1,31 +1,158 @@ - - - - - Help Page for blur - - - - - - - - - - - -
- blur help page -
-

- Index

- (/filters/blur.html)

- Sorry but the help file for blur is not yet done. -

- /Karin & Olof -

-

- - - +Blur
GIMP User Manual
PrevChapter 13. FiltersNext

Blur

The blur filter makes your image look out of focus by randomly + displacing pixels. You can alter the amount by which the image is + blurred (the distance that pixels are displaced) by adjusting + repeat value (between 1 and 100). +

The Random Seed is how + GIMP calculates which pixels to + displace — you can either set a numeric value which will cause all + repeats (if a repeat value is set) to use the same seed, or you + can use the current time, which will mean that each repeat will + use a different seed. +

\ No newline at end of file diff --git a/help/C/filters/bmp.html b/help/C/filters/bmp.html deleted file mode 100644 index ec09984998..0000000000 --- a/help/C/filters/bmp.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for bmp - - - - - - - - - - - -
- bmp help page -
-

- Index

- (/filters/bmp.html)

- Sorry but the help file for bmp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/borderaverage.html b/help/C/filters/borderaverage.html deleted file mode 100644 index 671ce4f2dc..0000000000 --- a/help/C/filters/borderaverage.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for borderaverage - - - - - - - - - - - -
- borderaverage help page -
-

- Index

- (/filters/borderaverage.html)

- Sorry but the help file for borderaverage is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/bumpmap.html b/help/C/filters/bumpmap.html deleted file mode 100644 index 70f3778f88..0000000000 --- a/help/C/filters/bumpmap.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for bumpmap - - - - - - - - - - - -
- bumpmap help page -
-

- Index

- (/filters/bumpmap.html)

- Sorry but the help file for bumpmap is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/bz2.html b/help/C/filters/bz2.html index bab02789bb..1c615a0f03 100644 --- a/help/C/filters/bz2.html +++ b/help/C/filters/bz2.html @@ -1,31 +1,179 @@ - - - - - Help Page for bz2 - - - - - - - - - - - -
- bz2 help page -
-

- Index

- (/filters/bz2.html)

- Sorry but the help file for bz2 is not yet done. -

- /Karin & Olof -

-

- - - +BZ2
GIMP User Manual
PrevChapter 13. FiltersNext

BZ2

GIMP can load and save images which + have been bzip2 compressed. To save a bziped file, you can either + use "Save By Extension" or "bz2". You need to name your file in + the format filename.extension.bz2 where + extension is an extension for a supported file format. For + example, to save a bziped TIFF file called + foo, you would enter + foo.tif.bz2 as the filename. +

For this plug-in to work you need bzip2 + — you can check if you have this by typing bzip2 + --version at a terminal window. If you get + bzip: command not found or + similar, you don't have bzip2. +


PrevHomeNext
BlurUpCubism
\ No newline at end of file diff --git a/help/C/filters/cel.html b/help/C/filters/cel.html deleted file mode 100644 index 2e2ef71ec8..0000000000 --- a/help/C/filters/cel.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for cel - - - - - - - - - - - -
- cel help page -
-

- Index

- (/filters/cel.html)

- Sorry but the help file for cel is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/checkerboard.html b/help/C/filters/checkerboard.html deleted file mode 100644 index dfa1499c7f..0000000000 --- a/help/C/filters/checkerboard.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for checkerboard - - - - - - - - - - - -
- checkerboard help page -
-

- Index

- (/filters/checkerboard.html)

- Sorry but the help file for checkerboard is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/cml_explorer.html b/help/C/filters/cml_explorer.html deleted file mode 100644 index 6c26d10552..0000000000 --- a/help/C/filters/cml_explorer.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for cml_explorer - - - - - - - - - - - -
- cml_explorer help page -
-

- Index

- (/filters/cml_explorer.html)

- Sorry but the help file for cml_explorer is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/color_enhance.html b/help/C/filters/color_enhance.html deleted file mode 100644 index 14e7760b6a..0000000000 --- a/help/C/filters/color_enhance.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for color_enhance - - - - - - - - - - - -
- color_enhance help page -
-

- Index

- (/filters/color_enhance.html)

- Sorry but the help file for color_enhance is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/compose.html b/help/C/filters/compose.html deleted file mode 100644 index 39fd6bb999..0000000000 --- a/help/C/filters/compose.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for compose - - - - - - - - - - - -
- compose help page -
-

- Index

- (/filters/compose.html)

- Sorry but the help file for compose is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/convmatrix.html b/help/C/filters/convmatrix.html deleted file mode 100644 index 91683b9c52..0000000000 --- a/help/C/filters/convmatrix.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for convmatrix - - - - - - - - - - - -
- convmatrix help page -
-

- Index

- (/filters/convmatrix.html)

- Sorry but the help file for convmatrix is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/csource.html b/help/C/filters/csource.html deleted file mode 100644 index 7d3f7dc475..0000000000 --- a/help/C/filters/csource.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for csource - - - - - - - - - - - -
- csource help page -
-

- Index

- (/filters/csource.html)

- Sorry but the help file for csource is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/cubism.html b/help/C/filters/cubism.html index 718c4a5cc1..b9b0c74376 100644 --- a/help/C/filters/cubism.html +++ b/help/C/filters/cubism.html @@ -1,31 +1,280 @@ - - - - - Help Page for cubism - - - - - - - - - - - -
- cubism help page -
-

- Index

- (/filters/cubism.html)

- Sorry but the help file for cubism is not yet done. -

- /Karin & Olof -

-

- - - +Cubism
GIMP User Manual
PrevChapter 13. FiltersNext

Cubism

Located under Filters + Artistic + Cubism..., this + plug-in modifies your image so that it appears to be constructed + of small squares of semitransparent tissue paper. It is very + useful for things such a background images. The level of + distortion makes it less useful for a photograph. +

The Cubism Dialog

+ When you select Cubism... from the menu, + the Cubism Dialog is opened. It contains + three options that allow you to control the effect of the filter. +

Use Background Color

This select box determines whether or not the background + color displayed in the Toolbox + should be used when applying the filter. If it is not + checked, black will be used instead. +

Tile Size

This variable determines the size, in pixels, of the squares + to be used. This is, in effect, the size of the little + squares of tissue paper to used in generating the new + image. The slider can be used or the exact pixel size can be + entered into the text box, or the arrow buttons can be + used. +

Tile Saturation

This variable specifies how intense the color of the + squares should be. This is, in effect, the opacity of the + little squares of tissue paper. A high number makes the + squares very strongly defined and doesn't allow lower squares + to show through. A low number allows the lower squares to be + more visible through the higher ones and causes a little more + blending in the colors. If this is set to 0 and + Use Background Color is not checked, + the entire area will be black. If it is checked and the value + here is zero, the background color will fill the entire + area. +

A little experimentation will enable you to find the result you + desire. It is possible to undo this process either from the + menu or with the undo shortcut, so experiment freely.

If you are using this to generate background images for webpages + and the like, work with a small range of colors painted + randomly on a small square. Then apply the Cubism filter with + the desired settings. As a last step, try + Filters Map + Make Seamless to make the image so + it will tile seamlessly in your background.

\ No newline at end of file diff --git a/help/C/filters/curve_bend.html b/help/C/filters/curve_bend.html deleted file mode 100644 index 00a4083ee9..0000000000 --- a/help/C/filters/curve_bend.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for curve_bend - - - - - - - - - - - -
- curve_bend help page -
-

- Index

- (/filters/curve_bend.html)

- Sorry but the help file for curve_bend is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/dataurl.html b/help/C/filters/dataurl.html deleted file mode 100644 index 01702fa0d0..0000000000 --- a/help/C/filters/dataurl.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for dataurl - - - - - - - - - - - -
- dataurl help page -
-

- Index

- (/filters/dataurl.html)

- Sorry but the help file for bmp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/dbbrowser.html b/help/C/filters/dbbrowser.html deleted file mode 100644 index 59bd736da7..0000000000 --- a/help/C/filters/dbbrowser.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for dbbrowser - - - - - - - - - - - -
- dbbrowser help page -
-

- Index

- (/filters/dbbrowser.html)

- Sorry but the help file for dbbrowser is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/decompose.html b/help/C/filters/decompose.html deleted file mode 100644 index a0aeb2a78e..0000000000 --- a/help/C/filters/decompose.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for decompose - - - - - - - - - - - -
- decompose help page -
-

- Index

- (/filters/decompose.html)

- Sorry but the help file for decompose is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/deinterlace.html b/help/C/filters/deinterlace.html deleted file mode 100644 index a3ff24071d..0000000000 --- a/help/C/filters/deinterlace.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for deinterlace - - - - - - - - - - - -
- deinterlace help page -
-

- Index

- (/filters/deinterlace.html)

- Sorry but the help file for deinterlace is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/depthmerge.html b/help/C/filters/depthmerge.html deleted file mode 100644 index 8ffc1b2e0d..0000000000 --- a/help/C/filters/depthmerge.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for depthmerge - - - - - - - - - - - -
- depthmerge help page -
-

- Index

- (/filters/depthmerge.html)

- Sorry but the help file for depthmerge is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/despeckle.html b/help/C/filters/despeckle.html deleted file mode 100644 index 871e254a28..0000000000 --- a/help/C/filters/despeckle.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for despeckle - - - - - - - - - - - -
- despeckle help page -
-

- Index

- (/filters/despeckle.html)

- Sorry but the help file for despeckle is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/destripe.html b/help/C/filters/destripe.html deleted file mode 100644 index 5f0e51e0d4..0000000000 --- a/help/C/filters/destripe.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for destripe - - - - - - - - - - - -
- destripe help page -
-

- Index

- (/filters/destripe.html)

- Sorry but the help file for destripe is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/diffraction.html b/help/C/filters/diffraction.html deleted file mode 100644 index 3fa3ca8f17..0000000000 --- a/help/C/filters/diffraction.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for diffraction - - - - - - - - - - - -
- diffraction help page -
-

- Index

- (/filters/diffraction.html)

- Sorry but the help file for diffraction is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/displace.html b/help/C/filters/displace.html deleted file mode 100644 index e0d61a9bf1..0000000000 --- a/help/C/filters/displace.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for displace - - - - - - - - - - - -
- displace help page -
-

- Index

- (/filters/displace.html)

- Sorry but the help file for displace is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/edge.html b/help/C/filters/edge.html deleted file mode 100644 index 0773aa60a1..0000000000 --- a/help/C/filters/edge.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for edge - - - - - - - - - - - -
- edge help page -
-

- Index

- (/filters/edge.html)

- Sorry but the help file for edge is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/emboss.html b/help/C/filters/emboss.html deleted file mode 100644 index 1295024c44..0000000000 --- a/help/C/filters/emboss.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for emboss - - - - - - - - - - - -
- emboss help page -
-

- Index

- (/filters/emboss.html)

- Sorry but the help file for emboss is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/engrave.html b/help/C/filters/engrave.html deleted file mode 100644 index e21bb0d00d..0000000000 --- a/help/C/filters/engrave.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for engrave - - - - - - - - - - - -
- engrave help page -
-

- Index

- (/filters/engrave.html)

- Sorry but the help file for engrave is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/exchange.html b/help/C/filters/exchange.html deleted file mode 100644 index c80cad8a4c..0000000000 --- a/help/C/filters/exchange.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for exchange - - - - - - - - - - - -
- exchange help page -
-

- Index

- (/filters/exchange.html)

- Sorry but the help file for exchange is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/faxg3.html b/help/C/filters/faxg3.html deleted file mode 100644 index 2240e1b370..0000000000 --- a/help/C/filters/faxg3.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for faxg3 - - - - - - - - - - - -
- faxg3 help page -
-

- Index

- (/filters/faxg3.html)

- Sorry but the help file for faxg3 is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/film.html b/help/C/filters/film.html deleted file mode 100644 index 230de8e691..0000000000 --- a/help/C/filters/film.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for film - - - - - - - - - - - -
- film help page -
-

- Index

- (/filters/film.html)

- Sorry but the help file for film is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/fits.html b/help/C/filters/fits.html index 36116ea846..f74bf31888 100644 --- a/help/C/filters/fits.html +++ b/help/C/filters/fits.html @@ -1,32 +1,165 @@ - - - - - Help Page for fits - - - - - - - - - - - -
- FITS -

-

- Gimp can read and write FITS images. The FITS (Flexible Image -Transport System) format was developed by NASA for cross platform -transfer of astronmical data. Note that not all FITS files will contain -an image - the format is also used for the transport of other data such -as tables and matrices. -

- Index -

- - - +FITS
GIMP User Manual
PrevChapter 13. FiltersNext

FITS

GIMP can read and write + FITS images. The FITS + (Flexible Image Transport System) format was developed by + NASA for cross platform transfer of astronmical + data. Note that not all FITS files will contain + an image — the format is also used for the transport of other data + such as tables and matrices. +

\ No newline at end of file diff --git a/help/C/filters/flame.html b/help/C/filters/flame.html deleted file mode 100644 index 79461cd874..0000000000 --- a/help/C/filters/flame.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for flame - - - - - - - - - - - -
- flame help page -
-

- Index

- (/filters/flame.html)

- Sorry but the help file for flame is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/flarefx.html b/help/C/filters/flarefx.html deleted file mode 100644 index b26a83d23f..0000000000 --- a/help/C/filters/flarefx.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for flarefx - - - - - - - - - - - -
- flarefx help page -
-

- Index

- (/filters/flarefx.html)

- Sorry but the help file for flarefx is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/fp.html b/help/C/filters/fp.html deleted file mode 100644 index 4262c12fcb..0000000000 --- a/help/C/filters/fp.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for fp - - - - - - - - - - - -
- fp help page -
-

- Index

- (/filters/fp.html)

- Sorry but the help file for fp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/fractalexplorer.html b/help/C/filters/fractalexplorer.html deleted file mode 100644 index 122e86c419..0000000000 --- a/help/C/filters/fractalexplorer.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for fractalexplorer - - - - - - - - - - - -
- fractalexplorer help page -
-

- Index

- (/filters/fractalexplorer.html)

- Sorry but the help file for fractalexplorer is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/fractaltrace.html b/help/C/filters/fractaltrace.html deleted file mode 100644 index e11503bc02..0000000000 --- a/help/C/filters/fractaltrace.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for fractaltrace - - - - - - - - - - - -
- fractaltrace help page -
-

- Index

- (/filters/fractaltrace.html)

- Sorry but the help file for fractaltrace is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gap_filter.html b/help/C/filters/gap_filter.html deleted file mode 100644 index 05b79b47d9..0000000000 --- a/help/C/filters/gap_filter.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gap_filter - - - - - - - - - - - -
- gap_filter help page -
-

- Index

- (/filters/gap_filter.html)

- Sorry but the help file for gap_filter is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gap_plugins.html b/help/C/filters/gap_plugins.html deleted file mode 100644 index 8e417993a9..0000000000 --- a/help/C/filters/gap_plugins.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gap_plugins - - - - - - - - - - - -
- gap_plugins help page -
-

- Index

- (/filters/gap_plugins.html)

- Sorry but the help file for gap_plugins is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gauss_iir.html b/help/C/filters/gauss_iir.html index 008b3fd3ba..94ec96a167 100644 --- a/help/C/filters/gauss_iir.html +++ b/help/C/filters/gauss_iir.html @@ -1,31 +1,161 @@ - - - - - Help Page for gauss_iir - - - - - - - - - - - -
- gauss_iir help page -
-

- Index

- (/filters/gauss_iir.html)

- Sorry but the help file for gauss_iir is not yet done. -

- /Karin & Olof -

-

- - - +IIR Gaussian Blur
GIMP User Manual
PrevChapter 13. FiltersNext

IIR Gaussian Blur

The IIR Gaussian Blur plugin displaces pixels + in a radius from a central point defined in the dialog. A higher + value will produce a higher amount of blur. You can also make the + blur act in one direction more than the other by clicking the + chain link so that it is broken, and altering the radii. +

By altering the ratio of horizontal to vertical blur, you can give + the effect of a motion blur. +


PrevHomeNext
GIMP Table MagicUpRLE Gaussian Blur
\ No newline at end of file diff --git a/help/C/filters/gauss_rle.html b/help/C/filters/gauss_rle.html index 41991fdb83..9794bcf555 100644 --- a/help/C/filters/gauss_rle.html +++ b/help/C/filters/gauss_rle.html @@ -1,31 +1,158 @@ - - - - - Help Page for gauss_rle - - - - - - - - - - - -
- gauss_rle help page -
-

- Index

- (/filters/gauss_rle.html)

- Sorry but the help file for gauss_rle is not yet done. -

- /Karin & Olof -

-

- - - +RLE Gaussian Blur
GIMP User Manual
PrevChapter 13. FiltersNext

RLE Gaussian Blur

The RLE Gaussian Blur plugin displaces pixels + in a radius from a central point defined in the dialog. A higher + value will produce a higher amount of blur. You can also make the + blur act in one direction more than the other by clicking the + chain link so that it is broken, and altering the radii. +

By altering the ratio of horizontal to vertical blur, you can give + the effect of a motion blur. +


PrevHomeNext
IIR Gaussian BlurUpGZ
\ No newline at end of file diff --git a/help/C/filters/gbr.html b/help/C/filters/gbr.html deleted file mode 100644 index f3a145c211..0000000000 --- a/help/C/filters/gbr.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gbr - - - - - - - - - - - -
- gbr help page -
-

- Index

- (/filters/gbr.html)

- Sorry but the help file for gbr is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gdyntext.html b/help/C/filters/gdyntext.html deleted file mode 100644 index 6a33fb9e2e..0000000000 --- a/help/C/filters/gdyntext.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gdyntext - - - - - - - - - - - -
- gdyntext help page -
-

- Index

- (/filters/gdyntext.html)

- Sorry but the help file for gdyntext is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gfig.html b/help/C/filters/gfig.html deleted file mode 100644 index 4c2ffd2dc3..0000000000 --- a/help/C/filters/gfig.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gfig - - - - - - - - - - - -
- gfig help page -
-

- Index

- (/filters/gfig.html)

- Sorry but the help file for gfig is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gflare.html b/help/C/filters/gflare.html deleted file mode 100644 index be2bb4395f..0000000000 --- a/help/C/filters/gflare.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gflare - - - - - - - - - - - -
- gflare help page -
-

- Index

- (/filters/gflare.html)

- Sorry but the help file for gflare is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gfli.html b/help/C/filters/gfli.html deleted file mode 100644 index d8fe8b6e90..0000000000 --- a/help/C/filters/gfli.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gfli - - - - - - - - - - - -
- gfli help page -
-

- Index

- (/filters/gfli.html)

- Sorry but the help file for gfli is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gicon.html b/help/C/filters/gicon.html deleted file mode 100644 index 49353af9c5..0000000000 --- a/help/C/filters/gicon.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gicon - - - - - - - - - - - -
- gicon help page -
-

- Index

- (/filters/gicon.html)

- Sorry but the help file for gicon is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gif.html b/help/C/filters/gif.html deleted file mode 100644 index 89da9d4b7c..0000000000 --- a/help/C/filters/gif.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gif - - - - - - - - - - - -
- gif help page -
-

- Index

- (/filters/gif.html)

- Sorry but the help file for gif is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gifload.html b/help/C/filters/gifload.html deleted file mode 100644 index 295ec3beae..0000000000 --- a/help/C/filters/gifload.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gifload - - - - - - - - - - - -
- gifload help page -
-

- Index

- (/filters/gifload.html)

- Sorry but the help file for gifload is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gimp_xcf_load.html b/help/C/filters/gimp_xcf_load.html deleted file mode 100644 index 216d19fa2e..0000000000 --- a/help/C/filters/gimp_xcf_load.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gimp_xcf_load - - - - - - - - - - - -
- gimp_xcf_load help page -
-

- Index

- (/filters/gimp_xcf_load.html)

- Sorry but the help file for gimp_xcf_load is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gimp_xcf_save.html b/help/C/filters/gimp_xcf_save.html deleted file mode 100644 index ad786e7dc3..0000000000 --- a/help/C/filters/gimp_xcf_save.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gimp_xcf_save - - - - - - - - - - - -
- gimp_xcf_save help page -
-

- Index

- (/filters/gimp_xcf_save.html)

- Sorry but the help file for gimp_xcf_save is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gimpressionist.html b/help/C/filters/gimpressionist.html deleted file mode 100644 index fc3e22af7f..0000000000 --- a/help/C/filters/gimpressionist.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gimpressionist - - - - - - - - - - - -
- gimpressionist help page -
-

- Index

- (/filters/gimpressionist.html)

- Sorry but the help file for gimpressionist is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/glasstile.html b/help/C/filters/glasstile.html deleted file mode 100644 index 8d88548813..0000000000 --- a/help/C/filters/glasstile.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for glasstile - - - - - - - - - - - -
- glasstile help page -
-

- Index

- (/filters/glasstile.html)

- Sorry but the help file for glasstile is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gpb.html b/help/C/filters/gpb.html index 7a7618c9b8..9d04306898 100644 --- a/help/C/filters/gpb.html +++ b/help/C/filters/gpb.html @@ -1,31 +1,147 @@ - - - - - Help Page for gpb - - - - - - - - - - - -
- gpb help page -
-

- Index

- (/filters/gpb.html)

- Sorry but the help file for gpb is not yet done. -

- /Karin & Olof -

-

- - - +GPB
GIMP User Manual
PrevChapter 13. FiltersNext

GPB

Sorry, the "GPB" Plug-In is not documented yet. +


PrevHomeNext
FITSUpGIMP Table Magic
\ No newline at end of file diff --git a/help/C/filters/gqbist.html b/help/C/filters/gqbist.html index 2fc8b2dd7e..44ec4e7ef5 100644 --- a/help/C/filters/gqbist.html +++ b/help/C/filters/gqbist.html @@ -1,31 +1,274 @@ - - - - - Help Page for gqbist - - - - - - - - - - - -
- gqbist help page -
-

- Index

- (/filters/gqbist.html)

- Sorry but the help file for gqbist is not yet done. -

- /Karin & Olof -

-

- - - +Qbist
GIMP User Manual
PrevChapter 13. FiltersNext

Qbist

Located in Filters + Render Pattern + Qbist..., this plug-in renders + essentially randomly mixed colours in a potentially impressive + display of algorthmic disco. +

To be more concise, it provides nine sets of equations which + alter the image's appearance drastically. The resulting effect is + a specific mesh of colours, arranged in varying ways, according to + the output of the given equation. Generally, this is some number + of gradient blends, intermingling to create new gradients and + shapes. +

The Qbist dialog

In the dialogue, nine preview boxes are displayed. The + preview in the center is the active one. That is, without + further input, the preview displayed in the center will be + rendered into the image. Each of the previews are image + buttons. Selecting any preview enacts a corresponding + equation. The selected equation is applied to the active + preview and changes all 9 previews to reflect a new set of + input parameters. When a desirable effect results, pressing + the OK button applies the center + preview to the current image. Cancel + will close the dialog without making any changes to the + original image. +

The generated images do not relate in any signifigant way to + the original image content. The same equations will not + always correspond to the same preview button. Qbist is, + effectively, a randomizer. +

This filter includes a 'Load and Save' function for presets. + Because the generated images and equations do not rely on the + original image content, there is no exact way to guarantee an + absolute reproduction of any set of effects. Therefore, as an + alternate, the user may save at least the current, center + preview parameters. +

Qbist works best by repeatedly hitting any of the various + preview buttons until a desirable effect is observed. Being + run largely on random outputs based on random inputs, it + tends to be not so useful if the user advances with some + strategy. It seems better to simply request new renders + repeatedly until the user sees something + attractive. +

Quote from the author: + " This plug-in generates images + from genetic formulas. It's based on an algorithm I've seen in + a magazine." +

\ No newline at end of file diff --git a/help/C/filters/gradmap.html b/help/C/filters/gradmap.html deleted file mode 100644 index 15d669da9f..0000000000 --- a/help/C/filters/gradmap.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for gradmap - - - - - - - - - - - -
- gradmap help page -
-

- Index

- (/filters/gradmap.html)

- Sorry but the help file for gradmap is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/grid.html b/help/C/filters/grid.html deleted file mode 100644 index 519df5888a..0000000000 --- a/help/C/filters/grid.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for grid - - - - - - - - - - - -
- grid help page -
-

- Index

- (/filters/grid.html)

- Sorry but the help file for grid is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gtm.html b/help/C/filters/gtm.html index 5824019d3e..c3d9339f8f 100644 --- a/help/C/filters/gtm.html +++ b/help/C/filters/gtm.html @@ -1,79 +1,287 @@ - - - - - Help Page for gtm - +GIMP Table Magic
GIMP User Manual
PrevChapter 13. FiltersNext

GIMP Table Magic

Allows you to configure settings for saving an image as a + formatted HTML table. +

If Generate Full HTML Document is + selected, Gimp will create a full document with + <HTML>, + <BODY>, etc. instead of just producing + the code for the table. +

The Use Cellspan option makes the + resulting HTML table use the <ROWSPAN> + and <COLSPAN> tags to merge contiguous + cells of the same color into one large cell. This will make the + resulting document smaller but may not show correctly in older + browsers. +

The Compress TD Tags option makes Table + Magic leave no space between the <TD> + tag and the cell contents. This improves the layout quality of + the result. +

A caption can be added to the table by using the + Caption option. +

Each cell will usually need some content to allow the cell to be + visible. You can use any character her, including + HTML escape codes. The default is + "&nbsp;" which enters a non-breaking space + which appears like a normal space but allow the cell to be + visible. A normal space character is not sufficient to force + the cell to be visible. +

Table options defines the standard + HTML options for the table: - - - - - - - - - -
- Gimp Table Magic Help Page -
-

- Allows you to configure settings for saving an image as a -formatted HTML table. -

- HTML Page Options -

- If "Generate Full HTML Document" is selected, Gimp will create -a full document with <HTML>, <BODY>, etc. instead of just -producing the code for the table. -

- Table Creation Options -

- The "Use Cellspan" option makes the resulting HTML table use -the <ROWSPAN> and <COLSPAN> tags to merge contiguous cells -of the same color into one large cell. This will make the resulting -document smaller but may not show correctly in older browsers. -

- The "Compress TD Tags" option makes Table Magic leave no space -between the TD tag and the cell contents. This improves the layout -quality of the result. -

- A caption can be added to the table by using the "Caption" -option. -

- Each cell will usually need some content to allow the cell to -be visible. You can use any character her, including HTML escape codes. -The default is "&nbsp;" which enters a space which can't be seen by -the user but allow the cell to be visible. -

- Table Options -

- Table options defines the standard HTML options for the table: -

- Border - The number of pixels in the table border. -
- Width - The width for each table cell, either in pixel or -percent. -
- Height - The height for each table cell, either in pixel or -percent. -
- Cell-Padding - The distance between a cell edge and its -contents in pixels. -
- Cell-Spacing - The distance between cells in pixels. -

- Additional Information -

- HTML Information - From -the W3C. -

-

- Index

- (/filters/gtm.html) -

-

- - - +

Border

The number of pixels in the table border. +

Width

The width for each table cell, either in pixels or + percent. +

Height

The height for each table cell, either in pixels or + percent. +

Cell-Padding

The distance between a cell edge and its contents in + pixels. +

Cell-Spacing

The distance between cells in pixels. +

+


PrevHomeNext
GPBUpIIR Gaussian Blur
\ No newline at end of file diff --git a/help/C/filters/guillotine.html b/help/C/filters/guillotine.html deleted file mode 100644 index 203f31ed64..0000000000 --- a/help/C/filters/guillotine.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for guillotine - - - - - - - - - - - -
- guillotine help page -
-

- Index

- (/filters/guillotine.html)

- Sorry but the help file for guillotine is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/gz.html b/help/C/filters/gz.html index 9d2c194aa2..06498ebe54 100644 --- a/help/C/filters/gz.html +++ b/help/C/filters/gz.html @@ -1,31 +1,178 @@ - - - - - Help Page for gz - - - - - - - - - - - -
- gz help page -
-

- Index

- (/filters/gz.html)

- Sorry but the help file for gz is not yet done. -

- /Karin & Olof -

-

- - - +GZ
GIMP User Manual
PrevChapter 13. FiltersNext

GZ

GIMP can load and save images which + have been gzip compressed. To save a gziped file, you can either + use "Save By Extension" or "gz". You need to name your file in the + format filename.extension.gz where extension + is an extension for a supported file format. For example, to save + a gziped TIFF file called "foo", you would + enter foo.tif.gz as the filename. +

For this plug-in to work you need gzip + — you can check if you have this by typing gzip + --version at a terminal window. If you get + gzip: command not found (or + similar) you don't have gzip. +


PrevHomeNext
RLE Gaussian BlurUpHRZ
\ No newline at end of file diff --git a/help/C/filters/header.html b/help/C/filters/header.html deleted file mode 100644 index cdf28556e4..0000000000 --- a/help/C/filters/header.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for header - - - - - - - - - - - -
- header help page -
-

- Index

- (/filters/header.html)

- Sorry but the help file for header is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/hot.html b/help/C/filters/hot.html deleted file mode 100644 index c2ec7c2213..0000000000 --- a/help/C/filters/hot.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for hot - - - - - - - - - - - -
- hot help page -
-

- Index

- (/filters/hot.html)

- Sorry but the help file for hot is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/hrz.html b/help/C/filters/hrz.html index cf10771c8c..e96cd307d1 100644 --- a/help/C/filters/hrz.html +++ b/help/C/filters/hrz.html @@ -1,30 +1,150 @@ - - - - - Help Page for HRZ - - - - - - - - - - - -
- HRZ -

-

- Gimp can read and write to the HRZ format. The HRZ format used -to be used in amateur slow-scan TV broadcasts. The images are always -256x240 pixels and are uncompressed. -

- Index -

- - - +HRZ
GIMP User Manual
PrevChapter 13. FiltersNext

HRZ

GIMP can read and write to the HRZ + format. The HRZ format used to be used in amateur slow-scan + TV broadcasts. The images are always 256x240 + pixels and are uncompressed. +

\ No newline at end of file diff --git a/help/C/filters/ifscompose.html b/help/C/filters/ifscompose.html deleted file mode 100644 index 3ffe05dde2..0000000000 --- a/help/C/filters/ifscompose.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for ifscompose - - - - - - - - - - - -
- ifscompose help page -
-

- Index

- (/filters/ifscompose.html)

- Sorry but the help file for ifscompose is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/illusion.html b/help/C/filters/illusion.html deleted file mode 100644 index b728961baa..0000000000 --- a/help/C/filters/illusion.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for illusion - - - - - - - - - - - -
- illusion help page -
-

- Index

- (/filters/illusion.html)

- Sorry but the help file for illusion is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/imagemap.html b/help/C/filters/imagemap.html deleted file mode 100644 index 8cbc2121f3..0000000000 --- a/help/C/filters/imagemap.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for imagemap - - - - - - - - - - - -
- imagemap help page -
-

- Index

- (/filters/imagemap.html)

- Sorry but the help file for imagemap is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/index.html b/help/C/filters/index.html index 7092c06898..1b2d858c7d 100644 --- a/help/C/filters/index.html +++ b/help/C/filters/index.html @@ -1,64 +1,422 @@ - - - - - Index for filters - - - - - - - - - - - -
- filters Index -
-

- Top index

-

Topics in this directory:

- avi
- bmp
- bz2
- cel
- dataurl
- faxg3
- fits
- gbr
- gfli
- gicon
- gif
- gimp_xcf_load
- gimp_xcf_save
- gpb
- gtm
- gz
- hrz
- jpeg
- miff
- mpeg
- pat
- pcx
- pix
- png
- pnm
- psd
- ps
- psp
- sgi
- sunras
- tga
- tiff
- url
- wmf
- xbm
- xjt
- xpm
- xwd
-

- - +Filters
GIMP User Manual
PrevNext


PrevHomeNext
Edit Qmask Attributes Reshow Last
\ No newline at end of file diff --git a/help/C/filters/iwarp.html b/help/C/filters/iwarp.html deleted file mode 100644 index 6d58637b1a..0000000000 --- a/help/C/filters/iwarp.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for iwarp - - - - - - - - - - - -
- iwarp help page -
-

- Index

- (/filters/iwarp.html)

- Sorry but the help file for iwarp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/jpeg.html b/help/C/filters/jpeg.html index a16477df00..cb6720f476 100644 --- a/help/C/filters/jpeg.html +++ b/help/C/filters/jpeg.html @@ -1,113 +1,357 @@ - - - - - Help Page for jpeg - - - - - - - - - - - -
- JPEG Help Page -

-

- Allows you to configure the settings for saving a JPEG image. -

- Comments -

-

- You can add a comment to the image up to 32,768 characters - (32KB) by - entering text in the Image Comments box. A default comment can be - defined in Preferences. -

- Quality -

-

- The parameter settings allow you to alter the way that the - JPEG file is saved to get the best trade-off between image - quality and filesize. The Quality slider changes the quality of - the image - a high number (1.00 being the maximum) gives a - better image quality but a larger filesize. If you check - "Preview (in Image Window)" the image window will dynamically - update as you move the quality slider (or change any of the other - parameter settings) and you will be able to see what the -resultant filesize will be in bytes and kilobytes (KB). Note that -depending on the size of the image, it may take a moment to update the -preview and filesize information after adjusting the settings. -

- Smoothing -

-

- The smoothing slider adjusts how much the image is blurred to -make the image appear a higher quality. A higher value will lose some -of the detail in an image, but reduce the filesize. -

- Restart Markers -

-

- Restart markers are useful for transmitting an image over an -unreliable network. If a file gets corrupted, it will only be corrupted -up to the next restart marker. Restart markers add a small amount to the -filesize of an image. Restart markers can be between every 1 row (many -markers) and every 64 rows (few markers). -

- Progressive Mode -

-

- Progressive mode means that a supporting viewer (such as -Netscape Navigator) can show a low quality version of an image which -progressively improves as the image loads until the full image is -displayed. This may slightly increases filesize (but not always), and -is not supported by all viewers. -

- Force Baseline JPEG -

-

- Enabling "Force Baseline JPEG" makes Gimp write a JPEG which -will be readable by all decoders (viewers). This often results in a -larger filesize and/or worse image quality, especially at low quality -settings. -

-

- Subsampling -

-

- Subsampling defines how information is discarded as a ratio of -color (which can be discarded more with less dicernable effect) against -brightness. It is defined for the two chroma (color) channels - -red/green (Cr) and blue/yellow (Cb) - as relative to the luma -(brightness) channel (Y) of the image by downsampling the image by a -factor of two in either the x direction only, or both the -x and y directions. This is shown by the format Y,Cr,Cb, -so "1x1,1x1,1x1" gives no subsampling, and thus the highest image -quality. "2x2,1x1,1x1" downsamples both the Cr and Cb channels by half, -giving the highest compression available here. "2x1,1x1,1x1" only -downsamples the Cr channel, again by half. -

- DCT Method -

-

- The DCT method only influences quality vs. speed. The fastest -method is "Fast integer" which has a slight quality disadvantage -against "Integer". "Floating-point" may give a marginal increase in -quality but will be slower to load. -

- Additional Information -

-

- Independent JPEG Group - Advanced -information. -

- Index -

- - +JPEG
GIMP User Manual
PrevChapter 13. FiltersNext

JPEG

Allows you to configure settings for saving a + JPEG file. +

Comments

You can add a comment to the image up to 32,768 characters + (32KB) by entering text in the + Image Comments box. A default + comment can be defined in Preferences. +

Quality

The parameter settings allow you to alter the way that the + JPEG file is saved to get the best + balance between image quality and file size. The + Quality slider changes the quality + of the image — a high number (1.00 being the + maximum) gives a better image quality but a larger + file size. If you check Preview the + image window will dynamically update as you move the + quality slider (or change any of + the other parameter + settings) and you will be able to see what the resultant + file size will be in bytes and kilobytes + (KB). Note that depending on the size + of the image, it may take a moment to update the preview + and file size information after adjusting the settings. +

Smoothing

The smoothing slider adjusts how + much the image is blurred to make the image appear a + higher quality. A higher value will lose some of the + detail in an image, but reduce the filesize. +

Restart Markers

Restart markers are useful for + transmitting an image over an unreliable network. If a + file gets corrupted, it will only be corrupted up to the + next restart marker. Restart markers add a small amount to + the filesize of an image. Restart markers can be between + every 1 row (many markers) and every 64 rows (few + markers). +

Progressive Mode

Progressive mode means that a + supporting viewer (such as Netscape + Navigator) can show a low + quality version of an image which progressively improves + as the image loads until the full image is displayed. This + may slightly increases filesize (but not always), and is + not supported by all viewers. +

Force Baseline JPEG

Enabling Force Baseline JPEG makes + GIMP write a + JPEG which will be readable by all + decoders (viewers). This often results in a larger + filesize and/or decreased image quality, especially at low + quality settings. +

Subsampling

Subsampling defines how information is discarded as a + ratio of color (which can be discarded more with less + discernable effect) against brightness. It is defined for + the two chroma (color) channels — red/green (Cr) and + blue/yellow (Cb) — as relative to the luma + (brightness) channel (Y) of the image by downsampling the + image by a factor of two in either the x direction only, + or both the x and y directions. This is shown by the + format Y,Cr,Cb, so 1x1,1x1,1x1 + gives no subsampling, and thus the highest image quality. + 2x2,1x1,1x1 downsamples both the + Cr and Cb channels by half, giving the highest compression + available here. 2x1,1x1,1x1 only + downsamples the Cr channel, again by half. +

DCT Method

The DCT method + only influences quality vs. speed. The fastest method is + Fast integer which has a slight + quality disadvantage compared to + Integer. + Floating-point may give a marginal + increase in quality but will be slower to load. +

+

\ No newline at end of file diff --git a/help/C/filters/laplace.html b/help/C/filters/laplace.html deleted file mode 100644 index c8789d91e9..0000000000 --- a/help/C/filters/laplace.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for laplace - - - - - - - - - - - -
- laplace help page -
-

- Index

- (/filters/laplace.html)

- Sorry but the help file for laplace is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/lic.html b/help/C/filters/lic.html deleted file mode 100644 index d471f266b8..0000000000 --- a/help/C/filters/lic.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for lic - - - - - - - - - - - -
- lic help page -
-

- Index

- (/filters/lic.html)

- Sorry but the help file for lic is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/lighting.html b/help/C/filters/lighting.html deleted file mode 100644 index ec6eaccdb4..0000000000 --- a/help/C/filters/lighting.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for lighting - - - - - - - - - - - -
- lighting help page -
-

- Index

- (/filters/lighting.html)

- Sorry but the help file for lighting is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/mail.html b/help/C/filters/mail.html deleted file mode 100644 index 973820a5a4..0000000000 --- a/help/C/filters/mail.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for mail - - - - - - - - - - - -
- mail help page -
-

- Index

- (/filters/mail.html)

- Sorry but the help file for mail is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/mapcolor.html b/help/C/filters/mapcolor.html deleted file mode 100644 index b2e903c2e1..0000000000 --- a/help/C/filters/mapcolor.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for mapcolor - - - - - - - - - - - -
- mapcolor help page -
-

- Index

- (/filters/mapcolor.html)

- Sorry but the help file for mapcolor is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/mapobject.html b/help/C/filters/mapobject.html deleted file mode 100644 index a6c657af96..0000000000 --- a/help/C/filters/mapobject.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for mapobject - - - - - - - - - - - -
- mapobject help page -
-

- Index

- (/filters/mapobject.html)

- Sorry but the help file for mapobject is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/max_rgb.html b/help/C/filters/max_rgb.html deleted file mode 100644 index f68e32f4dc..0000000000 --- a/help/C/filters/max_rgb.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for max_rgb - - - - - - - - - - - -
- max_rgb help page -
-

- Index

- (/filters/max_rgb.html)

- Sorry but the help file for max_rgb is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/maze.html b/help/C/filters/maze.html deleted file mode 100644 index 53c1b709d8..0000000000 --- a/help/C/filters/maze.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for maze - - - - - - - - - - - -
- maze help page -
-

- Index

- (/filters/maze.html)

- Sorry but the help file for maze is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/mblur.html b/help/C/filters/mblur.html deleted file mode 100644 index 529c96dcd2..0000000000 --- a/help/C/filters/mblur.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for mblur - - - - - - - - - - - -
- mblur help page -
-

- Index

- (/filters/mblur.html)

- Sorry but the help file for mblur is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/miff.html b/help/C/filters/miff.html index 720c8d5b10..067fc8dff5 100644 --- a/help/C/filters/miff.html +++ b/help/C/filters/miff.html @@ -1,29 +1,159 @@ - - - - - Help Page for MIFF - - - - - - - - - - - -
- MIFF -

-

- Gimp can read and write MIFF files. The MIFF (Magick Image File -Format) is the native format of Image Magick. -

- Index -

- - - +MIFF
GIMP User Manual
PrevChapter 13. FiltersNext

MIFF

GIMP can read and write + MIFF files. The MIFF (Magick + Image File Format) is the native format of Image + Magick. +


PrevHomeNext
JPEGUpOilify
\ No newline at end of file diff --git a/help/C/filters/mosaic.html b/help/C/filters/mosaic.html deleted file mode 100644 index 80e6051407..0000000000 --- a/help/C/filters/mosaic.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for mosaic - - - - - - - - - - - -
- mosaic help page -
-

- Index

- (/filters/mosaic.html)

- Sorry but the help file for mosaic is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/mpeg.html b/help/C/filters/mpeg.html deleted file mode 100644 index 380d1843ca..0000000000 --- a/help/C/filters/mpeg.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for mpeg - - - - - - - - - - - -
- mpeg help page -
-

- Index

- (/filters/mpeg.html)

- Sorry but the help file for bmp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/newsprint.html b/help/C/filters/newsprint.html deleted file mode 100644 index 9f1b3829d3..0000000000 --- a/help/C/filters/newsprint.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for newsprint - - - - - - - - - - - -
- newsprint help page -
-

- Index

- (/filters/newsprint.html)

- Sorry but the help file for newsprint is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/nlfilt.html b/help/C/filters/nlfilt.html deleted file mode 100644 index 049dd5a5a7..0000000000 --- a/help/C/filters/nlfilt.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for nlfilt - - - - - - - - - - - -
- nlfilt help page -
-

- Index

- (/filters/nlfilt.html)

- Sorry but the help file for nlfilt is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/noisify.html b/help/C/filters/noisify.html deleted file mode 100644 index 314178f58b..0000000000 --- a/help/C/filters/noisify.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for noisify - - - - - - - - - - - -
- noisify help page -
-

- Index

- (/filters/noisify.html)

- Sorry but the help file for noisify is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/normalize.html b/help/C/filters/normalize.html deleted file mode 100644 index 234a20d2b8..0000000000 --- a/help/C/filters/normalize.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for normalize - - - - - - - - - - - -
- normalize help page -
-

- Index

- (/filters/normalize.html)

- Sorry but the help file for normalize is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/nova.html b/help/C/filters/nova.html deleted file mode 100644 index d197ab4822..0000000000 --- a/help/C/filters/nova.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for nova - - - - - - - - - - - -
- nova help page -
-

- Index

- (/filters/nova.html)

- Sorry but the help file for nova is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/oilify.html b/help/C/filters/oilify.html index 3b298927f3..4cae1a6051 100644 --- a/help/C/filters/oilify.html +++ b/help/C/filters/oilify.html @@ -1,31 +1,201 @@ - - - - - Help Page for oilify - - - - - - - - - - - -
- oilify help page -
-

- Index

- (/filters/oilify.html)

- Sorry but the help file for oilify is not yet done. -

- /Karin & Olof -

-

- - - +Oilify
GIMP User Manual
PrevChapter 13. FiltersNext

Oilify

Located in Filters + Artistic + Oilify, this filter makes your image + appear as if it has been painted with oil paints. +

Short description of The Oilify + Dialog

+ Oilify has two options: Use Intensity + Algorithm and Mask Size. The + differences between an image created with the Use + Intensity Algorithm checked and one without it are + hard to detect. It appears that with the algorithm more details + and better colors are preserved. Also if the image being + oilified was already a JPG, it is recommended + that the algorithm is used because the default method tends to + make artifacts more visible. +

Mask Size basically sets the size, in + pixels, of the brush used to paint the image. It determines how + large the splotches of "paint" will be. +

\ No newline at end of file diff --git a/help/C/filters/pagecurl.html b/help/C/filters/pagecurl.html deleted file mode 100644 index 3b80674f9e..0000000000 --- a/help/C/filters/pagecurl.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for pagecurl - - - - - - - - - - - -
- pagecurl help page -
-

- Index

- (/filters/pagecurl.html)

- Sorry but the help file for pagecurl is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/papertile.html b/help/C/filters/papertile.html deleted file mode 100644 index 9ff025c930..0000000000 --- a/help/C/filters/papertile.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for papertile - - - - - - - - - - - -
- papertile help page -
-

- Index

- (/filters/papertile.html)

- Sorry but the help file for papertile is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/pat.html b/help/C/filters/pat.html index 22e547a10a..1603e6fc1a 100644 --- a/help/C/filters/pat.html +++ b/help/C/filters/pat.html @@ -1,31 +1,184 @@ - - - - - Help Page for pat - - - - - - - - - - - -
- pat help page -
-

- Index

- (/filters/pat.html)

- Sorry but the help file for pat is not yet done. -

- /Karin & Olof -

-

- - - +PAT
GIMP User Manual
PrevChapter 13. FiltersNext

PAT

The PAT file format is used for + GIMP patterns. When you save a pattern + file, you will be prompted to give a description. This is not the + filename, but an internal description which gets displayed at the + top of the patterns dialog when loaded. +

To create a pattern to be used by GIMP + from the patterns dialog, you must save it + in the your /patterns directory inside your + personal GIMP directory — normally + ~/.gimp-1.1. Make sure you press + Refresh in the patterns + dialog to rescan the patterns directory. +


PrevHomeNext
OilifyUpPixelize
\ No newline at end of file diff --git a/help/C/filters/pcx.html b/help/C/filters/pcx.html deleted file mode 100644 index d3143d5185..0000000000 --- a/help/C/filters/pcx.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for pcx - - - - - - - - - - - -
- pcx help page -
-

- Index

- (/filters/pcx.html)

- Sorry but the help file for pcx is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/pix.html b/help/C/filters/pix.html deleted file mode 100644 index e00e7f33ee..0000000000 --- a/help/C/filters/pix.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for pix - - - - - - - - - - - -
- pix help page -
-

- Index

- (/filters/pix.html)

- Sorry but the help file for pix is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/pixelize.html b/help/C/filters/pixelize.html index 350cda4956..6ff190e5d8 100644 --- a/help/C/filters/pixelize.html +++ b/help/C/filters/pixelize.html @@ -1,31 +1,147 @@ - - - - - Help Page for pixelize - - - - - - - - - - - -
- pixelize help page -
-

- Index

- (/filters/pixelize.html)

- Sorry but the help file for pixelize is not yet done. -

- /Karin & Olof -

-

- - - +Pixelize
GIMP User Manual
PrevChapter 13. FiltersNext

Pixelize

The pixelize filter make you image look like it is made up of + large, square pixels (color blocks). You can choose the width of + the pixels — the larger the width, the larger the blocks of color, + which will distort the picture more. +

\ No newline at end of file diff --git a/help/C/filters/plasma.html b/help/C/filters/plasma.html deleted file mode 100644 index 4450a21c6e..0000000000 --- a/help/C/filters/plasma.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for plasma - - - - - - - - - - - -
- plasma help page -
-

- Index

- (/filters/plasma.html)

- Sorry but the help file for plasma is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/plugindetails.html b/help/C/filters/plugindetails.html deleted file mode 100644 index 09b737ab97..0000000000 --- a/help/C/filters/plugindetails.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for plugindetails - - - - - - - - - - - -
- plugindetails help page -
-

- Index

- (/filters/plugindetails.html)

- Sorry but the help file for plugindetails is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/png.html b/help/C/filters/png.html index aa55ae8183..6aab4f48ea 100644 --- a/help/C/filters/png.html +++ b/help/C/filters/png.html @@ -1,110 +1,262 @@ - - - - - Help Page for PNG - - - - - - - - - - - -
- PNG -
-

- -Gimp can load and save PNG (Portable Network Graphics) files. -

-Saving PNG files -

-

-Gimp will automatically choose a type of PNG file appropriate to the -image you are saving. All applications which can handle PNG files should -be able to read any PNG saved from Gimp. -

-Parameter Settings -

-

-Interlacing (Adam7) -

-

-The Adam7 interlacing option stores image data in an order -which allows browsers or viewers to show progressively more detail as -they load the file, at the cost of increased file size. -

-Save background color -

-

-This adds a bKGD chunk to your PNG file which advises viewer software -to choose a background color like your currently selected Gimp background -color. Adding this chunk increases file size slightly. -

-Save gamma -

-

-This adds a gAMA chunk to your PNG file which reflects the current -Gamma factor for your display (set globally for Gimp). Viewers with a -different display can compensate to ensure the image doesn't look too -dark or too bright. Adding this chunk increases file size slightly. -

-Save layer offset -

-

-If you are saving a single layer which has been shifted (offset) -from the top-left of the image, this will add a oFFs chunk to your -PNG file to preserve this offset factor in other viewers. Adding -this chunk if it's needed increases file size slightly. -

-Save resolution -

-

-This adds a pHYs chunk to your PNG which records the physical -resolution of the image. This is needed by Gimp and other viewers -for printing or actual size previews. Adding this chunk increases -file size slightly. -

-Save creation time -

-

This adds a tIME chunk to your PNG which records the exact date -and time when the image was last saved. This will be preserved -and can be viewed in other applications. Adding this chunk increases -file size slightly. -

-Compression -

-

-This controls the amount of compression used to reduce the -file size. Larger numbers will usually reduce file size but will -make saving slower. The default (6) is often an acceptable -compromise, but see below. -

-On the web, size isn't everything but it is important. I suggest -that finished web graphics should be saved with level 9 compression -and without bKGD, oFFs, pHYs and tIME chunks. -

-For large web graphics, like maps and diagrams, you should consider -using Adam7 interlacing. For simple icons or logos, try converting -with Image/Mode/Indexed... before saving.

-

-Loading PNG files

-

-This plug-in loads all known PNG files with following restrictions: -

-
    -
  • 16 bit per channel data is reduced to 8 bit precision. -
  • Transparency in paletted images is preserved but may not be -properly displayed. Image/Mode/RGB will display the full transparency. -
-

These restrictions will be addressed in a future version of Gimp. -

-Index -

- - +PNG
GIMP User Manual
PrevChapter 13. FiltersNext

PNG

Allows you to configure settings for saving a PNG + file. All applications which can handle PNG files should be able to + read any PNG saved from GIMP. However you + can make decisions here + about which information about your image should be preserved in the + file, and how hard GIMP should try to keep the file size small. +

Interlacing (Adam7)

The Adam7 interlacing option stores image data in an order + which allows browsers or viewers to show progressively more detail as + they load the file, at the cost of increased file size. +

Save background color

This adds a bKGD chunk to your PNG file which advises viewer software + to choose a background color like your currently selected GIMP + background color. Adding this chunk increases file size + slightly. Netscape Navigator will + not display a png transparently if the file has been saved + with this option. It will instead use the chosen background + color behind the image. +

Save gamma

This adds a gAMA chunk to your PNG file which reflects the current + Gamma factor for your display (set globally for + GIMP). Viewers with a + different display can compensate to ensure the image doesn't look too + dark or too bright. Adding this chunk increases file size slightly. +

Save layer offset

If you are saving a single layer which has been shifted (offset) + from the top-left of the image, this will add a oFFs chunk to your + PNG file to preserve this offset factor in other viewers. Adding + this chunk if it's needed increases file size slightly. +

Save resolution

This adds a pHYs chunk to your PNG which records the physical + resolution of the image. This is needed by GIMP and other viewers + for printing or actual size previews. Adding this chunk increases + file size slightly. +

Save creation time

This adds a tIME chunk to your PNG which records the exact date + and time when the image was last saved. This will be preserved + and can be viewed in other applications. Adding this chunk increases + file size slightly. +

Compression

This controls the amount of compression used to reduce the + file size. Larger numbers will usually reduce file size but will + make saving slower. The default (6) is often an acceptable + compromise, but see below. +

+


PrevHomeNext
PixelizeUpPNM
\ No newline at end of file diff --git a/help/C/filters/pnm.html b/help/C/filters/pnm.html deleted file mode 100644 index 3259e1bead..0000000000 --- a/help/C/filters/pnm.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Help Page for pnm - - - - - - - - - - - -
- PNM Help Page -

-

- Allows you to configure settings for saving a PNM (Portable aNy -Map) image. -

- PNM isn't actually a format in itself, but encompasses PBM -(Portable BitMap) for monochrome images, PGM (Portable Grayscale Map) -for grayscale images and PPM (Portable PixMap) for color images. -

- Data Formatting -

- The only configurable parameter for PNM images is the way that -data is formatted - either in ASCII (American Standard Code for -Information Interchange) or raw (plain bytes). The raw format will -produce significantly smaller filesizes and is faster to read and -write. -

- Index -

- - diff --git a/help/C/filters/polar.html b/help/C/filters/polar.html deleted file mode 100644 index acc31b4090..0000000000 --- a/help/C/filters/polar.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for polar - - - - - - - - - - - -
- polar help page -
-

- Index

- (/filters/polar.html)

- Sorry but the help file for polar is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/print.html b/help/C/filters/print.html index 521a4c3f11..a2caf82d15 100644 --- a/help/C/filters/print.html +++ b/help/C/filters/print.html @@ -1,31 +1,900 @@ - - - - - Help Page for print - +The Print Plugin
GIMP User Manual
PrevChapter 13. FiltersNext

The Print Plugin

Figure 13-1. The Main Window

The main window is divided into five panes: +

Preview

The Preview pane contains a + positioning widget that allows + interactive positioning of the output on the page. It + contains an outer border, representing the sheet of paper; + an inner border, representing the printable area of the + printer; an arrow, pointing to the top of the page (the + end that is fed into the printer); and a black rectangle, + representing the position of the image on the page. The + image can be moved around on the paper. When the first + (left) button is used, the + image is moved in screen pixels; when any other button is + used, the image is moved in points[1]. The + arrow resizes depending upon the media size chosen; the + shaft of the arrow is always equal to one inch on + the output. +

Printer Settings

The Printer Settings pane contains a + dropdown menu for selecting a printer. There + is a special "printer" named File that allows + you to choose a file to print to, rather than a printer + queue. The Setup box to the right + allows specification of a printer type, a PPD + file[2], and the command to be used to + print. Each distinct printer in the + Printer list can have different + settings applied to it. Below that is a combo + box allowing choice of media size. The choices + are constrained to those that the printer supports. Below + that are dropdown menus for + choosing media type (what kind of paper), media source + (what input tray), ink type, and resolution. All of these + settings are printer-specific. +

Figure 13-2. The setup

Position

The Position pane contains various + widgets to place the image on the paper. These widgets + work in conjunction with the Preview + pane. At the top left of the pane is a button to center + the image on the paper (not on the printable area). To its + right is a button group that allows + choosing English (inch) units or metric (centimeter) + units. Below these are four boxes + that allow entry of the left, top, right, and bottom of + the image. These positions are relative to the top left of + the paper[3]. There are two additional boxes + that allow specification of the right margin and bottom + margin if you prefer; these are relative to the bottom + right corner of the paper. Any of these may have values + entered into them. The preview image will be moved + appropriately.

These entries do not resize the + image.

Finally, there is a pick box for + orientation (landscape or + portrait). There is an Auto mode + that picks the orientation + that best matches that of the image to be printed. +

Scaling

The Scaling pane contains a slider + that allows scaling of the image. The image can be scaled + in either percent of the printable area (NOT the page in + this case) or pixels per inch (PPI) via + a radio button below the slider. + PPI allows matching image resolution to + printer resolution. The image may be scaled using either + method to between 5 and 100% of the imageable area. It is + not possible to crop with the Print plugin. In + Percent mode, the image is scaled + so that neither axis will be longer than the percent of + the printable area specified. For example, if you print an + image at 20%, it will be possible to tile the image 5 + times on one axis and at least 5 times on the other. To + the right of the radio button is a button called + Set Image Scale. This sets the + scaling to PPI, and sets the resolution + as closely as possible to the resolution stored in the + image. To the right of the Set Image + Scale button are two boxes that allow entry of + width and + height of the image. These set the + scaling mode to PPI. Specifying one + automatically sets the other, and the image is + repositioned as needed to prevent it from falling off the + edge of the page. +

Image Settings

The Image Settings pane allows choice + of Line Art, Solid + Colors, Photograph, or + Monochrome image type. Line art or + Solid Colors should be used for graphics containing mostly + solid areas of color. They're very similar to each other. + Photograph mode dithers more slowly, but produces more + accurate colors. Finally, Monochrome mode can be used to + print absolute black and white very quickly. To the right + of these four radio buttons is a button called + Adjust Color. This pops up a new + window that controls various output quality settings. That + will be described separately. Finally, there is a choice + of Black and White and Color output. +

Action Buttons

The last pane contains four action buttons: - - - - - - - - - -
- print help page -
-

- Index

- (/filters/print.html)

- Sorry but the help file for print is not yet done. -

- /Karin & Olof -

-

- - - +

  • Print and Save Settings + — immediately print the image (or, if the File + printer is chosen, display a file selection window to + pick the output file), and save all current settings + for all printers. +

  • Save Settings — + immediately save the settings, and continue working + in the Print plugin. +

  • Print — immediately + print the image (or, if the File printer is chosen, + display a file selection window to pick the output + file), but do not save settings. +

  • Cancel — immediately + quits without saving or printing. +

+

+

Adjust Color

The Adjust Color button pops up a + non-modal dialog that + allows adjustment of various parameters related to the print + quality. These are independent of the controls within the + GIMP itself and only affect the + print. +

Figure 13-3. The Color Settings

At the top of the window is a thumbnail of the image that + changes to reflect the color settings of the image. This + enables you to get an idea of how the image will print out as + you adjust settings. +

Below that there are eight sliders: + +

Brightness (0-2.0, default 1.0)

adjust the brightness of the image. +

Contrast (0-4.0, default 1.0)

adjust the output contrast. +

Cyan, Magenta, Yellow (0-4.0, default 1.0) +

adjust the cyan, magenta, and yellow in the output. + These should not normally need to be adjusted very much; + even very small adjustments can go quite a long way to + restoring color balance.. +

Saturation (0-9.0, default 1.0) +

adjust the color brilliance (saturation) of the output. + Saturation of 0 means pure gray scale, with no color. + Saturation of 9.0 will make just about anything but + pure grays brilliantly colored. +

Density (0.1-2.0, default 1.0) +

adjust the density (amount of ink) in the print. The + density is automatically corrected for the particular + printer, resolution, and, in some cases, paper choices. + If solid black in the input is not solid in the print, + the density needs to be increased; if there is excessive + ink bleed-through and muddy dark colors, the density + should be decreased.

The density will not + increase beyond a certain amount no matter what the + slider is set to.

+

Gamma (0.1-4.0, default 1.0) +

adjust the output gamma. The gamma value is + automatically corrected for the choice of printer; this + is used if you believe the automatic setting is + incorrect. +

Dither Algorithm

There is also a selection box for the dither + algorithm to be used. There are currently + seven choices: +

  • Adaptive Hybrid usually + yields the best output + quality. It chooses a modified Floyd-Steinberg + error diffusion algorithm or ordered dithering + depending upon the image characteristics. +

  • Ordered uses a pure ordered + dither. It generally + yields excellent quality for simple black and + white or four color printers without variable drop + size or drop modulation. It is not recommended if + high quality is desired on six color printers. It + is considerably faster than Adaptive + Hybrid. +

  • Fast also uses a pure ordered + dither, but uses a + very simple black model and makes no attempt to + handle multi-level (6-color, variable drop size, + or drop modulation) at all cleanly. It is + substantially faster than + Ordered dither. The + quality tends to be quite poor except on simple + four color printers. On three color printers, + quality is probably competitive with anything + else. +

  • Very Fast is similar to + Fast, except that it uses a + very simple dither matrix that can be looked up + much more quickly than the matrix used in the + Fast dither. For simple pure + black and white images dominated by horizontal and + vertical lines, this may actually yield the best + results. For other types of images, the quality + will be poor. +

  • Adaptive Random is similar to + Adaptive Hybrid, + except that the modifications to the + Floyd-Steinberg algorithm are slightly different. + This is slower than Adaptive + Hybrid on most + systems. For some images the quality may be + better, but generally + Adaptive Hybrid should yield + slightly superior + images. +

  • Hybrid Floyd-Steinberg uses + the modified + Floyd-Steinberg algorithm of Adaptive + Hybrid on + the entire image. Generally, the results are poor + in pale regions. +

  • Random Floyd-Steinberg uses + the modified Floyd-Steinberg algorithm of + Adaptive Random on + the entire image. Generally, the results are poor + in pale regions. +

+

+

Notes

[1]

the + output resolution of the plugin

[2]

for Postscript + printers

[3]

again, that's relative to the + paper corner, not the printable area, which is usually + smaller

\ No newline at end of file diff --git a/help/C/filters/ps.html b/help/C/filters/ps.html deleted file mode 100644 index 7caf6e3e4d..0000000000 --- a/help/C/filters/ps.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for ps - - - - - - - - - - - -
- ps help page -
-

- Index

- (/filters/ps.html)

- Sorry but the help file for ps is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/psd.html b/help/C/filters/psd.html index 6be553f6c8..a15169418d 100644 --- a/help/C/filters/psd.html +++ b/help/C/filters/psd.html @@ -1,31 +1,164 @@ - - - - - Help Page for PSD - - - - - - - - - - - -
- PSD -

-

- Gimp can load PSD files. PSD (Photoshop Document) files are -usually created in Adobe Photoshop (although some other applications -support writing of the format). The format supports more advanced -features such as layers and channels. -

- Index -

- - - +PSD
GIMP User Manual
PrevChapter 13. FiltersNext

PSD

GIMP can load PSD + files. PSD (Photoshop Document) files are + usually created in Adobe Photoshop + (although some other applications support writing of the + format). The format supports more advanced features such as layers + and channels. +


PrevHomeNext
The Print PluginUpPSP
\ No newline at end of file diff --git a/help/C/filters/psp.html b/help/C/filters/psp.html index 7f1c254de5..3f65ac34ca 100644 --- a/help/C/filters/psp.html +++ b/help/C/filters/psp.html @@ -1,31 +1,168 @@ - - - - - Help Page for psp - - - - - - - - - - - -
- psp help page -
-

- Index

- (/filters/psp.html)

- Sorry but the help file for psp is not yet done. -

- /Karin & Olof -

-

- - - +PSP
GIMP User Manual
PrevChapter 13. FiltersNext

PSP

GIMP can read images in the + PSP format. PSP (Paint Shop + Pro) images are created by the Windows graphics program Jasc + Paint Shop Pro. The format supports + advanced features such as layers and channels. Paint + Shop Pro 6 also includes vector layers, however, + GIMP cannot read these files. +

\ No newline at end of file diff --git a/help/C/filters/randomize.html b/help/C/filters/randomize.html deleted file mode 100644 index bdc95ef029..0000000000 --- a/help/C/filters/randomize.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for randomize - - - - - - - - - - - -
- randomize help page -
-

- Index

- (/filters/randomize.html)

- Sorry but the help file for randomize is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/rcm.html b/help/C/filters/rcm.html deleted file mode 100644 index 4ca90060b3..0000000000 --- a/help/C/filters/rcm.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for rcm - - - - - - - - - - - -
- rcm help page -
-

- Index

- (/filters/rcm.html)

- Sorry but the help file for rcm is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/repeat_last.html b/help/C/filters/repeat_last.html index 04447a2129..1208457372 100644 --- a/help/C/filters/repeat_last.html +++ b/help/C/filters/repeat_last.html @@ -1,31 +1,139 @@ - - - - - Help Page for repeat_last - - - - - - - - - - - -
- repeat_last help page -
-

- Index

- (/filters/repeat_last.html)

- Sorry but the help file for repeat_last is not yet done. -

- /Karin & Olof -

-

- - - +Repeat Last
GIMP User Manual
PrevChapter 13. FiltersNext

Repeat Last

This command applies the filter you last applied to a Layer + to the active Layer. +


PrevHomeNext
Reshow LastUpDescription for Apply Canvas Filter
\ No newline at end of file diff --git a/help/C/filters/reshow_last.html b/help/C/filters/reshow_last.html index ef8e74f678..35652f07c9 100644 --- a/help/C/filters/reshow_last.html +++ b/help/C/filters/reshow_last.html @@ -1,31 +1,139 @@ - - - - - Help Page for reshow_last - - - - - - - - - - - -
- reshow_last help page -
-

- Index

- (/filters/reshow_last.html)

- Sorry but the help file for reshow_last is not yet done. -

- /Karin & Olof -

-

- - - +Reshow Last
GIMP User Manual
PrevChapter 13. FiltersNext

Reshow Last

This command re-opens the dialog of the last filter you applied to + a Layer. +


PrevHomeNext
FiltersUpRepeat Last
\ No newline at end of file diff --git a/help/C/filters/ripple.html b/help/C/filters/ripple.html index a5f2f3c7cf..f8100c99c7 100644 --- a/help/C/filters/ripple.html +++ b/help/C/filters/ripple.html @@ -1,31 +1,246 @@ - - - - - Help Page for ripple - - - - - - - - - - - -
- ripple help page -
-

- Index

- (/filters/ripple.html)

- Sorry but the help file for ripple is not yet done. -

- /Karin & Olof -

-

- - - +Ripple
GIMP User Manual
PrevChapter 13. FiltersNext

Ripple

The ripple filter allows you the distort the image to look like a + disturbed water surface. +

Options

Checking the Antialiasing box makes + jagged lines at the edge of the ripples be smoothed out + without blurring the image. +

The Retain Tileability ensures that + where an image is tileable, such as a pattern, the final + distorted image will also be tileable - i.e. you can place + copies of the image side by side to create a continuous + image without any break. +

Orientation

Defines which way the ripples occur — either horizontal or + vertical. +

Edges

When you apply a ripple effect, it performs the distortion + within the confines of the selection, and so there will be + small areas at one edge of the selection which are + missing. +

Selecting Black fills in these area + with solid black. Smear will fill + this area with pixels stretched to fill and + Wrap fills the blank area with the + pixels that were lost from the other side of the image. +

Wave Type

The wave type defines how the curve of the wave is + calculated. You can choose either + Sawtooth which makes a sharper wave + or Sine which makes it softer. +

Parameter Settings

Setting the Period sets how long the waves are — the + distance between two crests. Amplitude defines how + high the wave is — the vertical distance between the mean + and a crest. +

+


PrevHomeNext
QbistUpScatter HSV
\ No newline at end of file diff --git a/help/C/filters/rotate.html b/help/C/filters/rotate.html deleted file mode 100644 index c2c334160b..0000000000 --- a/help/C/filters/rotate.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for rotate - - - - - - - - - - - -
- rotate help page -
-

- Index

- (/filters/rotate.html)

- Sorry but the help file for rotate is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/sample_colorize.html b/help/C/filters/sample_colorize.html deleted file mode 100644 index ca111c0bd6..0000000000 --- a/help/C/filters/sample_colorize.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for sample_colorize - - - - - - - - - - - -
- sample_colorize help page -
-

- Index

- (/filters/sample_colorize.html)

- Sorry but the help file for sample_colorize is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/scatter_hsv.html b/help/C/filters/scatter_hsv.html index 1d4fe24e8d..3b0fb8fa39 100644 --- a/help/C/filters/scatter_hsv.html +++ b/help/C/filters/scatter_hsv.html @@ -1,31 +1,171 @@ - - - - - Help Page for scatter_hsv - - - - - - - - - - - -
- scatter_hsv help page -
-

- Index

- (/filters/scatter_hsv.html)

- Sorry but the help file for scatter_hsv is not yet done. -

- /Karin & Olof -

-

- - - +Scatter HSV
GIMP User Manual
PrevChapter 13. FiltersNext

Scatter HSV

Scatter HSV is a tool for creating noise which + is defined at a set level in each of the HSV + (Hue Saturation Value) image components. +

The Hue slider changes the color of pixels in + a random pattern. At a + low setting, the color change will be small. At a higher level, + the available colors for the scattering become progressivly + available around the color wheel until all colors are possible. +

The saturation slider randomly increases the + saturation (intensity) of the scattered pixels. The + value slider alters the value (brightness) of + the pixels. +


PrevHomeNext
RippleUpSemi Flatten
\ No newline at end of file diff --git a/help/C/filters/screenshot.html b/help/C/filters/screenshot.html deleted file mode 100644 index 9ae48c1238..0000000000 --- a/help/C/filters/screenshot.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for screenshot - - - - - - - - - - - -
- screenshot help page -
-

- Index

- (/filters/screenshot.html)

- Sorry but the help file for screenshot is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/script-fu.html b/help/C/filters/script-fu.html deleted file mode 100644 index 0eb118f521..0000000000 --- a/help/C/filters/script-fu.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for script-fu - - - - - - - - - - - -
- script-fu help page -
-

- Index

- (/filters/script-fu.html)

- Sorry but the help file for script-fu is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/sel2path.html b/help/C/filters/sel2path.html deleted file mode 100644 index c261eacd3c..0000000000 --- a/help/C/filters/sel2path.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for sel2path - - - - - - - - - - - -
- sel2path help page -
-

- Index

- (/filters/sel2path.html)

- Sorry but the help file for sel2path is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/sel_gauss.html b/help/C/filters/sel_gauss.html deleted file mode 100644 index 9381afe0a3..0000000000 --- a/help/C/filters/sel_gauss.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for sel_gauss - - - - - - - - - - - -
- sel_gauss help page -
-

- Index

- (/filters/sel_gauss.html)

- Sorry but the help file for sel_gauss is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/semiflatten.html b/help/C/filters/semiflatten.html index b3c98c6a66..eb6a9fea88 100644 --- a/help/C/filters/semiflatten.html +++ b/help/C/filters/semiflatten.html @@ -1,31 +1,144 @@ - - - - - Help Page for semiflatten - - - - - - - - - - - -
- semiflatten help page -
-

- Index

- (/filters/semiflatten.html)

- Sorry but the help file for semiflatten is not yet done. -

- /Karin & Olof -

-

- - - +Semi Flatten
GIMP User Manual
PrevChapter 13. FiltersNext

Semi Flatten

Sorry, The "Semi Flaten" Plug-In is not documented yet. +


PrevHomeNext
Scatter HSVUpSGI
\ No newline at end of file diff --git a/help/C/filters/sgi.html b/help/C/filters/sgi.html index c915323dc4..74fe7f7698 100644 --- a/help/C/filters/sgi.html +++ b/help/C/filters/sgi.html @@ -1,46 +1,187 @@ - - - - - Help Page for sgi - - - - - - - - - - - -
- SGI -

-

- Gimp can both read and write to the SGI file format. This format -by Silicon Graphics Inc. supports black and white (usually with the -extension .bw), color (.rgb) and color images with an alpha channel -(.rgba). You may also find SGI files in any of the above formats with -the extension .sgi. SGI images are normally only found on SGI -workstations. -

- Compression Type -

- When saving an SGI image, Gimp will prompt you to specify a -compressionn type. RLE (Run Length Encoded) compression is recommanded -since it is a lossless format. The Aggressive RLE option may produce a -smaller filesize, but SGI applications may not open the image correctly. -

-

- Additional Information -

- Format Specification - - Advanced information describing the low level SGI -format. -

- Index -

- - +SGI
GIMP User Manual
PrevChapter 13. FiltersNext

SGI

GIMP can both read and write to the + SGI file format. This format, by Silicon + Graphics Inc., supports black and white (usually with the extension + .bw), color (.rgb), and color images with an alpha channel + (.rgba). You may also find SGI files in any of + the above formats with the extension .sgi. SGI + images are normally only found on SGI + workstations. +

When saving an SGI image, + GIMP will prompt you to specify a + compression type. RLE (Run Length Encoded) + compression is recommended because it is a lossless format. The + Aggressive RLE option may produce a smaller + file size, but SGI applications may not open + the image correctly. +


PrevHomeNext
Semi FlattenUpSharpen
\ No newline at end of file diff --git a/help/C/filters/sharpen.html b/help/C/filters/sharpen.html index 62d466d207..5a00e3d9f6 100644 --- a/help/C/filters/sharpen.html +++ b/help/C/filters/sharpen.html @@ -1,31 +1,146 @@ - - - - - Help Page for sharpen - - - - - - - - - - - -
- sharpen help page -
-

- Index

- (/filters/sharpen.html)

- Sorry but the help file for sharpen is not yet done. -

- /Karin & Olof -

-

- - - +Sharpen
GIMP User Manual
PrevChapter 13. FiltersNext

Sharpen

The sharpen filter attempts to focus images. You can choose how + much the image is sharpened — a high value will sharpen more. +

This filter can be very useful for enhancing photos. You + should also note, however, that it will accentuate any noise or blemishes. +

\ No newline at end of file diff --git a/help/C/filters/shift.html b/help/C/filters/shift.html index 0757bedb11..231428bcf6 100644 --- a/help/C/filters/shift.html +++ b/help/C/filters/shift.html @@ -1,31 +1,146 @@ - - - - - Help Page for shift - - - - - - - - - - - -
- shift help page -
-

- Index

- (/filters/shift.html)

- Sorry but the help file for shift is not yet done. -

- /Karin & Olof -

-

- - - +Shift
GIMP User Manual
PrevChapter 13. FiltersNext

Shift

The shift filter displaces pixels a random amount in the specified + direction — either horizintally or vertically. +

The average amount of displacement can be set in pixels using the + Shift Amount slider. +


PrevHomeNext
SharpenUpSunras
\ No newline at end of file diff --git a/help/C/filters/sinus.html b/help/C/filters/sinus.html deleted file mode 100644 index f45286ccd0..0000000000 --- a/help/C/filters/sinus.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for sinus - - - - - - - - - - - -
- sinus help page -
-

- Index

- (/filters/sinus.html)

- Sorry but the help file for sinus is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/smooth_palette.html b/help/C/filters/smooth_palette.html deleted file mode 100644 index 1f0015904c..0000000000 --- a/help/C/filters/smooth_palette.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for smooth_palette - - - - - - - - - - - -
- smooth_palette help page -
-

- Index

- (/filters/smooth_palette.html)

- Sorry but the help file for smooth_palette is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/snoise.html b/help/C/filters/snoise.html deleted file mode 100644 index be79708bba..0000000000 --- a/help/C/filters/snoise.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for snoise - - - - - - - - - - - -
- snoise help page -
-

- Index

- (/filters/snoise.html)

- Sorry but the help file for snoise is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/sobel.html b/help/C/filters/sobel.html deleted file mode 100644 index e38e7521d6..0000000000 --- a/help/C/filters/sobel.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for sobel - - - - - - - - - - - -
- sobel help page -
-

- Index

- (/filters/sobel.html)

- Sorry but the help file for sobel is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/sparkle.html b/help/C/filters/sparkle.html deleted file mode 100644 index d61e1c5073..0000000000 --- a/help/C/filters/sparkle.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for sparkle - - - - - - - - - - - -
- sparkle help page -
-

- Index

- (/filters/sparkle.html)

- Sorry but the help file for sparkle is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/spheredesigner.html b/help/C/filters/spheredesigner.html deleted file mode 100644 index 3208f4673e..0000000000 --- a/help/C/filters/spheredesigner.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for spheredesigner - - - - - - - - - - - -
- spheredesigner help page -
-

- Index

- (/filters/spheredesigner.html)

- Sorry but the help file for spheredesigner is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/spread.html b/help/C/filters/spread.html deleted file mode 100644 index 04976f9042..0000000000 --- a/help/C/filters/spread.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for spread - - - - - - - - - - - -
- spread help page -
-

- Index

- (/filters/spread.html)

- Sorry but the help file for spread is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/struc.html b/help/C/filters/struc.html deleted file mode 100644 index 0b0160e24b..0000000000 --- a/help/C/filters/struc.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for struc - - - - - - - - - - - -
- struc help page -
-

- Index

- (/filters/struc.html)

- Sorry but the help file for struc is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/sunras.html b/help/C/filters/sunras.html index b962261c49..a8e8d8b043 100644 --- a/help/C/filters/sunras.html +++ b/help/C/filters/sunras.html @@ -1,39 +1,155 @@ - - - - - Help Page for Sunras - - - - - - - - - - - -
- Sunras -

-

- Gimp can both read and write images in the Sunras (Sun -Raster) format. The format supports grayscale, indexed and truecolor -images. As the name suggests, the Sunras format in mostly used by Sun -applications. -

-

- Data Formatting -

- When you save an image in the Sunras format, you will be -prompted to choose a data formatting type. Run Length Encoded (RLE) is -the default, and is recommended, because it compresses the file without -losing any quality. Use the Standard format if you are uncertain -whether another application will support it. -

- Index -

- - +Sunras
GIMP User Manual
PrevChapter 13. FiltersNext

Sunras

GIMP can both read and write images in + the Sunras (Sun Raster) format. The format supports grayscale, + indexed, and truecolor images. As the name suggests, the Sunras + format in mostly used by Sun applications. +

When you save an image in the Sunras format, you will be + prompted to choose a data formatting type. Run Length Encoded + (RLE) is the default, and is recommended, + because it compresses the file without losing any quality. Use + the Standard format if you are uncertain whether another + application will support it. +

\ No newline at end of file diff --git a/help/C/filters/tga.html b/help/C/filters/tga.html index 7a0074f924..6cceebb563 100644 --- a/help/C/filters/tga.html +++ b/help/C/filters/tga.html @@ -1,40 +1,157 @@ - - - - - Help Page for tga - - - - - - - - - - - -
- TGA Help Page -

-

- The TGA format was developed by Truevision as a way of storing -color images, specfically 24 and 32-bit color images. The format is -sometimes known incorrectly as "Targa" which refers to the graphics -hardware the format was originally designed for. -

- The TGA format is lossless (no image data is discarded during -saving) which supports high-color images. -

- Options -

- The TGA format can be RLE (Run Length Encoding) compressed -which results in significantly smaller filesizes, but will be give -slower performance when handling the image. -

- Index -

- - \ No newline at end of file +TGA
GIMP User Manual
PrevChapter 13. FiltersNext

TGA

The TGA format was developed by Truevision as a way of storing + color images, specfically 24 and 32-bit color images. The format + is sometimes known incorrectly as "Targa" which refers to the + graphics hardware for which the format was originally designed. +

The TGA format is lossless (no image data is discarded during + saving) and supports high-color images. +

The TGA format can be RLE (Run Length + Encoding) compressed which results in significantly smaller + file sizes, but will give slower performance when handling + the image. +


PrevHomeNext
SunrasUpTIFF
\ No newline at end of file diff --git a/help/C/filters/threshold_alpha.html b/help/C/filters/threshold_alpha.html deleted file mode 100644 index 0a4e65c840..0000000000 --- a/help/C/filters/threshold_alpha.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for threshold_alpha - - - - - - - - - - - -
- threshold_alpha help page -
-

- Index

- (/filters/threshold_alpha.html)

- Sorry but the help file for threshold_alpha is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/tiff.html b/help/C/filters/tiff.html index bc0efc813d..b419a7cc27 100644 --- a/help/C/filters/tiff.html +++ b/help/C/filters/tiff.html @@ -1,60 +1,226 @@ - - - - - Help Page for tiff - - - - - - - - - - - -
- TIFF Help Page -

-

- Allows you to configure settings for saving a TIFF (Tagged Image -File Format) image. -

- Compression -

- TIFF files can be compressed in a number of ways to reduce the -filesize. LZW (Lempel Ziv Welch) compression is the same method used in -GIF images, and produces a significant reduction in filesize without -losing any image information (it is a lossless method). It should -be noted that LZW compression is covered by a restrictive Unisys -license. -

- PackBits compression is often used on Macintosh systems and is -a form of Run Length Encoding (RLE) which, like LZW, is a lossless -method. -

- Deflate compression, sometime known as "zip" compression, uses -another variant of the LZW compression method and so gives similar -results, but is not restricted by any licences. LZW compression should -be used on logo type images such as maps and line diagrams. -

- JPEG compression is the same compression methods used when -saving JPEG files. JPEG compression should be used on photographs or -realistic scenes. -

- Finally, you can leave the TIFF uncompressed for maximum -quality, but be warned that filesizes can be very large. -

- Comment -

-

- As with JPEG (and some other formats) a comment can be added -to the image up to 32KB. A default comment for new images can be set in -Preferences. -

- Index -

- - +TIFF
GIMP User Manual
PrevChapter 13. FiltersNext

TIFF

Allows you to configure settings for saving a + TIFF (Tagged Image File Format) image. +

TIFF files can be compressed in a number of + ways to reduce the file size. LZW (Lempel + Ziv Welch) compression is the same method used in + GIF images, and produces a significant + reduction in file size without losing any image information (it + is a lossless method). It should be noted that + LZW compression is covered by a restrictive + Unisys license. +

PackBits compression is often used on Macintosh systems and is + a form of Run Length Encoding (RLE) which, + like LZW, is a lossless method. +

Deflate compression, sometime known as "zip" compression, uses + another variant of the LZW compression + method and so gives similar results, but is not restricted by + any licences. LZW compression should be + used on logo-type images such as maps and line diagrams. +

JPEG compression is the same compression + methods used when saving JPEG + files. JPEG compression should be used on + photographs or realistic scenes. +

Finally, you can leave the TIFF + uncompressed for maximum quality, but be warned that file sizes + can be very large. +

As with JPEG (and some other formats) a + comment can be added to the image up to 32KB. A default + comment for new images can be set in + Preferences. +

\ No newline at end of file diff --git a/help/C/filters/tile.html b/help/C/filters/tile.html index 52d3a4ca96..fdc70cf68e 100644 --- a/help/C/filters/tile.html +++ b/help/C/filters/tile.html @@ -1,31 +1,155 @@ - - - - - Help Page for tile - - - - - - - - - - - -
- tile help page -
-

- Index

- (/filters/tile.html)

- Sorry but the help file for tile is not yet done. -

- /Karin & Olof -

-

- - - +Tile
GIMP User Manual
PrevChapter 13. FiltersNext

Tile

Tile creates multiple copies of the current image in a tiled + pattern. You need to set the size of the tiled image as a multiple + of the current image to get a cleanly tiled image — for example, + setting 400 x 400 for a 100 x 100 image would make the new image + contain 4 copies of the current image. +

It is often useful to select Create New + Image so that you current image remain unaltered. +

\ No newline at end of file diff --git a/help/C/filters/tileit.html b/help/C/filters/tileit.html deleted file mode 100644 index 491ed1f4c0..0000000000 --- a/help/C/filters/tileit.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for tileit - - - - - - - - - - - -
- tileit help page -
-

- Index

- (/filters/tileit.html)

- Sorry but the help file for tileit is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/tiler.html b/help/C/filters/tiler.html deleted file mode 100644 index 8ca60020b9..0000000000 --- a/help/C/filters/tiler.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for tiler - - - - - - - - - - - -
- tiler help page -
-

- Index

- (/filters/tiler.html)

- Sorry but the help file for tiler is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/undocumented_filter.html b/help/C/filters/undocumented_filter.html new file mode 100644 index 0000000000..d0a226b05f --- /dev/null +++ b/help/C/filters/undocumented_filter.html @@ -0,0 +1,135 @@ +Undocumented Filter
GIMP User Manual
PrevChapter 13. FiltersNext

Undocumented Filter

Sorry, but this Plug-In is still undocumented. +


PrevHomeNext
FiltersUpReshow Last
\ No newline at end of file diff --git a/help/C/filters/uniteditor.html b/help/C/filters/uniteditor.html deleted file mode 100644 index 7e586ee6c7..0000000000 --- a/help/C/filters/uniteditor.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for uniteditor - - - - - - - - - - - -
- uniteditor help page -
-

- Index

- (/filters/uniteditor.html)

- Sorry but the help file for uniteditor is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/unsharp.html b/help/C/filters/unsharp.html deleted file mode 100644 index 50a9201d6e..0000000000 --- a/help/C/filters/unsharp.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for unsharp - - - - - - - - - - - -
- unsharp help page -
-

- Index

- (/filters/unsharp.html)

- Sorry but the help file for unsharp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/url.html b/help/C/filters/url.html index e6355db182..62527b3367 100644 --- a/help/C/filters/url.html +++ b/help/C/filters/url.html @@ -1,33 +1,178 @@ - - - - - Help Page for URL - - - - - - - - - - - -
- URL -

-

- Gimp can load an image directly from an HTTP or FTP server. The -image can be in any of the formats that Gimp recognises. To open the file, -simply type the full URL as the selection, e.g. -http://www.gimp.org/wilber.jpg. You can either specify the file type as -"URL" or "Automatic", and click OK. Gimp will display it's progress as -it downloads the image to a temporary directory. -

- Index -

- - +URL
GIMP User Manual
PrevChapter 13. FiltersNext

URL

GIMP can load an image directly from an + HTTP or FTP server. The + image can be in any of the formats that + GIMP recognises. To open the file, + simply type the full URL (Uniform Resource + Location) as the selection, e.g. http://www.gimp.org/wilber.jpg. + You can either specify the file type as URL + or Automatic, and click + OK. GIMP will + display its progress as it downloads the image to a temporary + directory. +


PrevHomeNext
TileUpValue Invert
\ No newline at end of file diff --git a/help/C/filters/video.html b/help/C/filters/video.html deleted file mode 100644 index c6cf5c2b28..0000000000 --- a/help/C/filters/video.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for video - - - - - - - - - - - -
- video help page -
-

- Index

- (/filters/video.html)

- Sorry but the help file for video is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/vinvert.html b/help/C/filters/vinvert.html index 83ebd004ce..65cc1d8156 100644 --- a/help/C/filters/vinvert.html +++ b/help/C/filters/vinvert.html @@ -1,31 +1,165 @@ - - - - - Help Page for vinvert - - - - - - - - - - - -
- vinvert help page -
-

- Index

- (/filters/vinvert.html)

- Sorry but the help file for vinvert is not yet done. -

- /Karin & Olof -

-

- - - +Value Invert
GIMP User Manual
PrevChapter 13. FiltersNext

Value Invert

The Value Invert plugin inverts the Value (brightness) part of an + HSV (Hue Saturation Value) image. The Hue and + Saturation of the image remain unaffected so color will be the + same, just a different shade. +

If you want to also invert the Hue and Saturation components of + the image, use Image + Colors + Invert. +

\ No newline at end of file diff --git a/help/C/filters/vpropagate.html b/help/C/filters/vpropagate.html deleted file mode 100644 index d32b8c96d9..0000000000 --- a/help/C/filters/vpropagate.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for vpropagate - - - - - - - - - - - -
- vpropagate help page -
-

- Index

- (/filters/vpropagate.html)

- Sorry but the help file for vpropagate is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/warp.html b/help/C/filters/warp.html deleted file mode 100644 index 63647d93a9..0000000000 --- a/help/C/filters/warp.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for warp - - - - - - - - - - - -
- warp help page -
-

- Index

- (/filters/warp.html)

- Sorry but the help file for warp is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/waves.html b/help/C/filters/waves.html deleted file mode 100644 index 436f53efee..0000000000 --- a/help/C/filters/waves.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for waves - - - - - - - - - - - -
- waves help page -
-

- Index

- (/filters/waves.html)

- Sorry but the help file for waves is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/webbrowser.html b/help/C/filters/webbrowser.html deleted file mode 100644 index 8a3485993a..0000000000 --- a/help/C/filters/webbrowser.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for webbrowser - - - - - - - - - - - -
- webbrowser help page -
-

- Index

- (/filters/webbrowser.html)

- Sorry but the help file for webbrowser is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/whirlpinch.html b/help/C/filters/whirlpinch.html deleted file mode 100644 index 893c7eb1b4..0000000000 --- a/help/C/filters/whirlpinch.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for whirlpinch - - - - - - - - - - - -
- whirlpinch help page -
-

- Index

- (/filters/whirlpinch.html)

- Sorry but the help file for whirlpinch is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/wind.html b/help/C/filters/wind.html deleted file mode 100644 index d77d100ef1..0000000000 --- a/help/C/filters/wind.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for wind - - - - - - - - - - - -
- wind help page -
-

- Index

- (/filters/wind.html)

- Sorry but the help file for wind is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/wmf.html b/help/C/filters/wmf.html index d712c685b9..718e47572b 100644 --- a/help/C/filters/wmf.html +++ b/help/C/filters/wmf.html @@ -1,31 +1,165 @@ - - - - - Help Page for WMF - - - - - - - - - - - -
- WMF -

-

- Gimp can read files in the WMF (Windows Meta File) format. This -format is often used for stock images ("clipart") for office -applications on the Microsoft Windows platform. Although WMF is a -vector format, Gimp rasterizes the image when it opens. -

- Index -

- - - +WMF
GIMP User Manual
PrevChapter 13. FiltersNext

WMF

GIMP can read files in the + WMF (Windows Meta File) format. This format is + often used for stock images ("clipart") for office applications on + the Microsoft Windows platform. Although + WMF is a vector format, + GIMP rasterizes (converts to pixels) + the image when the file is loaded. +


PrevHomeNext
Value InvertUpXWD
\ No newline at end of file diff --git a/help/C/filters/xbm.html b/help/C/filters/xbm.html deleted file mode 100644 index 696f3cd7a1..0000000000 --- a/help/C/filters/xbm.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for xbm - - - - - - - - - - - -
- xbm help page -
-

- Index

- (/filters/xbm.html)

- Sorry but the help file for xbm is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/xjt.html b/help/C/filters/xjt.html deleted file mode 100644 index 390ddede20..0000000000 --- a/help/C/filters/xjt.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for xjt - - - - - - - - - - - -
- xjt help page -
-

- Index

- (/filters/xjt.html)

- Sorry but the help file for xjt is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/xpm.html b/help/C/filters/xpm.html deleted file mode 100644 index f8e417a016..0000000000 --- a/help/C/filters/xpm.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for xpm - - - - - - - - - - - -
- xpm help page -
-

- Index

- (/filters/xpm.html)

- Sorry but the help file for xpm is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/filters/xwd.html b/help/C/filters/xwd.html index 994dcc940f..a53ae15aec 100644 --- a/help/C/filters/xwd.html +++ b/help/C/filters/xwd.html @@ -1,31 +1,164 @@ - - - - - Help Page for xwd - - - - - - - - - - - -
- xwd help page -
-

- Index

- (/filters/xwd.html)

- Sorry but the help file for xwd is not yet done. -

- /Karin & Olof -

-

- - - +XWD
GIMP User Manual
PrevChapter 13. FiltersNext

XWD

GIMP can read and write images in the + XWD (X Window Dump) + format. XWD is the format or image which is + ouput from the XWD program, which is included + with XFree86, for creating screenshots (which + GIMP itself uses on Unix platforms). +


PrevHomeNext
WMFUpKeyboard Shortcuts
\ No newline at end of file diff --git a/help/C/filters/zealouscrop.html b/help/C/filters/zealouscrop.html deleted file mode 100644 index 7b0831d9cf..0000000000 --- a/help/C/filters/zealouscrop.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for zealouscrop - - - - - - - - - - - -
- zealouscrop help page -
-

- Index

- (/filters/zealouscrop.html)

- Sorry but the help file for zealouscrop is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/gimp_license.html b/help/C/gimp_license.html new file mode 100644 index 0000000000..c37178fa97 --- /dev/null +++ b/help/C/gimp_license.html @@ -0,0 +1,506 @@ +GIMP License
GIMP User Manual
PrevNext

Appendix C. GIMP License

      GNU GENERAL PUBLIC LICENSE
+      Version 2, June 1991
+      
+      Copyright (C) 1989, 1991 Free Software Foundation, Inc.  59
+      Temple Place, Suite 330, Boston, MA 02111 USA
+    
+      Everyone is permitted to copy and distribute verbatim copies of
+      this license document, but changing it is not allowed.
+    
+      Preamble
+    
+      The licenses for most software are designed to take away your
+      freedom to share and change it.  By contrast, the GNU General
+      Public License is intended to guarantee your freedom to share
+      and change free software--to make sure the software is free for
+      all its users.  This General Public License applies to most of
+      the Free Software Foundation's software and to any other program
+      whose authors commit to using it.  (Some other Free Software
+      Foundation software is covered by the GNU Library General Public
+      License instead.)  You can apply it to your programs, too.
+    
+      When we speak of free software, we are referring to freedom, not
+      price.  Our General Public Licenses are designed to make sure
+      that you have the freedom to distribute copies of free software
+      (and charge for this service if you wish), that you receive
+      source code or can get it if you want it, that you can change
+      the software or use pieces of it in new free programs; and that
+      you know you can do these things.
+    
+      To protect your rights, we need to make restrictions that forbid
+      anyone to deny you these rights or to ask you to surrender the
+      rights.  These restrictions translate to certain
+      responsibilities for you if you distribute copies of the
+      software, or if you modify it.
+    
+      For example, if you distribute copies of such a program, whether
+      gratis or for a fee, you must give the recipients all the rights
+      that you have.  You must make sure that they, too, receive or
+      can get the source code.  And you must show them these terms so
+      they know their rights.
+    
+      We protect your rights with two steps: (1) copyright the
+      software, and (2) offer you this license which gives you legal
+      permission to copy, distribute and/or modify the software.
+    
+      Also, for each author's protection and ours, we want to make
+      certain that everyone understands that there is no warranty for
+      this free software.  If the software is modified by someone else
+      and passed on, we want its recipients to know that what they
+      have is not the original, so that any problems introduced by
+      others will not reflect on the original authors' reputations.
+    
+      Finally, any free program is threatened constantly by software
+      patents.  We wish to avoid the danger that redistributors of a
+      free program will individually obtain patent licenses, in effect
+      making the program proprietary.  To prevent this, we have made
+      it clear that any patent must be licensed for everyone's free
+      use or not licensed at all.
+    
+      The precise terms and conditions for copying, distribution and
+      modification follow.
+    
+      GNU GENERAL PUBLIC LICENSE
+      TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+    
+      0. This License applies to any program or other work which
+      contains a notice placed by the copyright holder saying it may
+      be distributed under the terms of this General Public License.
+      The "Program", below, refers to any such program or work, and a
+      "work based on the Program" means either the Program or any
+      derivative work under copyright law: that is to say, a work
+      containing the Program or a portion of it, either verbatim or
+      with modifications and/or translated into another language.
+      (Hereinafter, translation is included without limitation in the
+      term "modification".)  Each licensee is addressed as "you".
+    
+      Activities other than copying, distribution and modification are
+      not covered by this License; they are outside its scope.  The
+      act of running the Program is not restricted, and the output
+      from the Program is covered only if its contents constitute a
+      work based on the Program (independent of having been made by
+      running the Program).  Whether that is true depends on what the
+      Program does.
+    
+      1. You may copy and distribute verbatim copies of the Program's
+      source code as you receive it, in any medium, provided that you
+      conspicuously and appropriately publish on each copy an
+      appropriate copyright notice and disclaimer of warranty; keep
+      intact all the notices that refer to this License and to the
+      absence of any warranty; and give any other recipients of the
+      Program a copy of this License along with the Program.
+    
+      You may charge a fee for the physical act of transferring a
+      copy, and you may at your option offer warranty protection in
+      exchange for a fee.
+    
+      2. You may modify your copy or copies of the Program or any
+      portion of it, thus forming a work based on the Program, and
+      copy and distribute such modifications or work under the terms
+      of Section 1 above, provided that you also meet all of these
+      conditions:
+    
+      a) You must cause the modified files to carry prominent notices
+      stating that you changed the files and the date of any change.
+    
+      b) You must cause any work that you distribute or publish, that
+      in whole or in part contains or is derived from the Program or
+      any part thereof, to be licensed as a whole at no charge to all
+      third parties under the terms of this License.
+    
+      c) If the modified program normally reads commands interactively
+      when run, you must cause it, when started running for such
+      interactive use in the most ordinary way, to print or display an
+      announcement including an appropriate copyright notice and a
+      notice that there is no warranty (or else, saying that you
+      provide a warranty) and that users may redistribute the program
+      under these conditions, and telling the user how to view a copy
+      of this License.  (Exception: if the Program itself is
+      interactive but does not normally print such an announcement,
+      your work based on the Program is not required to print an
+      announcement.)
+    
+      These requirements apply to the modified work as a whole.  If
+      identifiable sections of that work are not derived from the
+      Program, and can be reasonably considered independent and
+      separate works in themselves, then this License, and its terms,
+      do not apply to those sections when you distribute them as
+      separate works.  But when you distribute the same sections as
+      part of a whole which is a work based on the Program, the
+      distribution of the whole must be on the terms of this License,
+      whose permissions for other licensees extend to the entire
+      whole, and thus to each and every part regardless of who wrote
+      it.
+    
+      Thus, it is not the intent of this section to claim rights or
+      contest your rights to work written entirely by you; rather, the
+      intent is to exercise the right to control the distribution of
+      derivative or collective works based on the Program.
+    
+      In addition, mere aggregation of another work not based on the
+      Program with the Program (or with a work based on the Program)
+      on a volume of a storage or distribution medium does not bring
+      the other work under the scope of this License.
+    
+      3. You may copy and distribute the Program (or a work based on
+      it, under Section 2) in object code or executable form under the
+      terms of Sections 1 and 2 above provided that you also do one of
+      the following:
+    
+      a) Accompany it with the complete corresponding machine-readable
+      source code, which must be distributed under the terms of
+      Sections 1 and 2 above on a medium customarily used for software
+      interchange; or,
+    
+      b) Accompany it with a written offer, valid for at least three
+      years, to give any third party, for a charge no more than your
+      cost of physically performing source distribution, a complete
+      machine-readable copy of the corresponding source code, to be
+      distributed under the terms of Sections 1 and 2 above on a
+      medium customarily used for software interchange; or,
+    
+      c) Accompany it with the information you received as to the
+      offer to distribute corresponding source code.  (This
+      alternative is allowed only for noncommercial distribution and
+      only if you received the program in object code or executable
+      form with such an offer, in accord with Subsection b above.)
+    
+      The source code for a work means the preferred form of the work
+      for making modifications to it.  For an executable work,
+      complete source code means all the source code for all modules
+      it contains, plus any associated interface definition files,
+      plus the scripts used to control compilation and installation of
+      the executable.  However, as a special exception, the source
+      code distributed need not include anything that is normally
+      distributed (in either source or binary form) with the major
+      components (compiler, kernel, and so on) of the operating system
+      on which the executable runs, unless that component itself
+      accompanies the executable.
+    
+      If distribution of executable or object code is made by offering
+      access to copy from a designated place, then offering equivalent
+      access to copy the source code from the same place counts as
+      distribution of the source code, even though third parties are
+      not compelled to copy the source along with the object code.
+    
+      4. You may not copy, modify, sublicense, or distribute the
+      Program except as expressly provided under this License.  Any
+      attempt otherwise to copy, modify, sublicense or distribute the
+      Program is void, and will automatically terminate your rights
+      under this License.  However, parties who have received copies,
+      or rights, from you under this License will not have their
+      licenses terminated so long as such parties remain in full
+      compliance.
+    
+      5. You are not required to accept this License, since you have
+      not signed it.  However, nothing else grants you permission to
+      modify or distribute the Program or its derivative works.  These
+      actions are prohibited by law if you do not accept this License.
+      Therefore, by modifying or distributing the Program (or any work
+      based on the Program), you indicate your acceptance of this
+      License to do so, and all its terms and conditions for copying,
+      distributing or modifying the Program or works based on it.
+    
+      6. Each time you redistribute the Program (or any work based on
+      the Program), the recipient automatically receives a license
+      from the original licensor to copy, distribute or modify the
+      Program subject to these terms and conditions.  You may not
+      impose any further restrictions on the recipients' exercise of
+      the rights granted herein.  You are not responsible for
+      enforcing compliance by third parties to this License.
+    
+      7. If, as a consequence of a court judgment or allegation of
+      patent infringement or for any other reason (not limited to
+      patent issues), conditions are imposed on you (whether by court
+      order, agreement or otherwise) that contradict the conditions of
+      this License, they do not excuse you from the conditions of this
+      License.  If you cannot distribute so as to satisfy
+      simultaneously your obligations under this License and any other
+      pertinent obligations, then as a consequence you may not
+      distribute the Program at all.  For example, if a patent license
+      would not permit royalty-free redistribution of the Program by
+      all those who receive copies directly or indirectly through you,
+      then the only way you could satisfy both it and this License
+      would be to refrain entirely from distribution of the Program.
+    
+      If any portion of this section is held invalid or unenforceable
+      under any particular circumstance, the balance of the section is
+      intended to apply and the section as a whole is intended to
+      apply in other circumstances.
+    
+      It is not the purpose of this section to induce you to infringe
+      any patents or other property right claims or to contest
+      validity of any such claims; this section has the sole purpose
+      of protecting the integrity of the free software distribution
+      system, which is implemented by public license practices.  Many
+      people have made generous contributions to the wide range of
+      software distributed through that system in reliance on
+      consistent application of that system; it is up to the
+      author/donor to decide if he or she is willing to distribute
+      software through any other system and a licensee cannot impose
+      that choice.
+    
+      This section is intended to make thoroughly clear what is
+      believed to be a consequence of the rest of this License.
+    
+      8. If the distribution and/or use of the Program is restricted
+      in certain countries either by patents or by copyrighted
+      interfaces, the original copyright holder who places the Program
+      under this License may add an explicit geographical distribution
+      limitation excluding those countries, so that distribution is
+      permitted only in or among countries not thus excluded.  In such
+      case, this License incorporates the limitation as if written in
+      the body of this License.
+    
+      9. The Free Software Foundation may publish revised and/or new
+      versions of the General Public License from time to time.  Such
+      new versions will be similar in spirit to the present version,
+      but may differ in detail to address new problems or concerns.
+    
+      Each version is given a distinguishing version number.  If the
+      Program specifies a version number of this License which applies
+      to it and "any later version", you have the option of following
+      the terms and conditions either of that version or of any later
+      version published by the Free Software Foundation.  If the
+      Program does not specify a version number of this License, you
+      may choose any version ever published by the Free Software
+      Foundation.
+    
+      10. If you wish to incorporate parts of the Program into other
+      free programs whose distribution conditions are different, write
+      to the author to ask for permission.  For software which is
+      copyrighted by the Free Software Foundation, write to the Free
+      Software Foundation; we sometimes make exceptions for this.  Our
+      decision will be guided by the two goals of preserving the free
+      status of all derivatives of our free software and of promoting
+      the sharing and reuse of software generally.
+    
+      NO WARRANTY
+    
+      11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
+      WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
+      LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+      HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT
+      WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+      BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+      AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE
+      QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+      PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY
+      SERVICING, REPAIR OR CORRECTION.
+    
+      12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO
+      IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY
+      MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE
+      LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
+      INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
+      INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS
+      OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+      YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH
+      ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN
+      ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    
+      END OF TERMS AND CONDITIONS
+    
+      Appendix: How to Apply These Terms to Your New Programs
+    
+      If you develop a new program, and you want it to be of the
+      greatest possible use to the public, the best way to achieve
+      this is to make it free software which everyone can redistribute
+      and change under these terms.
+    
+      To do so, attach the following notices to the program.  It is
+      safest to attach them to the start of each source file to most
+      effectively convey the exclusion of warranty; and each file
+      should have at least the "copyright" line and a pointer to where
+      the full notice is found.
+    
+      <one line to give the program's name and a brief idea of what
+      it does.> Copyright (C) 19yy <name of author>
+    
+      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 USA
+    
+      Also add information on how to contact you by electronic and
+      paper mail.
+    
+      If the program is interactive, make it output a short notice
+      like this when it starts in an interactive mode:
+    
+      Gnomovision version 69, Copyright (C) 19yy name of author
+      Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type
+      `show w'.  This is free software, and you are welcome to
+      redistribute it under certain conditions; type `show c' for
+      details.
+    
+      The hypothetical commands `show w' and `show c' should show the
+      appropriate parts of the General Public License.  Of course, the
+      commands you use may be called something other than `show w' and
+      `show c'; they could even be mouse-clicks or menu
+      items--whatever suits your program.
+    
+      You should also get your employer (if you work as a programmer)
+      or your school, if any, to sign a "copyright disclaimer" for the
+      program, if necessary.  Here is a sample; alter the names:
+    
+      Yoyodyne, Inc., hereby disclaims all copyright interest in the
+      program `Gnomovision' (which makes passes at compilers) written
+      by James Hacker.
+    
+      <signature of Ty Coon>, 1 April 1989 
+      Ty Coon, President of Vice
+    
+      This General Public License does not permit incorporating your
+      program into proprietary programs.  If your program is a
+      subroutine library, you may consider it more useful to permit
+      linking proprietary applications with the library.  If this is
+      what you want to do, use the GNU Library General Public License
+      instead of this License.
+    


PrevHomeNext
GIMP Remote Glossary
\ No newline at end of file diff --git a/help/C/gimp_remote.html b/help/C/gimp_remote.html new file mode 100644 index 0000000000..f4428aae1f --- /dev/null +++ b/help/C/gimp_remote.html @@ -0,0 +1,206 @@ +GIMP Remote
GIMP User Manual
PrevAppendix B. Command Line OptionsNext

GIMP Remote

GIMP Remote is another support program + for GIMP. It allows you to open an image from the command line in + an already running GIMP. The format is: + gimp-remote [options ... ] [files ... ] +

GIMP Remote Options

-h, --help

Displays a list of available options, and gives a terse + description of each one. +

-v, --version

Prints the version number of the installed + GIMP. +

-n, --new

Opens a new instance of GIMP if + one is not already available. +

+


PrevHomeNext
GIMP ToolUpGIMP License
\ No newline at end of file diff --git a/help/C/gimptool.html b/help/C/gimptool.html new file mode 100644 index 0000000000..0a289a5329 --- /dev/null +++ b/help/C/gimptool.html @@ -0,0 +1,695 @@ +GIMP Tool
GIMP User Manual
PrevAppendix B. Command Line OptionsNext

GIMP Tool

gimptool is a support script for GIMP + which allows you to build and install scripts and plug-ins, and can + provide information to other programs about the libraries and + paths that GIMP was compiled with. The + format is: gimptool [options ... ] +

GIMP Tool Options

--help

Displays a list of available options, and gives a terse + description of each one. +

--version

Prints the version number of the installed + GIMP. +

--quiet

Runs without printing any of the build commands. +

-n, --dry-run

Print commands, but don't actually execute them. Useful + for making dry-runs for testing. +

--bindir

Prints the bindir used to install + GIMP. +

--sbindir

Prints the sbindir used to install + GIMP. +

--libexecdir

Prints the libexecdir used to install + GIMP. +

--datadir

Prints the datadir used to install + GIMP. +

--sysconfdir

Prints the sysconfdir used to install + GIMP. +

--sharedstatedir

Prints the sharedstatedir used to install + GIMP. +

--localstatedir

Prints the localstatedir used to install + GIMP. +

--libdir

Prints the libdir used to install + GIMP. +

--infodir

Prints the infodir used to install + GIMP. +

--mandir

Prints the mandir used to install + GIMP man (manual) pages. +

--includedir

Prints the includedir used to install + GIMP. +

--gimpdatadir

Prints the actual directory where + GIMP data files, such as + patterns and brushes, were installed. +

--plugindir

Prints the actual directory where + GIMP plug-ins were installed. +

--build <plug-in.c>

Compile and link plug-in.c into a + GIMP plug-in. +

--build-strip <plug-in.c>

Compile, link and strip plug-in.c into a + GIMP plug-in. +

--install <plug-in.c>

Compile, link and install plug-in.c into the users personal + plug-in directory - ~/.gimp-1.1/plug-ins/. +

--install-strip <plug-in.c>

Compile, link, strip and install plug-in.c into the users personal + plug-in directory - ~/.gimp-1.1/plug-ins. +

--install-admin <plug-in.c>

Compile, link, and install plug-in.c into the system-wide + plug-in directory - + $PREFIX/lib/gimp/1.1/plug-ins. +

--install-bin <plug-in>

Install a plug-in, which has already been compiled and + linked, into the users personal plug-in directory - + ~/.gimp-1.1/plug-ins. +

--install-admin-bin <plug-in>

Install a plug-in, which has already been compiled and + linked, into the system-wide plug-in directory - + $PREFIX/gimp/1.1/plug-ins. +

--install-bin-strip <plug-in>

Install a striped plug-in, which has already been compiled + and linked, into the users personal plug-in directory - + ~/.gimp-1.1/plug-ins. +

--install-admin-bin-strip <plug-in>

Install a striped plug-in, which has already been compiled + and linked, into the system-wide plug-in directory - + $PREFIX/lib/gimp/1.1/plug-ins. +

--install-script <script.scm>

Install script.scm, into the users personal scripts + directory - ~/.gimp-1.1/scripts. +

--install-admin-script <script.scm>

Install script.scm, into the system-wide scripts + directory - $PREFIX/share/gimp/scripts. +

--uninstall-bin <plug-in>

Uninstall a plug-in from a users personal plug-in directory + - ~/.gimp-1.1/plug-ins. +

--uninstall-admin-bin <plug-in>

Uninstall a plug-in from the system-wide plug-in directory + - $PREFIX/lib/gimp/1.1/plug-ins. +

--uninstall-script <script.scm>

Uninstall a script from a users personal scripts directory + - ~/.gimp-1.1/scripts. +

--uninstall-admin-script <script.scm>

Uninstall a script from the system-wide scripts directory + - $PREFIX/share/gimp/scripts. +

--libs

Print the linker flags that are nessecery to link a + GIMP plug-in. +

--libs-noui

Print the linker flags that are nessecery to link a + GIMP plug-in which doesn't + require the GTK+ libraries. +

--cflags

Print the compiler flags that are nessecery to link a + GIMP plug-in. +

--cflags-noui

Print the compiler flags that are nessecery to link a + GIMP plug-in which doesn't + require the GTK+ libraries. +

--prefix=PREFIX

If specified, use PREFIX instead of the installation + prefix that GIMP was built with when computing the output + for the --cflags and --libs options. This option is also + used for the exec prefix if --exec-prefix was not + specified. This option must be specified before any + --libs or --cflags options. +

--exec-prefix=PREFIX

If specified, use PREFIX instead of the installation exec + prefix that GIMP was built with when computing the output + for the --cflags and --libs options. This option must be + specified before any --libs or --cflags options. +

+


PrevHomeNext
Command Line OptionsUpGIMP Remote
\ No newline at end of file diff --git a/help/C/glossary.html b/help/C/glossary.html new file mode 100644 index 0000000000..129f08f844 --- /dev/null +++ b/help/C/glossary.html @@ -0,0 +1,391 @@ +Glossary
GIMP User Manual
Prev 

Glossary

alpha

Refers to transparency, for example, an "Alpha Channel" + allows variable transpency. +

file format

A way that an image is written. You should select a file format + which is suitable to your situation. JPEG and + PostScript are examples of file formats. +

filter

See: plug-in

GNU

GNU's Not Unix, an organization devoted to + the creation and support of Open Source + software. GIMP is an official + GNU application. +

hex triplet

A way of representing color in the form #rrggbb. Used in + HTML. +

HSB

See: HSV

HSV

Hue Saturation Value, a way of representing color. The Hue is + the color like red or blue, the Saturation is how strong the + color is and the Value is the brightness. This is sometimes + called "HSB" (Hue Saturation Brightness). +

marching ants

The name for the dotted line which deliniates a selection. +

parasite

A piece of information which is included in a file such as the + compression type or a comment. +

perl

A scripting language which can be used for + GIMP plug-ins. +

plug-in

Extensions to the standard GIMP + feature set. +

script-fu

A scripting language designed specifically for + GIMP. +

stroke

A function for making a selection, path or channel into a solid + line using the paintbrush. +

swap directory

An area on your hard disk which effectively extends the amount + of main memory available to GIMP + meaning larger images or more complex operations can be performed. +

tile cache

A way that GIMP speeds up image + display by keeping the data in memory. +

tool

A mode for manipulating image functions — paintbrush and ink are + examples of tools. +

XCF

The native file format used by GIMP. +


PrevHome 
GIMP License  
\ No newline at end of file diff --git a/help/C/image/Makefile.am b/help/C/image/Makefile.am index af8281326b..56d65c4e64 100644 --- a/help/C/image/Makefile.am +++ b/help/C/image/Makefile.am @@ -5,7 +5,7 @@ SUBDIRS = edit select view image helpdatadir = $(gimpdatadir)/help/C/image helpdata_DATA = \ - image_window.html \ + image_window.html \ index.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/edit/Makefile.am b/help/C/image/edit/Makefile.am index 241683f38f..72ecffd7c2 100644 --- a/help/C/image/edit/Makefile.am +++ b/help/C/image/edit/Makefile.am @@ -3,16 +3,15 @@ helpdatadir = $(gimpdatadir)/help/C/image/edit helpdata_DATA = \ - clear.html \ - copy.html \ - cut.html \ - fill.html \ - index.html \ - paste.html \ - paste_as_new.html \ - paste_into.html \ - redo.html \ - stroke.html \ + clear.html \ + copy.html \ + cut.html \ + fill.html \ + paste.html \ + paste_as_new.html \ + paste_into.html \ + redo.html \ + stroke.html \ undo.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/edit/clear.html b/help/C/image/edit/clear.html index d64115837d..7a5ab8230c 100644 --- a/help/C/image/edit/clear.html +++ b/help/C/image/edit/clear.html @@ -1,35 +1,221 @@ - - - - - Help Page for Clear - - - - - - - - - - - -
- Clear Help Page -
-

- The Clear function allows you to delete everything contained in -the current selection. If nothing is selected, Gimp will delete -everything on the current layer. If you have made a selection, and -click clear, the selection will still remain once the clear function is -done. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+K -

- Index -

- - +Clear
GIMP User Manual
PrevChapter 4. ImageNext

Clear

The Clear function allows you to delete + everything contained in the current selection. If nothing is + selected, GIMP will clear everything in + the current layer. If the layer has an alpha channel + (transparency), the cleared area is made transparent + [1] Without an alpha + channel, the cleared selection is filled with the current + background color. If you have made a selection, and click + clear, the selection will still remain + once the clear function is completed. + Unlike Cut, + Clear does not put the contents into + the GIMP clipboard. The current + contents of the GIMP clipboard are + unaffected. +

Notes

[1]

The color information of the selection is not + destroyed, just made transparent. The + anti-erase function of the Eraser tool can + return the area to opaque.


PrevHomeNext
Paste NamedUpFill
\ No newline at end of file diff --git a/help/C/image/edit/copy.html b/help/C/image/edit/copy.html index 28aabf5170..207f24787b 100644 --- a/help/C/image/edit/copy.html +++ b/help/C/image/edit/copy.html @@ -1,36 +1,172 @@ - - - - - Help Page for Copy - - - - - - - - - - - -
- Copy Help Page -
-

- The copy command allows you to make a copy of -the current selection, which is stored in memory. This copy can then be -recalled by using the Paste, Paste Into and Paste As New commands. If no selection is -made, Gimp copies the whole of the current layer. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+C -

- Index -

- - +Copy
GIMP User Manual
PrevChapter 4. ImageNext

Copy

The Copy command allows you to make a + copy of the current selection, which is then stored in the + GIMP clipboard. This copy can then be + recalled by using the Paste, + Paste Into, and Paste As + New commands. If no selection is made, + GIMP copies the entirety of the current + layer. +

\ No newline at end of file diff --git a/help/C/image/edit/cut.html b/help/C/image/edit/cut.html index 4dc5e1b135..5c889cac8b 100644 --- a/help/C/image/edit/cut.html +++ b/help/C/image/edit/cut.html @@ -1,35 +1,171 @@ - - - - - Help Page for Cut - - - - - - - - - - - -
- Cut Help Page -
-

- The cut function allows you to delete a selection a put it in -memory. It can then be recalled with the Paste, Paste Into and Paste As New commands. If no selection is -made, Gimp cuts the whole of the current layer. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+X -

- Index -

- - +Cut
GIMP User Manual
PrevChapter 4. ImageNext

Cut

The Cut function allows you to delete a + selection save it to the GIMP + clipboard. It can then be recalled with the + Paste, Paste + Into, and Paste As New + commands. If no selection is made, GIMP + cuts the entirety of the current layer. +

\ No newline at end of file diff --git a/help/C/image/edit/fill.html b/help/C/image/edit/fill.html index 17d396cccf..b385397c70 100644 --- a/help/C/image/edit/fill.html +++ b/help/C/image/edit/fill.html @@ -1,38 +1,163 @@ - - - - - Help Page for fill - - - - - - - - - - - -
- Fill -
-

- The Fill function acts in a similar way to the Stroke function. Instead of drawing a line over -the selection, it fills the selected area with the foreground color -(for Fill with FG Color) or background color (Fill with BG Color). If -no selection is made, Gimp fills the whole of the current layer. -

- Additional Information -

- Default Keyboard Shortcut (Fill with FG Color): Ctrl+, -

- Default Keyboard Shortcut (Fill with BG Color): Ctrl+. -

- Index -

- - - +Fill
GIMP User Manual
PrevChapter 4. ImageNext

Fill

Fill fills the selected area with + the foreground color (for Fill with FG + Color) or background color (Fill with + BG Color). If no selection is made, + GIMP fills the entire layer. +


PrevHomeNext
ClearUpStroke
\ No newline at end of file diff --git a/help/C/image/edit/index.html b/help/C/image/edit/index.html deleted file mode 100644 index 8884e6d198..0000000000 --- a/help/C/image/edit/index.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - - Index for edit - - - - - - - - - - - -
- edit Index -
-

- (/image/edit/index.html)

- Top index

-

Topics in this directory:

- clear
- copy
- cut
- fill
- paste
- paste_as_new
- paste_into
- redo
- stroke
- undo
-

- /Karin & Olof -

-

- - - diff --git a/help/C/image/edit/paste.html b/help/C/image/edit/paste.html index 4cf87c04f3..af5585904a 100644 --- a/help/C/image/edit/paste.html +++ b/help/C/image/edit/paste.html @@ -1,41 +1,198 @@ - - - - - Help Page for Paste - - - - - - - - - - - -
- Paste Help Page -
-

- The paste function puts whatever is in memory from the last Copy or Cut command into the -current image. The pasted section will remain as a "floating selection" -which appears as a seperate layer in the Layers dialog (Image Menu -> -Dialogs -> Layers, Channels and Paths). This selection can be moved, -altered, etc, in the same way as a normal layer. Once you have decided -how you want the pasted selection to look, you can click elsewhere on -the image to merge the pasted section into the current layer, or right -click the entry in the layers dialog, and click "Anchor Layer". You can -only have one floating selection at any one time. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+V -

- Index -

- - - +Paste
GIMP User Manual
PrevChapter 4. ImageNext

Paste

The Paste function puts whatever is in + the GIMP clipboard from the last + Copy or Cut + command into the current image. The pasted section will remain as + a "floating selection" which appears as a separate layer in the + Layers dialog (Image Menu + Dialogs Layers, Channels and + Paths). This selection can be moved just as any + floating selection. Once the selection is properly located, click + elsewhere on the image to merge the pasted section into the + current layer or right click the entry + in the layers dialog, and click + Anchor Layer or New + Layer. You can only have one floating selection at + any one time and cannot work on a layer while there is a floating + selection. +


PrevHomeNext
CopyUpPaste Into
\ No newline at end of file diff --git a/help/C/image/edit/paste_as_new.html b/help/C/image/edit/paste_as_new.html index f760c92ba6..373469b212 100644 --- a/help/C/image/edit/paste_as_new.html +++ b/help/C/image/edit/paste_as_new.html @@ -1,30 +1,176 @@ - - - - - Help Page for paste_as_new - - - - - - - - - - - -
- Paste As New help page -
-

- Paste as New makes a new image containing the image currently -contained in memory from the last Copy or Cut command. -

- Index -

- - - +Paste As New
GIMP User Manual
PrevChapter 4. ImageNext

Paste As New

Paste as New makes a new image + containing the contents of the GIMP + clipboard. The clipboard contains whatever was last put there + from a Cut or + Copy. The new image will have the + exact dimensions required to contain the contents of the + clipboard. Use Image + Image Canvas + Size to modify this as desired. +


PrevHomeNext
Paste IntoUpCut Named
\ No newline at end of file diff --git a/help/C/image/edit/paste_into.html b/help/C/image/edit/paste_into.html index bba7900f7a..925fcd6b2d 100644 --- a/help/C/image/edit/paste_into.html +++ b/help/C/image/edit/paste_into.html @@ -1,29 +1,161 @@ - - - - - Help Page for paste_into - - - - - - - - - - - -
- Paste Into Help Page -
-

- The Paste Into command performs the same function as the Paste command, except it pastes into the current -selection. If no selection is made, the function is the same as Paste. -

- Index -

- - +Paste Into
GIMP User Manual
PrevChapter 4. ImageNext

Paste Into

The Paste Into command performs the + same function as the Paste command, + except it pastes into the current selection. The clipboard + contents are centered in the current selection and cropped as + needed to fit into it. If no selection is + made, the function is the same as Paste. +


PrevHomeNext
PasteUpPaste As New
\ No newline at end of file diff --git a/help/C/image/edit/redo.html b/help/C/image/edit/redo.html index 80b0aad98f..bae6c1c973 100644 --- a/help/C/image/edit/redo.html +++ b/help/C/image/edit/redo.html @@ -1,39 +1,196 @@ - - - - - Help Page for Redo - - - - - - - - - - - -
- Redo -
-

- The Redo function is the brother of the Undo function. Redo undoes an undo - i.e. if you -have painted a line with the paintbrush, and then clicked Undo to -remove it, you can make it re-appear by clicking Redo. -

- As with the Undo function, you may want to use the undo dialog -(Image Menu -> Dialogs -> Undo Dialog) which allows you to make -multiple Undo/Redo's in one go. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+R -

- Index -

- - - +Redo
GIMP User Manual
PrevChapter 4. ImageNext

Redo

The Redo function is the reverse of the + Undo + function. Redo undoes an undo — + if you have painted a line with the Paintbrush and then clicked + Undo to remove it, you can make it + reappear by clicking Redo. +

As with the Undo function, you may want + to use the Undo dialog (Image + Menu Dialogs Undo + Dialog) which allows you to make multiple + Undo and + Redo operations at once. +

\ No newline at end of file diff --git a/help/C/image/edit/stroke.html b/help/C/image/edit/stroke.html index adbfef4ba9..e1c1d4dca3 100644 --- a/help/C/image/edit/stroke.html +++ b/help/C/image/edit/stroke.html @@ -1,32 +1,177 @@ - - - - - Help Page for Stroke - - - - - - - - - - - -
- Stroke Help Page -
-

- The stroke command is used in conjunction with the selection -tools to create shapes which would be difficult drawn freehand. To use -the tool, first make a selection using any of the selection tools, then -select a suitable brush (File -> Dialogs -> Brushes). Then click Edit --> Stroke - a line using the selected brush will be drawn with the -center of the brush on the center of the selection line. -

- Index -

- - +Stroke
GIMP User Manual
PrevChapter 4. ImageNext

Stroke

The Stroke command is used in + conjunction with the selection tools to create shapes which would + be difficult to draw freehand. To use + Stroke, first make a selection using + any of the selection tools. With a suitable brush selected + (File Dialogs + Brushes), click + Edit Stroke. + A line using the selected brush will be drawn with the center of + the brush on the center of the selection line. +


PrevHomeNext
FillUpInvert Selection
\ No newline at end of file diff --git a/help/C/image/edit/undo.html b/help/C/image/edit/undo.html index c1907b3f2b..19219839a4 100644 --- a/help/C/image/edit/undo.html +++ b/help/C/image/edit/undo.html @@ -1,44 +1,195 @@ - - - - - Help Page for Undo - - - - - - - - - - - -
- Undo -
-

- The undo function allows you to revert your image to how it -appeared before making the last change to it. For example, if you paint -a single stroke with the paintbrush on your image, clicking undo will -remove it. If you paint two stroke, releasing the mouse button in -between, you can press undo twice to undo both changes. If you want to -undo multiple changes in one go, you may prefer to use the undo dialog -(Image Menu -> Dialogs -> Undo History). -

- You should note that you can configure the number of undo -levels (how many steps back you can take) in Preferences -> Environment --> Levels of Undo. You can set this figure as high as you like, but you -should note that every undo step takes up memory so you should set this -figure too high if you don't have much memory. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Z -

- Index -

- - - +Undo
GIMP User Manual
PrevChapter 4. ImageNext

Undo

The Undo function allows you to revert + an image a step back in the drawing or editting process. For + example, if you paint a single stroke with the paintbrush on your + image, clicking undo will remove it. If + you paint two strokes, releasing the mouse button or pen in + between, you must undo twice to undo + both changes. If you want to undo multiple changes at once, you + may prefer to use the undo dialog + (Image Menu Dialogs + Undo History). +

You can configure the number of undo levels (how many steps back + you can take) in File + Preferences then + Environment Levels of + Undo. You can set this figure as high as you like, + but you should note that every undo step takes up memory so you + should keep this figure low if you don't have much memory. +


PrevHomeNext
The Image WindowUpRedo
\ No newline at end of file diff --git a/help/C/image/image/Makefile.am b/help/C/image/image/Makefile.am index 9d7c2b21a7..68e9259525 100644 --- a/help/C/image/image/Makefile.am +++ b/help/C/image/image/Makefile.am @@ -5,8 +5,7 @@ SUBDIRS = colors mode transforms helpdatadir = $(gimpdatadir)/help/C/image/image helpdata_DATA = \ - duplicate.html \ - index.html + duplicate.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/image/colors/Makefile.am b/help/C/image/image/colors/Makefile.am index 2b00661047..508b35d73b 100644 --- a/help/C/image/image/colors/Makefile.am +++ b/help/C/image/image/colors/Makefile.am @@ -5,9 +5,8 @@ SUBDIRS = auto helpdatadir = $(gimpdatadir)/help/C/image/image/colors helpdata_DATA = \ - desaturate.html \ - index.html \ - invert.html + desaturate.html \ + invert.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/image/colors/auto/Makefile.am b/help/C/image/image/colors/auto/Makefile.am index 485a9f7906..0a7100ce7e 100644 --- a/help/C/image/image/colors/auto/Makefile.am +++ b/help/C/image/image/colors/auto/Makefile.am @@ -3,8 +3,7 @@ helpdatadir = $(gimpdatadir)/help/C/image/image/colors/auto helpdata_DATA = \ - equalize.html \ - index.html + equalize.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/image/colors/auto/equalize.html b/help/C/image/image/colors/auto/equalize.html index 0c4ebd52c4..a2f87c1e69 100644 --- a/help/C/image/image/colors/auto/equalize.html +++ b/help/C/image/image/colors/auto/equalize.html @@ -1,28 +1,146 @@ - - - - - Help Page for Equalize - - - - - - - - - - - -
- Equalize Help Page -
-

- The equalize function does ?. -

- Index

-

- - - +Equalize
GIMP User Manual
PrevChapter 4. ImageNext

Equalize

This functions equalizes either the whole contents of an image + or the area specified by a selection. It operates on a + histogram of the images. +


PrevHomeNext
InvertUpOffset
\ No newline at end of file diff --git a/help/C/image/image/colors/auto/index.html b/help/C/image/image/colors/auto/index.html deleted file mode 100644 index 00e12b7370..0000000000 --- a/help/C/image/image/colors/auto/index.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Index for Auto - - - - - - - - - - - -
- Auto Index -
-

-

-

Topics in this directory:

- Equalize -

- Top Index -

- - diff --git a/help/C/image/image/colors/desaturate.html b/help/C/image/image/colors/desaturate.html index 132dffee47..1e1460d92e 100644 --- a/help/C/image/image/colors/desaturate.html +++ b/help/C/image/image/colors/desaturate.html @@ -1,29 +1,155 @@ - - - - - Help Page for Desaturate - - - - - - - - - - - -
- Desaturate Help Page -
-

- Desaturate is used for removing color from the current -selection. If no selection is made color is removed from the whole of -the current layer. -

- Index -

- - +Desaturate
GIMP User Manual
PrevChapter 4. ImageNext

Desaturate

Desaturate is used for removing color + from the current selection. If no selection is made, color is + removed from the entirety of the current layer. The result of + desaturation is similar to a conversion to grayscale, but does not + change the image mode to grayscale and can be performed on a + single selection or layer. +


PrevHomeNext
Indexed ModeUpInvert
\ No newline at end of file diff --git a/help/C/image/image/colors/index.html b/help/C/image/image/colors/index.html deleted file mode 100644 index ea6d7d85d7..0000000000 --- a/help/C/image/image/colors/index.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Index for Colors - - - - - - - - - - - -
- Colors Index -
-

- Subtopics available:

- Auto
-

Topics in this directory:

- Desaturate
- Invert -

- Top Index -

- - diff --git a/help/C/image/image/colors/invert.html b/help/C/image/image/colors/invert.html index 51b8a84643..7e84de8b5a 100644 --- a/help/C/image/image/colors/invert.html +++ b/help/C/image/image/colors/invert.html @@ -1,35 +1,164 @@ - - - - - Help Page for Invert - - - - - - - - - - - -
- Invert Help Page -
-

- The invert function converts every color in the selection to -it's opposite - for example, black becomes white, yellow becomes blue -etc. The effect this create is similar the a photograph negative. You -can see what the opposite of all colors is by looking at the GTK color -selector (double-click the foreground or background color, and select -the "GTK" tab). The opposite color is the one at the opposite side of -the color wheel. -

- If no selection is made, the entire layer is inverted. -

- Index -

- - +Invert
GIMP User Manual
PrevChapter 4. ImageNext

Invert

The Invert function converts every + color in the selection to its opposite. For example, black + becomes white, yellow becomes blue, etc. The result of this + operation is similar to a photographic negative of the original + image. You can see what the opposite of all colors is by looking + at the GTK color selector (double-click the + foreground or background color, and select the + GTK tab). The opposite color is the one at + the opposite side of the color wheel. +

If no selection is made, the entire layer is inverted. +


PrevHomeNext
DesaturateUpEqualize
\ No newline at end of file diff --git a/help/C/image/image/duplicate.html b/help/C/image/image/duplicate.html index 4badbbfa76..230454f564 100644 --- a/help/C/image/image/duplicate.html +++ b/help/C/image/image/duplicate.html @@ -1,33 +1,149 @@ - - - - - Help Page for Duplicate - - - - - - - - - - - -
- Duplicate -
-

- Duplicate makes an exact copy of the current image, and opens -it as a new image. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+D -

- Index -

- - - +Duplicate
GIMP User Manual
PrevChapter 4. ImageNext

Duplicate

Duplicate creates a new image which is + an exact copy of the current one. The + GIMP clipboard is unaffected. +


PrevHomeNext
Scale Layer WarningUpLayers
\ No newline at end of file diff --git a/help/C/image/image/index.html b/help/C/image/image/index.html deleted file mode 100644 index dca3d2b78a..0000000000 --- a/help/C/image/image/index.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Index for image - - - - - - - - - - - -
- image Index -
-

- (/image/image/index.html)

- Top index

- Subtopics available:

- colors
- transforms
- mode
-

Topics in this directory:

- duplicate
-

- /Karin & Olof -

-

- - - diff --git a/help/C/image/image/mode/Makefile.am b/help/C/image/image/mode/Makefile.am index 2c9a1d8681..4c57b6d53d 100644 --- a/help/C/image/image/mode/Makefile.am +++ b/help/C/image/image/mode/Makefile.am @@ -3,9 +3,8 @@ helpdatadir = $(gimpdatadir)/help/C/image/image/mode helpdata_DATA = \ - convert_to_grayscale.html \ - convert_to_rgb.html \ - index.html + convert_to_grayscale.html \ + convert_to_rgb.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/image/mode/convert_to_grayscale.html b/help/C/image/image/mode/convert_to_grayscale.html index 961061ac39..954f79c18f 100644 --- a/help/C/image/image/mode/convert_to_grayscale.html +++ b/help/C/image/image/mode/convert_to_grayscale.html @@ -1,35 +1,153 @@ - - - - - Help Page for Convert to Grayscale - - - - - - - - - - - -
- Grayscale -
-

- Convert to Grayscale removes all color from the current image, -in the same way as Desaturate, however, this also changes the image type -which means that no color can then be added to image. If you choose a -color and try to paint on a grayscale image, that color will -automatically be desaturated and will appear as a shade of gray. -

- Additional Information -

- Default Keyboard Shortcut: Alt+G -

- Index -

- - +Grayscale
GIMP User Manual
PrevChapter 4. ImageNext

Grayscale

Convert to Grayscale removes all color + from the current image, in the same way as + Desaturate. However, this also changes + the image mode which means that no color can then be added to + image. If you choose a color and try to paint on a grayscale + image, that color will automatically be desaturated and will + appear as a shade of gray. +


PrevHomeNext
RGBUpIndexed Mode
\ No newline at end of file diff --git a/help/C/image/image/mode/convert_to_rgb.html b/help/C/image/image/mode/convert_to_rgb.html index a1b6cc5d02..3f4e35c4fc 100644 --- a/help/C/image/image/mode/convert_to_rgb.html +++ b/help/C/image/image/mode/convert_to_rgb.html @@ -1,36 +1,154 @@ - - - - - Help Page for Convert to RGB - - - - - - - - - - - -
- RGB -
-

- Convert to RGB allows you to change an image which is either in -the grayscale of indexed formats, into a full color RGB image. When -creating images which use low color formats such as GIF, it is often -best to save a copy in RGB format so that no information is lost, and -you can edit the image again later. -

- Additional Information -

- Default Keyboard Shortcut: Alt+R -

- Index -

- - - +RGB
GIMP User Manual
PrevChapter 4. ImageNext

RGB

Convert to RGB allows you to change an + image which is either in grayscale or indexed format into a + full-color RGB image. When creating images which use low color + formats such as GIF, it is often best to save a + copy in RGB format so that no information is lost and you can edit + the image again later. Be sure to use a + GIMP-native format if your image + includes transparency and layers. +


PrevHomeNext
Shrink WrapUpGrayscale
\ No newline at end of file diff --git a/help/C/image/image/mode/index.html b/help/C/image/image/mode/index.html deleted file mode 100644 index 439a247c4b..0000000000 --- a/help/C/image/image/mode/index.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - Index for Mode - - - - - - - - - - - -
- Mode Index -
-

-

-

Topics in this directory:

- Convert to Grayscale
- Convert to RGB -

- Top Index -

- - diff --git a/help/C/image/image/transforms/Makefile.am b/help/C/image/image/transforms/Makefile.am index 495cb37432..7532f42a90 100644 --- a/help/C/image/image/transforms/Makefile.am +++ b/help/C/image/image/transforms/Makefile.am @@ -2,8 +2,7 @@ helpdatadir = $(gimpdatadir)/help/C/image/image/transforms -helpdata_DATA = \ - index.html +helpdata_DATA = EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/image/transforms/index.html b/help/C/image/image/transforms/index.html deleted file mode 100644 index 3483265f00..0000000000 --- a/help/C/image/image/transforms/index.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Index for transforms - - - - - - - - - - - -
- transforms Index -
-

- (/image/image/transforms/index.html)

- Top index

-

Topics in this directory:

-

- /Karin & Olof -

-

- - - diff --git a/help/C/image/image_window.html b/help/C/image/image_window.html index 545dac9df0..69fb370d80 100644 --- a/help/C/image/image_window.html +++ b/help/C/image/image_window.html @@ -1,66 +1,205 @@ - - - - - Help Page for Image Window - - - - - - - - - - - -
- Image Window -

-

- The image window is the one that you will see when you are -composing your image. -

- The main part of the window is the section in which your image -can be created. See the help for the tools for more information on what -can be done. -

- By default, the image window in bordered at the top and left by -a ruler which is measured in pixels at 100 pixel intervals. There is an -arrow on each ruler which show the vertical and horizontal position of -the cursor. The position of the cursor can also be seen in figures at -the bottom left corner of the window. This is in the format x -direction, y direction and is in pixels. -

- Also at the bottom of the image window (on the "Statusbar") is -the filename and other information about the image such as the zoom -level, which is also displayed as the title to the window. The -information displayed can be configured in Preferences -> Image Windows --> Image Title Format. Next to this is a section which displayed a -progress bar when an operation will take a long time. That action can -be aborted by clicking the "Cancel" button next to it. -

- Just above the co-ordinates display, there are two buttons, one -which shows a dotted square, and the other a red square. Clicking the -red square invokes the "Quick Mask". This adds an extra channel which -can be edited to make complex selections. Once the mask has been -edited to your satisfaction, click the dotted square to convert it into -a standard selection. The color an opacity of the mask can be -configured by double-clicking either button. -

- The final feature of the image window is the preview box - this -looks like four arrows going outwards and is at the bottom right -corner. Clicking and holding this button will show a small preview of -the whole image. This is particularly use if you are working at very -high zoom levels and want to see how your changes affect the -overall image. -

- Many of these features can be configured, or turned on and off -in Preferences -> Image Windows, so you may need to make some changes -to see all the features. -

- Index -

- - +The Image Window
GIMP User Manual
PrevChapter 4. ImageNext

The Image Window

The image window is the one that you will see when you are + composing your image. +

Figure 4-1. The Image Window

The main part of the window is the section in which your image + can be created. See the help for the tools for more information on what + can be done. +

By default, the image window in bordered at the top and left by + a ruler which is measured in pixels at 100 pixel intervals. There is an + arrow on each ruler which show the vertical and horizontal position of + the cursor. The position of the cursor can also be seen in figures at + the bottom left corner of the window. This is in the format X + direction, Y direction and is in pixels or the image's unit. +

Also at the bottom of the image window (on the "Statusbar") is + the filename and other information about the image such as the zoom + level, which is also displayed as the title to the window. The + information displayed can be configured in Preferences -> Image Windows + -> Image Title Format. Next to this is a section which displayed a + progress bar when an operation will take a long time. That action can + be aborted by clicking the "Cancel" button next to it. +

Just above the co-ordinates display, there are two buttons, one + which shows a dotted square, and the other a red square. Clicking the + red square invokes the "Quick Mask". This adds an extra channel which + can be edited to make complex selections. Once the mask has been + edited to your satisfaction, click the dotted square to convert it into + a standard selection. The color an opacity of the mask can be + configured by double-clicking either button. +

The final feature of the image window is the preview box - this + looks like four arrows going outwards and is at the bottom right + corner. Clicking and holding this button will show a small preview of + the whole image. This is particularly use if you are working at very + high zoom levels and want to see how your changes affect the + overall image. +

Many of these features can be configured, or turned on and off + in Preferences -> Image Windows, so you may need to make some changes + to see all the features. +

\ No newline at end of file diff --git a/help/C/image/index.html b/help/C/image/index.html index d091b8a611..9e8d02c46c 100644 --- a/help/C/image/index.html +++ b/help/C/image/index.html @@ -1,37 +1,490 @@ - - - - - Index for image - - - - - - - - - - - -
- image Index -
-

- (/image/index.html)

- Top index

- Subtopics available:

- edit
- select
- view
- image
-

Topics in this directory:

- image_window
-

- /Karin & Olof -

-

- - - +Image
GIMP User Manual
PrevNext


PrevHomeNext
About Dialog The Image Window
\ No newline at end of file diff --git a/help/C/image/select/Makefile.am b/help/C/image/select/Makefile.am index 4e071d3dde..7d400f867d 100644 --- a/help/C/image/select/Makefile.am +++ b/help/C/image/select/Makefile.am @@ -3,12 +3,11 @@ helpdatadir = $(gimpdatadir)/help/C/image/select helpdata_DATA = \ - all.html \ - float.html \ - index.html \ - invert.html \ - none.html \ - save_to_channel.html \ + all.html \ + float.html \ + invert.html \ + none.html \ + save_to_channel.html \ sharpen.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/select/all.html b/help/C/image/select/all.html index 8ab414c2c4..0e53ba258c 100644 --- a/help/C/image/select/all.html +++ b/help/C/image/select/all.html @@ -1,31 +1,154 @@ - - - - - Help Page for All - - - - - - - - - - - -
- Select All -
-

- Select -> All selects everything in the current layer. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+A -

- Index -

- - +Select All
GIMP User Manual
PrevChapter 4. ImageNext

Select All

Select All + selects everything in the current layer. +


PrevHomeNext
Invert SelectionUpSelect None
\ No newline at end of file diff --git a/help/C/image/select/float.html b/help/C/image/select/float.html index 6c44bdf9b5..8c49e014b0 100644 --- a/help/C/image/select/float.html +++ b/help/C/image/select/float.html @@ -1,39 +1,212 @@ - - - - - Help Page for Float - - - - - - - - - - - -
- Select Float -
-

- Select -> Float converts the current selection into a floating -selection. A floating selection appears in the Layers dialog (Image -Menu -> Dialogs -> Layers, Channels and Paths) and can be manipulated -in the same way as any other layer. To merge the floating selection -back into the image you can either click elsewhere on the image or -right click the entry in the Layers dialog and select Anchor Layer. -

- If you drag a selection, it will automatically be converted -into a floating one. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Shift+L -

- Index -

- - +Float Selection
GIMP User Manual
PrevChapter 4. ImageNext

Float Selection

Select Float + converts the current selection into a floating selection. A + floating selection appears in the Layers + dialog (Image Menu + Dialogs Layers, Channels and + Paths) and can be manipulated in the same way as any + other layer. To merge the floating selection back into the image + you can either click elsewhere on the image or right click the + entry in the Layers dialog and select + Anchor Layer. It can also be converted + to a New Layer. +

If you drag a selection, it will automatically be converted into a + floating one. +


PrevHomeNext
Select NoneUpFeather Selection
\ No newline at end of file diff --git a/help/C/image/select/index.html b/help/C/image/select/index.html deleted file mode 100644 index 3277bddc19..0000000000 --- a/help/C/image/select/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - Index for select - - - - - - - - - - - -
- select Index -
-

- (/image/select/index.html)

- Top index

-

Topics in this directory:

- all
- float
- invert
- none
- save_to_channel
- sharpen
-

- /Karin & Olof -

-

- - - diff --git a/help/C/image/select/invert.html b/help/C/image/select/invert.html index ecf2166288..de7ed34792 100644 --- a/help/C/image/select/invert.html +++ b/help/C/image/select/invert.html @@ -1,34 +1,156 @@ - - - - - Help Page for Invert - - - - - - - - - - - -
- Select Invert -
-

- Select -> Invert selects everything on the current layer which -wasn't originally selects (it selects the opposite). If nothing in the -image is selected before using this functions, the whole layer is -selected. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+I -

- Index -

- - +Invert Selection
GIMP User Manual
PrevChapter 4. ImageNext

Invert Selection

Select Invert + selects everything on the current layer which wasn't originally + selected (it selects the opposite). If nothing in the image is + selected before using this functions, the whole layer is selected. +


PrevHomeNext
StrokeUpSelect All
\ No newline at end of file diff --git a/help/C/image/select/none.html b/help/C/image/select/none.html index e1992e7628..df8e597d9a 100644 --- a/help/C/image/select/none.html +++ b/help/C/image/select/none.html @@ -1,32 +1,156 @@ - - - - - Help Page for None - - - - - - - - - - - -
- Select None -
-

- Select -> None removes any currently active selection. If -nothing is selected, this function will do nothing. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Shift+A -

- Index -

- - +Select None
GIMP User Manual
PrevChapter 4. ImageNext

Select None

Select None + cancels all selections. If nothing is selected, + this function will do nothing. A floating selection is not + affected. +


PrevHomeNext
Select AllUpFloat Selection
\ No newline at end of file diff --git a/help/C/image/select/save_to_channel.html b/help/C/image/select/save_to_channel.html index 31ced5b5be..154c5d9778 100644 --- a/help/C/image/select/save_to_channel.html +++ b/help/C/image/select/save_to_channel.html @@ -1,30 +1,167 @@ - - - - - Help Page for Save to Channel - - - - - - - - - - - -
- Save to Channel Help Page -
-

- Save to Channel creates a new channel containing the current -selection. The channel can be seen and manipulated in the Channels -dialog (Image Menu -> Dialogs -> Layers, Channels and Paths), and will -be called "Selection Mask Copy". -

- Index -

- - +Save Selection to Channel
GIMP User Manual
PrevChapter 4. ImageNext

Save Selection to Channel

Save to Channel creates a new channel + containing the current selection. The channel can be seen and + manipulated in the Channels dialog + (Image Menu Dialogs + Layers, Channels and Paths), and will + be called Selection Mask Copy. +


PrevHomeNext
Border SelectionUpZoom
\ No newline at end of file diff --git a/help/C/image/select/sharpen.html b/help/C/image/select/sharpen.html index 54021c368a..ac13f17427 100644 --- a/help/C/image/select/sharpen.html +++ b/help/C/image/select/sharpen.html @@ -1,32 +1,155 @@ - - - - - Help Page for Sharpen - - - - - - - - - - - -
- Sharpen Help Page -
-

- Select -> Sharpen gives the current selection stronger lines -and sharper edges. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Shift+H -

- Index -

- - +Sharpen Selection
GIMP User Manual
PrevChapter 4. ImageNext

Sharpen Selection

Select Sharpen + This sharpens the edges of a selection, undoing the fuzziness or + feathering. +


PrevHomeNext
Feather SelectionUpShrink Selection
\ No newline at end of file diff --git a/help/C/image/view/Makefile.am b/help/C/image/view/Makefile.am index 6952a35dc5..e4dff238df 100644 --- a/help/C/image/view/Makefile.am +++ b/help/C/image/view/Makefile.am @@ -3,15 +3,14 @@ helpdatadir = $(gimpdatadir)/help/C/image/view helpdata_DATA = \ - dot_for_dot.html \ - index.html \ - new_view.html \ - shrink_wrap.html \ - snap_to_guides.html \ - toggle_guides.html \ - toggle_rulers.html \ - toggle_selection.html \ - toggle_statusbar.html \ + dot_for_dot.html \ + new_view.html \ + shrink_wrap.html \ + snap_to_guides.html \ + toggle_guides.html \ + toggle_rulers.html \ + toggle_selection.html \ + toggle_statusbar.html \ zoom.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/image/view/dot_for_dot.html b/help/C/image/view/dot_for_dot.html index cb79f42051..2b4998a871 100644 --- a/help/C/image/view/dot_for_dot.html +++ b/help/C/image/view/dot_for_dot.html @@ -1,31 +1,146 @@ - - - - - Help Page for dot_for_dot - - - - - - - - - - - -
- dot_for_dot help page -
-

- Index

- (/image/view/dot_for_dot.html)

- Sorry but the help file for dot_for_dot is not yet done. -

- /Karin & Olof -

-

- - - +Dot for Dot
GIMP User Manual
PrevChapter 4. ImageNext

Dot for Dot

Turns "Dot for Dot" viewing on or off. + When turned on every point in the image is shown as + one point on the screen. +


PrevHomeNext
ZoomUpInfo Window
\ No newline at end of file diff --git a/help/C/image/view/index.html b/help/C/image/view/index.html deleted file mode 100644 index 01663893e0..0000000000 --- a/help/C/image/view/index.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Index for view - - - - - - - - - - - -
- view Index -
-

- (/image/view/index.html)

- Top index

-

Topics in this directory:

- dot_for_dot
- new_view
- shrink_wrap
- snap_to_guides
- toggle_guides
- toggle_rulers
- toggle_selection
- toggle_statusbar
- zoom
-

- /Karin & Olof -

-

- - - diff --git a/help/C/image/view/new_view.html b/help/C/image/view/new_view.html index 8c592efa61..ef21286655 100644 --- a/help/C/image/view/new_view.html +++ b/help/C/image/view/new_view.html @@ -1,31 +1,144 @@ - - - - - Help Page for New View - - - - - - - - - - - -
- New View -

-

- Creates a new image window for the current image which can be -configured differently, such as a different zoom level, turning on/off -image windows features etc. Note that this window is not a seperate -file, but a different view of the same file. -

- Index -

- - - +New View
GIMP User Manual
PrevChapter 4. ImageNext

New View

Creates a new image window for the current image which can be + configured differently, such as a different zoom level, turning + on/off image windows features etc. Note that this window is not a + separate file, but a different view of the same file. Changes + made in one view will appear in other views so it is very useful + for maintaining an overall view of an image while working on + close-up retouchig. +


PrevHomeNext
Snap to GuidesUpShrink Wrap
\ No newline at end of file diff --git a/help/C/image/view/shrink_wrap.html b/help/C/image/view/shrink_wrap.html index daf2162e66..f030746989 100644 --- a/help/C/image/view/shrink_wrap.html +++ b/help/C/image/view/shrink_wrap.html @@ -1,33 +1,139 @@ - - - - - Help Page for Shrink Wrap - - - - - - - - - - - -
- Shrink Wrap -

-

- Makes the borders of the image window shrink or grow to the -same size as the image within. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+E -

- Index -

- - - +Shrink Wrap
GIMP User Manual
PrevChapter 4. ImageNext

Shrink Wrap

Makes the borders of the image window shrink or grow to the same + size as the image within. +


PrevHomeNext
New ViewUpRGB
\ No newline at end of file diff --git a/help/C/image/view/snap_to_guides.html b/help/C/image/view/snap_to_guides.html index f15d7d2d5a..ff27690831 100644 --- a/help/C/image/view/snap_to_guides.html +++ b/help/C/image/view/snap_to_guides.html @@ -1,31 +1,144 @@ - - - - - Help Page for snap_to_guides - - - - - - - - - - - -
- snap_to_guides help page -
-

- Index

- (/image/view/snap_to_guides.html)

- Sorry but the help file for snap_to_guides is not yet done. -

- /Karin & Olof -

-

- - - +Snap to Guides
GIMP User Manual
PrevChapter 4. ImageNext

Snap to Guides

Toggles the "magnetic guides" mode on or off. + When turned on the cursor will snap to the guides as soon + as it gets very close to them. This option is very handy + for precisely drawing circles, ellipses, and lines. +


PrevHomeNext
Toggle GuidesUpNew View
\ No newline at end of file diff --git a/help/C/image/view/toggle_guides.html b/help/C/image/view/toggle_guides.html index 7a8047e45f..f6678e991e 100644 --- a/help/C/image/view/toggle_guides.html +++ b/help/C/image/view/toggle_guides.html @@ -1,31 +1,139 @@ - - - - - Help Page for toggle_guides - - - - - - - - - - - -
- toggle_guides help page -
-

- Index

- (/image/view/toggle_guides.html)

- Sorry but the help file for toggle_guides is not yet done. -

- /Karin & Olof -

-

- - - +Toggle Guides
GIMP User Manual
PrevChapter 4. ImageNext

Toggle Guides

This option toggles the visibility of the guides in the + image. +


PrevHomeNext
Toggle StatusbarUpSnap to Guides
\ No newline at end of file diff --git a/help/C/image/view/toggle_rulers.html b/help/C/image/view/toggle_rulers.html index 68b388fba7..0ed57a7b29 100644 --- a/help/C/image/view/toggle_rulers.html +++ b/help/C/image/view/toggle_rulers.html @@ -1,33 +1,142 @@ - - - - - Help Page for Toggle Rulers - - - - - - - - - - - -
- Toggle Rulers -

-

- Turns on/off the rulers at the top and left of the image -window, and the ">" button to access the image menu. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Shift+R -

- Index -

- - - +Toggle Rulers
GIMP User Manual
PrevChapter 4. ImageNext

Toggle Rulers

Turns on/off the rulers at the top and left of the image window, + and the > button to access the image menu. +


PrevHomeNext
Toggle SelectionUpToggle Statusbar
\ No newline at end of file diff --git a/help/C/image/view/toggle_selection.html b/help/C/image/view/toggle_selection.html index 9a02464301..423c87a674 100644 --- a/help/C/image/view/toggle_selection.html +++ b/help/C/image/view/toggle_selection.html @@ -1,33 +1,143 @@ - - - - - Help Page for Toggle Selection - - - - - - - - - - - -
- Toggle Selection -

-

- Turns on/off the dotted selections. Note that the selections -still exist when the dotted lines are turned off. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+T -

- Index -

- - - +Toggle Selection
GIMP User Manual
PrevChapter 4. ImageNext

Toggle Selection

Turns on/off the dotted selections (marching ants). Note that the + selections still + exist when the dotted lines are turned off. +


PrevHomeNext
Navigation WindowUpToggle Rulers
\ No newline at end of file diff --git a/help/C/image/view/toggle_statusbar.html b/help/C/image/view/toggle_statusbar.html index c97ba8d0c0..2f7302d3f9 100644 --- a/help/C/image/view/toggle_statusbar.html +++ b/help/C/image/view/toggle_statusbar.html @@ -1,33 +1,143 @@ - - - - - Help Page for Toggle Statusbar - - - - - - - - - - - -
- Toggle Statusbar -

-

- Turns on/off the bar at the bottom of the image window -containing the co-ordinates, filename, progress bar and Cancel button. -

- Additional Information -

- Default Keyboard Shortcut: Ctrl+Shift+S -

- Index -

- - - +Toggle Statusbar
GIMP User Manual
PrevChapter 4. ImageNext

Toggle Statusbar

Turns on and off the bar at the bottom of the image window containing + the coordinates, file name, progress bar, and + Cancel button. +


PrevHomeNext
Toggle RulersUpToggle Guides
\ No newline at end of file diff --git a/help/C/image/view/zoom.html b/help/C/image/view/zoom.html index 47e6feb24d..e2a4ae2c7c 100644 --- a/help/C/image/view/zoom.html +++ b/help/C/image/view/zoom.html @@ -1,43 +1,150 @@ - - - - - Help Page for Zoom - - - - - - - - - - - -
- Zoom -

-

- The zoom functions allow you to see the whole of images that -are too large to fit on screen, and to see fine detail which helps when -editing at a pixel level. -

- Zoom in zooms 100% in each time it is clicked up to a maximum -of 1600%. Zoom out zooms out at progressively smaller intervals to a -maximum of 6%. Note that for large images, zooming out may take a short -while because Gimp has to load extra parts of the image from memory. -

- Additional Information -

- Default Keyboard Shortcuts: -

- Zoom In: Ctrl+=
- Zoom Out: Ctrl+-
- Zoom to 1:1: 1
-

- Index -

- - - +Zoom
GIMP User Manual
PrevChapter 4. ImageNext

Zoom

The zoom functions allow you to see the whole of images that are + too large to fit on screen, and to see fine detail which helps + when editing at a pixel level. +

Zoom in zooms 100% in each time it is clicked up to a maximum of + 1600%. Zoom out zooms out at progressively smaller intervals to a + maximum of 6%. Note that for large images, zooming out may take a + short while because GIMP has to load extra parts of the image from + memory. +


PrevHomeNext
Save Selection to ChannelUpDot for Dot
\ No newline at end of file diff --git a/help/C/images/.cvsignore b/help/C/images/.cvsignore new file mode 100644 index 0000000000..3dda72986f --- /dev/null +++ b/help/C/images/.cvsignore @@ -0,0 +1,2 @@ +Makefile.in +Makefile diff --git a/help/C/images/Makefile.am b/help/C/images/Makefile.am new file mode 100644 index 0000000000..e7b5ced296 --- /dev/null +++ b/help/C/images/Makefile.am @@ -0,0 +1,24 @@ +## Process this file with automake to produce Makefile.in + +helpdatadir = $(gimpdatadir)/help/C/images + +helpdata_DATA = \ + image_menu.png \ + image_window.png \ + layers_dialog.png \ + layers_menu.png \ + tool_options.png \ + toolbox.png \ + \ + print_color.png \ + print_main.png \ + print_setup.png + +EXTRA_DIST = $(helpdata_DATA) + +.PHONY: files + +files: + @files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \ + echo $$p; \ + done diff --git a/help/C/images/image_menu.png b/help/C/images/image_menu.png new file mode 100644 index 0000000000..d08b3553de Binary files /dev/null and b/help/C/images/image_menu.png differ diff --git a/help/C/images/image_window.png b/help/C/images/image_window.png new file mode 100644 index 0000000000..232fac0c7d Binary files /dev/null and b/help/C/images/image_window.png differ diff --git a/help/C/images/layers_dialog.png b/help/C/images/layers_dialog.png new file mode 100644 index 0000000000..545a907855 Binary files /dev/null and b/help/C/images/layers_dialog.png differ diff --git a/help/C/images/layers_menu.png b/help/C/images/layers_menu.png new file mode 100644 index 0000000000..67db009681 Binary files /dev/null and b/help/C/images/layers_menu.png differ diff --git a/help/C/images/print_color.png b/help/C/images/print_color.png new file mode 100644 index 0000000000..db1af3ff92 Binary files /dev/null and b/help/C/images/print_color.png differ diff --git a/help/C/images/print_main.png b/help/C/images/print_main.png new file mode 100644 index 0000000000..37da0280f9 Binary files /dev/null and b/help/C/images/print_main.png differ diff --git a/help/C/images/print_setup.png b/help/C/images/print_setup.png new file mode 100644 index 0000000000..904e03b141 Binary files /dev/null and b/help/C/images/print_setup.png differ diff --git a/help/C/images/tool_options.png b/help/C/images/tool_options.png new file mode 100644 index 0000000000..8c7d7fac86 Binary files /dev/null and b/help/C/images/tool_options.png differ diff --git a/help/C/images/toolbox.png b/help/C/images/toolbox.png new file mode 100644 index 0000000000..36398d33db Binary files /dev/null and b/help/C/images/toolbox.png differ diff --git a/help/C/index.html b/help/C/index.html index b50005020c..65a3c1a61e 100644 --- a/help/C/index.html +++ b/help/C/index.html @@ -1,45 +1,1753 @@ - - - - - Index for C - - - - - - - - - - - -
- C Index -
-

- (/index.html)

- Subtopics available:

- dialogs
- tools
- layers
- channels
- paths
- toolbox
- image
- open
- save
- filters
- file
-

Topics in this directory:

- contents
- welcome
- modes
-

- /Karin & Olof -

-

- - - +Index

Index

About, + About Dialog +
Add Alpha Channel, + Add Alpha Channel +
Add Layer Mask, + Add Layer Mask +
Airbrush, + Airbrush +
Anchor Layer, + Anchor Layer +
Apply Canvas, + Description for Apply Canvas Filter +
Bezier Selection, + Bezier Selection +
Blend, + Blend +
Blinds, + Blinds +
Blur, + Blur +
Border Selection, + Border Selection +
Brightness-Contrast, + Brightness-Contrast +
Brush Editor, + Brush Editor +
Brush Selection, + The Brush Selection Dialog +
Bucket Fill, + Bucket Fill +
By Color Selection, + By Color Selection +
BZ2, + BZ2 +
Channel to Selection, + Channel to Selection +
Channels, + Channels, + The Channels Dialog +
Channels Introduction, + Channels Introduction +
Clear, + Clear +
Clone, + Clone +
Close, + Close +
Color Balance, + Color Balance +
Color Palette, + The Color Palette Dialog +
Color Picker, + Color Picker +
Command Line, + Command Line Options +
Context Help, + Context Help +
Convolver, + Convolver +
Copy, + Copy +
Copy Gradient, + Copy Gradient +
Copy Named, + Copy Named +
Copy Path, + Copy Path +
Crop, + Crop +
Cubism, + Cubism +
Curves, + Curves +
Cut, + Cut +
Cut Named, + Cut Named +
Delete Channel, + Delete Channel +
Delete Gradient, + Delete Gradient +
Delete Layer, + Delete Layer +
Delete Palette, + Delete Palette +
Delete Path, + Delete Path +
Desaturate, + Desaturate +
Device Status, + The Device Status Dialog +
Dialogs, + Dialogs +
Dialogs Introduction, + Dialogs Introduction +
Directories, + Directories +
Display Filters, + The Display Filters Dialog +
Display Settings, + Display Settings +
Document Index, + The Document Index Dialog +
Dodge or Burn, + Dodge or Burn +
Dot for Dot, + Dot for Dot +
Duplicate, + Duplicate +
Duplicate Channel, + Duplicate Channel +
Duplicate Layer, + Duplicate Layer +
Duplicate Path, + Duplicate Path +
Edit Channel Attributes, + Edit Channel Attributes +
Edit Layer Attributes, + Edit Layer Attributes +
Edit Path Attributes, + Edit Path Attributes +
Edit Qmask Attributes, + Edit Qmask Attributes +
Elliptical Selection, + Elliptical Selection +
Environment Settings, + Environment Settings +
Equalize, + Equalize +
Eraser, + Eraser +
Error Console, + The Error Console Dialog +
Export Path, + Export Path +
Feather Selection, + Feather Selection +
File, + File +
File Formats, + File Formats +
File Operations Introduction, + File Operations Introduction +
File Save, + File Save or Save As +
Fill, + Fill +
Filters, + Filters +
Filters Introduction, + Filters Introduction +
First Time, + Starting for the First Time +
FITS, + FITS +
Flatten Image, + Flatten Image +
Flip, + Flip +
Float Selection, + Float Selection +
Free-Hand Selection, + Free-Hand Selection +
Fuzzy Selection, + Fuzzy Selection +
Gamma Display Filter, + The Gamma Display Filter +
GIMP +
Introduction, + What is GIMP? +
GPB, + GPB +
Gradient Editor, + Gradient Editor +
Gradient Selection, + The Gradient Selection Dialog +
Grayscale, + Grayscale +
Grow Selection, + Grow Selection +
GTK Color Selector, + The GTK Color Selector +
GZ, + GZ +
Help, + Help Page for Help +
Histogram, + Histogram +
HRZ, + HRZ +
HSV, + Scatter HSV +
Hue-Saturation, + Hue-Saturation +
IIR, + IIR Gaussian Blur +
Image, + Image +
Image Menu Introduction, + Image Menu Introduction +
Import Palette, + Import Palette +
Import Path, + Import Path +
Indexed Mode, + Indexed Mode +
Indexed Palette, + Indexed Palette +
Info Window, + Info Window +
Ink, + Ink +
Input Devices, + Input Devices +
Intelligent Scissors, + Intelligent Scissors +
Interface Settings, + Interface Settings +
Invert, + Invert +
Invert Selection, + Invert Selection +
JPEG, + JPEG +
Keyboard Shortcuts +
Shortcuts, + Keyboard Shortcuts +
Last Opened, + Last Opened +
Layer Boundary Size, + Layer Boundary Size +
Layer to Image Size, + Layer to Image Size +
Layers, + Layers +
Layers Dialog, + Layers Dialog +
Layers, Channel and Paths, + Layers, Channels and Paths Dialog +
Levels, + Levels +
License, + GIMP License +
Lower Channel, + Lower Channel +
Magic Wand, + Fuzzy Selection +
Magnify, + Magnify +
Main interface, + The Main Interface +
Measure, + Measure +
Merge Palette , + Merge Palette +
Merge Visible Layers, + Merge Visible Layers +
MIFF, + MIFF +
Module Browser, + Module Browser +
Monitor Resolution, + Monitor Resolution +
Move, + Move +
Navigation Window, + Navigation Window +
New Channel, + The New Channel Dialog +
New File Settings, + New File Settings +
New Gradient, + New Gradient +
New Image, + New Image +
New Layer, + New Layer +
New Palette , + New Palette +
New Path, + New Path +
New View, + New View +
Offset, + Offset +
Oilify, + Oilify +
Open by Extension, + Open by Extension +
Open File, + Open File +
Open Image Introduction, + Open Image Introduction +
Paintbrush, + Paintbrush +
Palette Editor, + The Palette Editor +
Paste, + Paste +
Paste As New, + Paste As New +
Paste Into, + Paste Into +
Paste Named, + Paste Named +
Paste Path, + Paste Path +
PAT, + PAT +
Path to Selection, + Path to Selection +
Paths, + Paths +
Paths Dialog, + The Paths Dialog +
Paths Introduction, + Paths Introduction +
Pattern Selection, + The Pattern Selection Dialog +
Pencil, + Pencil +
Perspective Transform, + Perspective Transform +
Pixelize, + Pixelize +
Plug-Ins, + Filters +
Plug-Ins Introduction, + Filters Introduction +
PNG, + PNG +
PNM, + PNM +
Posterize, + Posterize +
Print, + The Print Plugin +
PSD, + PSD +
PSP, + PSP +
Qbist, + Qbist +
Quit, + Quit +
Raise Channel, + Raise Channel +
Really Close, + Really Close +
Really Quit, + Really Quit +
Rectangular Selection, + Rectangular Selection +
Redo, + Redo +
Rename Gradient, + Rename Gradient +
Repeat Last, + Repeat Last +
Replicate Segment, + Replicate Segment +
Reshow Last, + Reshow Last +
RGB, + RGB +
Ripple, + Ripple +
RLE, + RLE Gaussian Blur +
Rotate, + Rotate +
Save All, + Select All +
Save as PovRay, + Save as PovRay +
Save by Extension, + Save by Extension +
Save Image Introduction, + Save Image Introduction +
Save to Channel, + Save Selection to Channel +
Scale, + Scale +
Scale Image, + Scale Image +
Scale Layer, + Scale Layer +
Select None, + Select None +
Semi Flatten, + Semi Flatten +
Session Management, + Session Management +
Set Canvas Size, + Set Canvas Size +
Sezier Selection, + Bezier Selection +
SGI, + SGI +
Sharpen, + Sharpen +
Sharpen Selection, + Sharpen Selection +
Shear, + Shear +
Shift, + Shift +
Shrink Selection, + Shrink Selection +
Shrink Wrap, + Shrink Wrap +
Smudge, + Smudge +
Snap to Guides, + Snap to Guides +
Split Segments Uniformly, + Split Segments Uniformly +
Stack, + Stack +
Standard GIMP Color Selector, + The Standard GIMP Color Selector +
Stroke, + Stroke +
Stroke Path, + Stroke Path +
Sunras, + Sunras +
Table Magic, + GIMP Table Magic +
Text Tool, + Text Tool +
TGA, + TGA +
The Image Window, + The Image Window +
The Preferences Dialog, + The Preferences Dialog +
Threshold, + Threshold +
TIFF, + TIFF +
Tile, + Tile +
Tip of the Day, + Tip of the Day +
Toggle Guides, + Toggle Guides +
Toggle Rulers, + Toggle Rulers +
Toggle Selection, + Toggle Selection +
Toggle Statusbar, + Toggle Statusbar +
Tool Options, + Tool Options Dialog +
ToolBox, + ToolBox, + The ToolBox +
Toolbox Introduction, + Toolbox Introduction +
Tools, + Tools +
Tools Introduction, + Tools Introduction +
Transform, + Transform +
Triangle Color Selector, + The Triangle Color Selector +
Undo, + Undo +
Undo History, + Undo History +
URL, + URL +
Vinvert, + Value Invert +
Watercolor Color Selector, + The Watercolor Color Selector +
What are Layers?, + What are Layers? +
Why GIMP, + What Can GIMP Do For Me? +
WMF, + WMF +
XWD, + XWD +
Zoom, + Zoom +
\ No newline at end of file diff --git a/help/C/introduction.html b/help/C/introduction.html new file mode 100644 index 0000000000..015f1b6717 --- /dev/null +++ b/help/C/introduction.html @@ -0,0 +1,526 @@ +Introduction
GIMP User Manual
PrevNext

Chapter 1. Introduction

What is GIMP?

GIMP is an acronym for + GNU Image Manipulation + Program. GIMP is software suitable for + such tasks as retouching of photographs, composing images, and authoring + images. Its capabilities as an image manipulation program + make it a worthy competitor to other similar programs such as + Adobe Photoshop and Corel + PhotoPaint. +

The biggest advantage that GIMP has is + that it is a free program and can be downloaded from the + internet. Even more importantly, it's not + freeware. GIMP is an + OSS (Open Source Software) program covered by + the GPL license, which gives + you the freedom to access and also to change the source code that + makes up the program. This is how and why + GIMP is constantly being developed and + improved. +

A Brief List of Features and Capabilities

  • Full suite of painting tools including brushes, a pencil, + an airbrush, an ink tool, and cloning. +

  • Tile-based memory management so image size is limited + only by available disk space. +

  • Sub-pixel sampling for all paint tools, allowing for + high-quality anti-aliasing. +

  • Full Alpha channel (transparency) support. +

  • Layers and channels. +

  • Advanced scripting capabilities provided by a procedural + database so you can call internal + GIMP functions from external + scripts, such as Script-Fu, Perl-Fu (Perl scripts) and + Python-Fu (Python scripts). +

  • Multiple undo and redo, limited only by disk space. +

  • Transformation tools including rotate, scale, shear, and + flip. +

  • File formats supported include PostScript, + JPEG, GIF, + PNG, XPM, + TIFF, TGA, + MPEG, PCX, + BMP and many others. +

  • Selection tools including rectangular, elliptical, free, + fuzzy, paths, and intelligent scissors. +

  • Plug-ins that allow for the easy addition of new + functions, new file formats, and new effects filters. +

+

Platform Support

The GIMP is probably most known for + its use on the GNU/Linux platform, but there are many platforms + that GIMP can run on. + GIMP is known to work on + GNU/Linux, Microsoft + Windows 95, 98, NT4 and 2000, + OpenBSD, + NetBSD, + FreeBSD, + Solaris, + SunOS, + AIX, + HP-UX, + Tru64, Digital + Unix, OSF/1, + IRIX, OS/2 + and BeOS. +

About the Help System

The GIMP help system will provide you + with the necessary information on how to use all the functions + GIMP provides. It will do so in a + short effective way best described as an extended quick + reference. The difference between the + GIMP help system and a pure quick + reference is that the help system will describe how to use + the functions in a productive manner as well as their + functionality. +

How to Use the Help System

The built-in GIMP help browser + has three notebook tabs: the one that help pages are + displayed in, the contents tab showing a structured list of + help items, and the index which shows a listing of all files + in the help system. The advantage of the built-in help + browser is that you can easily navigate the help system and + display the help text in the main tab. However, if you + prefer, you can use Netscape + Navigator (choose in the + Preferences dialog) from which you can also access all parts + of the help system. If you are using Microsoft + Windows, your default internet browser will be + used (usually either Netscape + Navigator or Microsoft + Internet Explorer). +

What to Expect of the Help System

Besides the description of the functionality of the + functions in GIMP, you will also + find descriptions of how to organize your work with + GIMP, how to configure it, + various tips and tricks, a quick reference page of short + cuts and modifier keys, and much more. +


PrevHomeNext
GIMP User Manual What Can GIMP Do For Me?
\ No newline at end of file diff --git a/help/C/keyboard_shortcuts.html b/help/C/keyboard_shortcuts.html new file mode 100644 index 0000000000..8cb53fdefa --- /dev/null +++ b/help/C/keyboard_shortcuts.html @@ -0,0 +1,1715 @@ +Keyboard Shortcuts
GIMP User Manual
PrevNext

Appendix A. Keyboard Shortcuts

Keybaord shortcuts provide a fast way to access menu items in + GIMP. These are the default keyboard + shortcuts - you can change them by highlighting a menu item + (hovering the cursor over it) and pressing the desired key + combination. On some keyboards, the "Alt" key may be called the + "Meta" key. +

Table A-1. Toolbox Functions

FunctionShortcut
AirbrushA
Bezier SelectB
BlendL
Bucket Fill Shift+B +
CloneC
Color PickerO
ConvolveV
Crop and Resize Shift+C +
Default ColorsD
Dodge and Burn Shift+D +
Elliptical SelectE
Eraser Shift+E +
Flip Shift+F +
Free SelectF
Fuzzy SelectZ
InkK
Intelligent ScissorsI
Magnify Shift+M +
MoveM
PaintbrushP
Pencil Shift+P +
Rectangular SelectR
Smudge Shift+S +
Swap ColorsX
TextT
Transform Shift+T +
+

Table A-2. File Menu

FunctionShortcut
Close Ctrl+W +
New Ctrl+N +
Open Ctrl+O +
Quit Ctrl+Q +
Save Ctrl+S +
+

Table A-3. Edit Menu

FunctionShortcut
Clear Ctrl+K +
Copy Ctrl+C +
Copy Named Ctrl+Shift+C +
Cut Ctrl+X +
Cut Named Ctrl+Shift+X +
Fill with Foreground Color Ctrl+, +
Fill with Background Color Ctrl+. +
Paste Ctrl+V +
Paste Named Ctrl+Shift+V +
Redo Ctrl+R +
Undo Ctrl+Z +
+

Table A-4. View Menu

FunctionShortcut
Info Window Ctrl+Shift+I +
Navigation Window Ctrl+Shift+N +
Shrink Wrap Ctrl+E +
Toggle Guides Ctrl+Shift+T +
Toggle Rulers Ctrl+Shift+R +
Toggle Selection Ctrl+T +
Toggle Statusbar Ctrl+Shift+S +
Zoom In = +
Zoom Out - +
Zoom to Actual Size (1:1) 1 +
+

Table A-5. Select Menu

FunctionShortcut
Select All Ctrl+A +
Feather Selection Ctrl+Shift+F +
Float Selection Ctrl+Shift+L +
Invert Selection Ctrl+I +
Select None Ctrl+Shift+A +
Sharpen Ctrl+Shift+H +
+

Table A-6. Layers Menu

FunctionShortcut
Anchor Layer Ctrl+H +
Merge Visible Layers Ctrl+M +
+

Table A-7. Image Menu

FunctionShortcut
Duplicate Ctrl+D +
Offset Ctrl+Shift+O +
Grayscale Mode Alt+G +
Indexed Mode Alt+I +
RGB Mode Alt+R +
+

Table A-8. Dialogs Menu

FunctionShortcut
Brushes Ctrl+Shift+B +
Gradients Ctrl+G +
Layers, Channels & Paths Ctrl+L +
Palette Ctrl+P +
Patterns Ctrl+Shift+P +
+

Table A-9. Filters Menu

FunctionShortcut
Reshow Last Alt+Shift+F +
Repeat Last Alt+F +
+


PrevHomeNext
XWD Command Line Options
\ No newline at end of file diff --git a/help/C/layers/Makefile.am b/help/C/layers/Makefile.am index 1973d86a7e..ad51f6a5e1 100644 --- a/help/C/layers/Makefile.am +++ b/help/C/layers/Makefile.am @@ -5,18 +5,19 @@ SUBDIRS = stack helpdatadir = $(gimpdatadir)/help/C/layers helpdata_DATA = \ - add_alpha_channel.html \ - alpha_to_selection.html \ - anchor_layer.html \ - apply_mask.html \ - delete_layer.html \ - delete_mask.html \ - duplicate_layer.html \ - flatten_image.html \ - index.html \ - layer_to_image_size.html \ - mask_to_selection.html \ - merge_down.html + add_alpha_channel.html \ + alpha_to_selection.html \ + anchor_layer.html \ + apply_mask.html \ + delete_layer.html \ + delete_mask.html \ + duplicate_layer.html \ + flatten_image.html \ + index.html \ + layer_to_image_size.html \ + mask_to_selection.html \ + merge_down.html \ + using_layers.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/layers/add_alpha_channel.html b/help/C/layers/add_alpha_channel.html index 0945a4188b..bebc48ad41 100644 --- a/help/C/layers/add_alpha_channel.html +++ b/help/C/layers/add_alpha_channel.html @@ -1,31 +1,139 @@ - - - - - Help Page for add_alpha_channel - - - - - - - - - - - -
- add_alpha_channel help page -
-

- Index

- (/layers/add_alpha_channel.html)

- Sorry but the help file for add_alpha_channel is not yet done. -

- /Karin & Olof -

-

- - - +Add Alpha Channel
GIMP User Manual
PrevChapter 5. LayersNext

Add Alpha Channel

Once you have added an Alpha Channel, the background layer can be + moved up and down in the same way as any other layer. +


PrevHomeNext
Layer Mask to SelectionUpAplha to Selection
\ No newline at end of file diff --git a/help/C/layers/alpha_to_selection.html b/help/C/layers/alpha_to_selection.html index 86cc6f3a41..85f0ba693d 100644 --- a/help/C/layers/alpha_to_selection.html +++ b/help/C/layers/alpha_to_selection.html @@ -1,31 +1,135 @@ - - - - - Help Page for alpha_to_selection - - - - - - - - - - - -
- alpha_to_selection help page -
-

- Index

- (/layers/alpha_to_selection.html)

- Sorry but the help file for alpha_to_selection is not yet done. -

- /Karin & Olof -

-

- - - +Aplha to Selection
GIMP User Manual
PrevChapter 5. LayersNext

Aplha to Selection

Sorry, but the help page for "Alpha to Selection" is not written yet. +


PrevHomeNext
Add Alpha ChannelUpEdit Layer Attributes
\ No newline at end of file diff --git a/help/C/layers/anchor_layer.html b/help/C/layers/anchor_layer.html index 7fabee9c98..3bf3b34f7a 100644 --- a/help/C/layers/anchor_layer.html +++ b/help/C/layers/anchor_layer.html @@ -1,31 +1,148 @@ - - - - - Help Page for anchor_layer - - - - - - - - - - - -
- anchor_layer help page -
-

- Index

- (/layers/anchor_layer.html)

- Sorry but the help file for anchor_layer is not yet done. -

- /Karin & Olof -

-

- - - +Anchor Layer
GIMP User Manual
PrevChapter 5. LayersNext

Anchor Layer

Anchor Layer is used to merge a floating selection with the + layer which was active before the floating selection was + made. This is the same as clicking the + + icon. +


PrevHomeNext
Duplicate LayerUpDelete Layer
\ No newline at end of file diff --git a/help/C/layers/apply_mask.html b/help/C/layers/apply_mask.html index 46c765b986..8237768603 100644 --- a/help/C/layers/apply_mask.html +++ b/help/C/layers/apply_mask.html @@ -1,31 +1,135 @@ - - - - - Help Page for apply_mask - - - - - - - - - - - -
- apply_mask help page -
-

- Index

- (/layers/apply_mask.html)

- Sorry but the help file for apply_mask is not yet done. -

- /Karin & Olof -

-

- - - +Apply Layer Mask
GIMP User Manual
PrevChapter 5. LayersNext

Apply Layer Mask

Sorry, but the help page for "Apply Layer Mask" is not written yet. +


PrevHomeNext
Add Layer MaskUpDelete Layer Mask
\ No newline at end of file diff --git a/help/C/layers/delete_layer.html b/help/C/layers/delete_layer.html index 8dfc96708f..12563f8ae9 100644 --- a/help/C/layers/delete_layer.html +++ b/help/C/layers/delete_layer.html @@ -1,31 +1,148 @@ - - - - - Help Page for delete_layer - - - - - - - - - - - -
- delete_layer help page -
-

- Index

- (/layers/delete_layer.html)

- Sorry but the help file for delete_layer is not yet done. -

- /Karin & Olof -

-

- - - +Delete Layer
GIMP User Manual
PrevChapter 5. LayersNext

Delete Layer

Deletes the active layer. The layer below the deleted + layer will become the active layer. This is the same as clicking + the + + icon. +


PrevHomeNext
Anchor LayerUpLayer Boundary Size
\ No newline at end of file diff --git a/help/C/layers/delete_mask.html b/help/C/layers/delete_mask.html index 627b477e03..6422d73588 100644 --- a/help/C/layers/delete_mask.html +++ b/help/C/layers/delete_mask.html @@ -1,31 +1,135 @@ - - - - - Help Page for delete_mask - - - - - - - - - - - -
- delete_mask help page -
-

- Index

- (/layers/delete_mask.html)

- Sorry but the help file for delete_mask is not yet done. -

- /Karin & Olof -

-

- - - +Delete Layer Mask
GIMP User Manual
PrevChapter 5. LayersNext

Delete Layer Mask

Sorry, but the help page for "Delete Layer Mask" is not written yet. +


PrevHomeNext
Apply Layer MaskUpLayer Mask to Selection
\ No newline at end of file diff --git a/help/C/layers/duplicate_layer.html b/help/C/layers/duplicate_layer.html index 24f6d0be36..1679551b1a 100644 --- a/help/C/layers/duplicate_layer.html +++ b/help/C/layers/duplicate_layer.html @@ -1,31 +1,149 @@ - - - - - Help Page for duplicate_layer - - - - - - - - - - - -
- duplicate_layer help page -
-

- Index

- (/layers/duplicate_layer.html)

- Sorry but the help file for duplicate_layer is not yet done. -

- /Karin & Olof -

-

- - - +Duplicate Layer
GIMP User Manual
PrevChapter 5. LayersNext

Duplicate Layer

Creates a copy of the active layer and places it above + the copied layer. The new layer will have "copy" added to the name + of the copied layer as its name. This function is the same as + clicking the + + icon. +


PrevHomeNext
StackUpAnchor Layer
\ No newline at end of file diff --git a/help/C/layers/flatten_image.html b/help/C/layers/flatten_image.html index c505b3cb35..7d4c11f39c 100644 --- a/help/C/layers/flatten_image.html +++ b/help/C/layers/flatten_image.html @@ -1,31 +1,143 @@ - - - - - Help Page for flatten_image - - - - - - - - - - - -
- flatten_image help page -
-

- Index

- (/layers/flatten_image.html)

- Sorry but the help file for flatten_image is not yet done. -

- /Karin & Olof -

-

- - - +Flatten Image
GIMP User Manual
PrevChapter 5. LayersNext

Flatten Image

Flatten image repeatedly merges the layers down onto the background + layer. This function is useful when saving to formats which don't + support layers such as JPEG. +


PrevHomeNext
Merge DownUpAdd Layer Mask
\ No newline at end of file diff --git a/help/C/layers/index.html b/help/C/layers/index.html index 8425d79209..49af814315 100644 --- a/help/C/layers/index.html +++ b/help/C/layers/index.html @@ -1,44 +1,320 @@ - - - - - Index for layers - - - - - - - - - - - -
- layers Index -
-

- (/layers/index.html)

- Top index

- Subtopics available:

- stack
-

Topics in this directory:

- add_alpha_channel
- alpha_to_selection
- anchor_layer
- apply_mask
- delete_layer
- delete_mask
- duplicate_layer
- flatten_image
- layer_to_image_size
- mask_to_selection
- merge_down
-

- /Karin & Olof -

-

- - - +Layers
GIMP User Manual
PrevNext

Chapter 5. Layers

What are Layers?

When you create an image, it is made up of thousands of tiny + pixels, each of which has a color, position, and form the image. It + can be hard to work on an image organised at this level. It is + also hard to work on an entire image as one block — this is + the reason for layers. Layers are in between the tiny size of + pixels and the large size of the whole image. +

Using layers, you can construct an image of several conceptual + parts which can be manipulated without affecting any other part of + the image. Layers are stacked on top of each other. The bottom + layer is the background of the image, then components in the + foreground of the image come above it. Layers can be made to + affect the look of layers below them. If, for example, a layer is made + translucent layers underneath will look faded without + that layer being altered at all. If the translucent layer is later + removed, the image below returns to how it looked before. +

Figure 5-1. 3D Representation of an Image with Layers

Figure 5-2. The Final Image

Layers are one of the most powerful features in + GIMP so it is important to + understand how they can be used. +


PrevHomeNext
Duplicate Using Layers
\ No newline at end of file diff --git a/help/C/layers/layer_to_image_size.html b/help/C/layers/layer_to_image_size.html index 7d85795bd6..98e1de6fb3 100644 --- a/help/C/layers/layer_to_image_size.html +++ b/help/C/layers/layer_to_image_size.html @@ -1,31 +1,142 @@ - - - - - Help Page for layer_to_image_size - - - - - - - - - - - -
- layer_to_image_size help page -
-

- Index

- (/layers/layer_to_image_size.html)

- Sorry but the help file for layer_to_image_size is not yet done. -

- /Karin & Olof -

-

- - - +Layer to Image Size
GIMP User Manual
PrevChapter 5. LayersNext

Layer to Image Size

Resizes the layer, but doesn't stretch or shrink its contents to fit + the size of the image. When making smaller, it will crop the + layer. A layer made larger adds transparent filling around the + previous contents unless it is the background layer, in which case + the background color is used as fill. +


PrevHomeNext
Layer Boundary SizeUpScale Layer
\ No newline at end of file diff --git a/help/C/layers/mask_to_selection.html b/help/C/layers/mask_to_selection.html index a79d2f8044..3de4501864 100644 --- a/help/C/layers/mask_to_selection.html +++ b/help/C/layers/mask_to_selection.html @@ -1,31 +1,135 @@ - - - - - Help Page for mask_to_selection - - - - - - - - - - - -
- mask_to_selection help page -
-

- Index

- (/layers/mask_to_selection.html)

- Sorry but the help file for mask_to_selection is not yet done. -

- /Karin & Olof -

-

- - - +Layer Mask to Selection
GIMP User Manual
PrevChapter 5. LayersNext

Layer Mask to Selection

Sorry, but the help page for "Layer Mask to Selection" is not written yet. +


PrevHomeNext
Delete Layer MaskUpAdd Alpha Channel
\ No newline at end of file diff --git a/help/C/layers/merge_down.html b/help/C/layers/merge_down.html index 8471fd8b00..7903bfe9a7 100644 --- a/help/C/layers/merge_down.html +++ b/help/C/layers/merge_down.html @@ -1,31 +1,136 @@ - - - - - Help Page for merge_down - - - - - - - - - - - -
- merge_down help page -
-

- Index

- (/layers/merge_down.html)

- Sorry but the help file for merge_down is not yet done. -

- /Karin & Olof -

-

- - - +Merge Down
GIMP User Manual
PrevChapter 5. LayersNext

Merge Down

Merges the contents of the active layer with the layer + below. The resulting layer will have the name of the lower layer. +


PrevHomeNext
Merge Visible LayersUpFlatten Image
\ No newline at end of file diff --git a/help/C/layers/stack/Makefile.am b/help/C/layers/stack/Makefile.am index f314092ef9..a3a4541520 100644 --- a/help/C/layers/stack/Makefile.am +++ b/help/C/layers/stack/Makefile.am @@ -3,7 +3,6 @@ helpdatadir = $(gimpdatadir)/help/C/layers/stack helpdata_DATA = \ - index.html \ stack.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/layers/stack/index.html b/help/C/layers/stack/index.html deleted file mode 100644 index b23259a5f6..0000000000 --- a/help/C/layers/stack/index.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Index for stack - - - - - - - - - - - -
- stack Index -
-

- (/layers/stack/index.html)

- Top index

-

Topics in this directory:

- stack
-

- /Karin & Olof -

-

- - - diff --git a/help/C/layers/stack/stack.html b/help/C/layers/stack/stack.html index 53767753bc..ea3f693201 100644 --- a/help/C/layers/stack/stack.html +++ b/help/C/layers/stack/stack.html @@ -1,31 +1,166 @@ - - - - - Help Page for stack - - - - - - - - - - - -
- stack help page -
-

- Index

- (/layers/stack/stack.html)

- Sorry but the help file for stack is not yet done. -

- /Karin & Olof -

-

- - - +Stack
GIMP User Manual
PrevChapter 5. LayersNext

Stack

The "Stack" refers to the set of layers which form an + image. The layers are arranged one on top of the other, and the + stack functions allow you to alter in what order the layers + appear. You can either raise the layer by one place, lower it by one + place, raise the layer to the top of the entire stack, or lower it + to the bottom. Layers can also be moved by draging the layer up or + down in the layers dialog, or by using the + + and + + icons. +


PrevHomeNext
New LayerUpDuplicate Layer
\ No newline at end of file diff --git a/help/C/layers/using_layers.html b/help/C/layers/using_layers.html new file mode 100644 index 0000000000..463a151dd9 --- /dev/null +++ b/help/C/layers/using_layers.html @@ -0,0 +1,283 @@ +Using Layers
GIMP User Manual
PrevChapter 5. LayersNext

Using Layers

Layer-related functions in GIMP are + performed in the Layers Dialog which can be + accessed from File -> + Dialogs -> Layers, Channels + & Paths... or by pressing Ctrl+L +

Figure 5-3. The Layers Dialog

At the top of the dialog is a combo-box which defines what image + the layers dialog is displaying. If + "Auto" is selected, the currently + focused image will be the default. Alternativly, you can change + the image by clicking on the box and selecting a different image + from the menu. A small preview of the image is given next to its + name. +

The most useful part of the dialog is the area with the off-white + background in Figure 5-3. This shows all + the layers in the image. The topmost layer is at the top of the + dialog. Each layer has a name, such as "Background", "Wilber" and + "Text - GIMP" in the example above. Every layer must have a unique + name. Next to the layers name, a small preview of the contents of + that layer is displayed. You should also give layers + a suitable name which describes their contents so that you can + find them later. +

Next to the layer preview is up to two icons. You can see in + Figure 5-3 that the layer + "Horizontal Line" has both an "eye" + icon and a "four-way arrow" icon. The + eye means that + the image is visible. Clicking the eye will + make that layer + invisible in the image window, although it still exists. + Clicking again makes the layer visible again. The + four-way arrow + means that that layer is linked to all other layers which are + also showing the four-way arrow. In this + circumstance, when you move an + one layer, the linked layers will also move. +

The "Opacity" function above the layers list defines as a + percentage how transparent (see-through) a layer is. 100.0 makes + the layer opaque, and 0.0 makes it completely transparent.. The + "Mode" function defines how the layer interacts with the layers + beneath it. +

The layers menu also contains a menu to + perform functions. It is + accessible by right-clicking on the layers list area. +

Figure 5-4. The Layers Menu


PrevHomeNext
LayersUpLayers Dialog
\ No newline at end of file diff --git a/help/C/ln7.html b/help/C/ln7.html new file mode 100644 index 0000000000..7d484308ae --- /dev/null +++ b/help/C/ln7.html @@ -0,0 +1,110 @@ +
GIMP User Manual

Permission is granted to copy, distribute and/or modify this + document under the terms of the GNU Free + Documentation License, Version 1.1 or any later version + published by the Free Software Foundation with no Invariant + Sections, no Front-Cover Texts, and no Back-Cover Texts. You + may obtain a copy of the GNU Free + Documentation License from the Free Software Foundation by + visiting their Web site or by writing to: Free + Software Foundation, Inc., 59 Temple Place - Suite + 330, Boston, MA 02111-1307, + USA. +

Many of the names used by companies to distinguish their + products and services are claimed as trademarks. Where those + names appear in any GIMP + documentation, and those trademarks are made aware to the + members of the GIMP Documentation + Project, the names have been printed in capitals or initial + capitals. +


 Home 
\ No newline at end of file diff --git a/help/C/main_interface.html b/help/C/main_interface.html new file mode 100644 index 0000000000..690b1f06f6 --- /dev/null +++ b/help/C/main_interface.html @@ -0,0 +1,394 @@ +The Main Interface
GIMP User Manual
PrevChapter 2. Using GIMPNext

The Main Interface

When you first see GIMP's interface, + you may think it looks very strange because it consists of several + windows and makes use of right click + menus to access much of GIMP's power. +

The GIMP interface has two main windows + — the Toolbox and the Image + Window as well as a myriad of other windows such as + color palette, layers + dialog, etc. +

The ToolBox

Probably the window that is most central to the use of + GIMP is the + ToolBox. +

Figure 2-1. The ToolBox

The toolbox consists of the menu bar with + the entries File, Xtns and + Help, the tools buttons which are the set of + square buttons in Figure 2-1, the color + selector which is at the bottom left, and the + tools status indicators which are at the bottom + right. +

Almost all the tools in the toolbox have + options which you can configure to define how the tool operates. + You can access the options either by double clicking on the + tool's icon, or by clicking Tool Options + on the submenu Dialogs + of the File menu. +

Figure 2-2. Tool Options

The Image Window

The other window which you will need to use all the time is + the Image Window. This is where your + drawing space is, and it also contains several additional + features and the menu from which most of + GIMP's functions can be accessed. +

Figure 2-3. The Image Window

Figure 2-3 shows the Image Window created + by the default settings. When you first start, no image window will be + open because no images are open. To create a new image, click + New... from the + File menu. +

The white section of Figure 2-3 is the area in which you create your + image. The image above is 256 x 256 pixels. If your + image is larger, you may need to use the scrollbars at the + right and bottom of the image area to view the whole image. At + the top and left of the image there are rulers which allow you + to see where the cursor is. Your location is also shown as coordinates + in the bottom left corner. +

Probably the most important feature of the Image + Window is the Image Menu. This + menu can be accessed either by left + -clicking the arrow at top left corner, or by + right -clicking anywhere in the + drawing area. A menu will pop-up with various entries on it. If + you don't want to keep clicking to bring up this (or any other) + menu, you can click the dotted line + at the top of the menu to activate the tear-off feature and it + will gain its own window which you can leave open while you + work. +

Figure 2-4. The Image Menu


PrevHomeNext
Using GIMPUpFile Formats
\ No newline at end of file diff --git a/help/C/modes.html b/help/C/modes.html deleted file mode 100644 index 21377266b6..0000000000 --- a/help/C/modes.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - Help Page for modes - - - - - - - - - -
modes help - page
Index -

- (/modes.html) -

- Sorry but the help file for modes is not yet done. -

- /Karin & Olof -

-

- diff --git a/help/C/open/Makefile.am b/help/C/open/Makefile.am index aea2190dce..3080549e10 100644 --- a/help/C/open/Makefile.am +++ b/help/C/open/Makefile.am @@ -3,7 +3,7 @@ helpdatadir = $(gimpdatadir)/help/C/open helpdata_DATA = \ - index.html \ + index.html \ open_by_extension.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/open/index.html b/help/C/open/index.html index f009eb5b51..035d6f5b5e 100644 --- a/help/C/open/index.html +++ b/help/C/open/index.html @@ -1,32 +1,162 @@ - - - - - Index for open - - - - - - - - - - - -
- open Index -
-

- (/open/index.html)

- Top index

-

Topics in this directory:

- open_by_extension
-

- /Karin & Olof -

-

- - - +Open
GIMP User Manual
PrevNext

Chapter 10. Open

Open Image Introduction

In this chapter we'll explain to you how opening images from disk works. +


PrevHomeNext
Really Quit Open by Extension
\ No newline at end of file diff --git a/help/C/open/open_by_extension.html b/help/C/open/open_by_extension.html index 3bc56b4e1c..abbb5b58c5 100644 --- a/help/C/open/open_by_extension.html +++ b/help/C/open/open_by_extension.html @@ -1,76 +1,170 @@ - - - - - Help Page for Open by Extension - - - - - - - - - - - -
- Open by Extension Help Page -

-

- When you choose "Open" from either the image or toolbox File -menus, you can select how Gimp open files in "Determine File Type". You -can either select a specifc format so Gimp will open all files -regardless of their name, in that format. Alternatively, you can select -"Automatic" which opens the file in whatever format corresponds to the -extension. -

- The extensions supported by Gimp are: -

- .avi - An AVI file;
- .bmp - A bitmap file;
- .bz2 - A bzip2 compressed file;
- .cel - A CEL file;
- .fit - A FITS file;
- .fli - An FLI file;
- .g3 - A Fax G3 file;
- .gbr - A Gimp brush file;
- .gif - A GIF file;
- .gicon - A Gicon file;
- .gz - A gzip compressed file;
- .hrz - An HRZ file;
- .jpg - A JPEG file;
- .miff - A MIFF file;
- .mpg - An MPEG file;
- .pat - A Gimp pattern;
- .pcx - A PCX file;
- .pix - A PIX file;
- .png - A PNG file;
- .pnm - A PNM file;
- .psd - A Photoshop file;
- .psp - A Paint Shop Pro file;
- .ps - A PostScript file;
- .rgb - An SGI file;
- .im1 - A Sunras file;
- .tga - A TGA file;
- .tif - A TIFF file;
- .url - A URL file;
- .wmf - A Windows Meta File;
- .xbm - A XBM file;
- .xcf - An XCF file (Gimp's Native Format);
- .xwd - An XWD file;
- .xpm - An XPM file. -

- For more information on these formats, click on the file -extension. -

- Although this is a list of formats supported as standard by -Gimp, others formats may be supported by adding additional plug-ins. -These can be obtained at The Gimp -Plug-in Registry. -

- Index

-

- - +Open by Extension
GIMP User Manual
PrevChapter 10. OpenNext

Open by Extension

When you choose Open from either the + Image or Toolbox + File menus, you can select how + GIMP opens files in Determine + File Type. You can either select a specific format so + GIMP will open all files regardless of + their name, in that format. Alternatively, you can select + Automatic which opens the file in whatever + format corresponds to the file's extension. +

\ No newline at end of file diff --git a/help/C/paths/Makefile.am b/help/C/paths/Makefile.am index 82654f5458..42c7931ed2 100644 --- a/help/C/paths/Makefile.am +++ b/help/C/paths/Makefile.am @@ -3,13 +3,13 @@ helpdatadir = $(gimpdatadir)/help/C/paths helpdata_DATA = \ - copy_path.html \ - delete_path.html \ - duplicate_path.html \ - index.html \ - new_path.html \ - paste_path.html \ - path_to_selection.html \ + copy_path.html \ + delete_path.html \ + duplicate_path.html \ + index.html \ + new_path.html \ + paste_path.html \ + path_to_selection.html \ stroke_path.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/paths/copy_path.html b/help/C/paths/copy_path.html index d216c167e4..f056d555e9 100644 --- a/help/C/paths/copy_path.html +++ b/help/C/paths/copy_path.html @@ -1,31 +1,146 @@ - - - - - Help Page for copy_path - - - - - - - - - - - -
- copy_path help page -
-

- Index

- (/paths/copy_path.html)

- Sorry but the help file for copy_path is not yet done. -

- /Karin & Olof -

-

- - - +Copy Path
GIMP User Manual
PrevChapter 7. PathsNext

Copy Path

Copies the active path to the + GIMP clipboard. Use Paste + Path to paste the path into an image. +


PrevHomeNext
Delete PathUpPaste Path
\ No newline at end of file diff --git a/help/C/paths/delete_path.html b/help/C/paths/delete_path.html index 7dadbb2b9c..5be5d1eecb 100644 --- a/help/C/paths/delete_path.html +++ b/help/C/paths/delete_path.html @@ -1,31 +1,147 @@ - - - - - Help Page for delete_path - - - - - - - - - - - -
- delete_path help page -
-

- Index

- (/paths/delete_path.html)

- Sorry but the help file for delete_path is not yet done. -

- /Karin & Olof -

-

- - - +Delete Path
GIMP User Manual
PrevChapter 7. PathsNext

Delete Path

Deletes the currently active path. The path below it becomes the + active path. This function is the same as clicking the + + icon. +


PrevHomeNext
Stroke PathUpCopy Path
\ No newline at end of file diff --git a/help/C/paths/duplicate_path.html b/help/C/paths/duplicate_path.html index 0492b16924..4cbda3a2ab 100644 --- a/help/C/paths/duplicate_path.html +++ b/help/C/paths/duplicate_path.html @@ -1,31 +1,149 @@ - - - - - Help Page for duplicate_path - - - - - - - - - - - -
- duplicate_path help page -
-

- Index

- (/paths/duplicate_path.html)

- Sorry but the help file for duplicate_path is not yet done. -

- /Karin & Olof -

-

- - - +Duplicate Path
GIMP User Manual
PrevChapter 7. PathsNext

Duplicate Path

Creates a copy of the active path and places it above + the copied path. The new path will have "#number" added to the + name of the copied path as its name. This function is the same as + clicking the + + icon. +


PrevHomeNext
New PathUpPath to Selection
\ No newline at end of file diff --git a/help/C/paths/index.html b/help/C/paths/index.html index 50610f1da5..d4c13ccd3e 100644 --- a/help/C/paths/index.html +++ b/help/C/paths/index.html @@ -1,38 +1,221 @@ - - - - - Index for paths - - - - - - - - - - - -
- paths Index -
-

- (/paths/index.html)

- Top index

-

Topics in this directory:

- copy_path
- delete_path
- duplicate_path
- new_path
- paste_path
- path_to_selection
- stroke_path
-

- /Karin & Olof -

-

- - - +Paths
GIMP User Manual
PrevNext


PrevHomeNext
Edit Channel Attributes The Paths Dialog
\ No newline at end of file diff --git a/help/C/paths/new_path.html b/help/C/paths/new_path.html index 0f64842682..9745fcde82 100644 --- a/help/C/paths/new_path.html +++ b/help/C/paths/new_path.html @@ -1,31 +1,150 @@ - - - - - Help Page for new_path - - - - - - - - - - - -
- new_path help page -
-

- Index

- (/paths/new_path.html)

- Sorry but the help file for new_path is not yet done. -

- /Karin & Olof -

-

- - - +New Path
GIMP User Manual
PrevChapter 7. PathsNext

New Path

Creates a new path named "Path" followed by a number. This + function is the same as clicking the + + icon. +


PrevHomeNext
The Paths DialogUpDuplicate Path
\ No newline at end of file diff --git a/help/C/paths/paste_path.html b/help/C/paths/paste_path.html index 96c489fdae..36c0f668f8 100644 --- a/help/C/paths/paste_path.html +++ b/help/C/paths/paste_path.html @@ -1,31 +1,142 @@ - - - - - Help Page for paste_path - - - - - - - - - - - -
- paste_path help page -
-

- Index

- (/paths/paste_path.html)

- Sorry but the help file for paste_path is not yet done. -

- /Karin & Olof -

-

- - - +Paste Path
GIMP User Manual
PrevChapter 7. PathsNext

Paste Path

Pastes a previously copied path. Use + Copy to copy the path first. +


PrevHomeNext
Copy PathUpExport Path
\ No newline at end of file diff --git a/help/C/paths/path_to_selection.html b/help/C/paths/path_to_selection.html index ff252b2893..9c7fd95b9d 100644 --- a/help/C/paths/path_to_selection.html +++ b/help/C/paths/path_to_selection.html @@ -1,31 +1,147 @@ - - - - - Help Page for path_to_selection - - - - - - - - - - - -
- path_to_selection help page -
-

- Index

- (/paths/path_to_selection.html)

- Sorry but the help file for path_to_selection is not yet done. -

- /Karin & Olof -

-

- - - +Path to Selection
GIMP User Manual
PrevChapter 7. PathsNext

Path to Selection

Strokes a selection along the currently active path. This function + is the same as clicking the + + icon. +


PrevHomeNext
Duplicate PathUpStroke Path
\ No newline at end of file diff --git a/help/C/paths/stroke_path.html b/help/C/paths/stroke_path.html index 6b94b3918b..f56e4a4ef2 100644 --- a/help/C/paths/stroke_path.html +++ b/help/C/paths/stroke_path.html @@ -1,31 +1,149 @@ - - - - - Help Page for stroke_path - - - - - - - - - - - -
- stroke_path help page -
-

- Index

- (/paths/stroke_path.html)

- Sorry but the help file for stroke_path is not yet done. -

- /Karin & Olof -

-

- - - +Stroke Path
GIMP User Manual
PrevChapter 7. PathsNext

Stroke Path

Stroke (draw a line) along the currently active path with the + current brush. Stroke is drawn with the center of the brush on + the center of the path. This function is the same as + clicking the + + icon. +


PrevHomeNext
Path to SelectionUpDelete Path
\ No newline at end of file diff --git a/help/C/save/Makefile.am b/help/C/save/Makefile.am index 27a2305b07..5769bc601d 100644 --- a/help/C/save/Makefile.am +++ b/help/C/save/Makefile.am @@ -3,7 +3,7 @@ helpdatadir = $(gimpdatadir)/help/C/save helpdata_DATA = \ - index.html \ + index.html \ save_by_extension.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/save/index.html b/help/C/save/index.html index 87746554eb..738b4c6558 100644 --- a/help/C/save/index.html +++ b/help/C/save/index.html @@ -1,32 +1,160 @@ - - - - - Index for save - - - - - - - - - - - -
- save Index -
-

- (/save/index.html)

- Top index

-

Topics in this directory:

- save_by_extension
-

- /Karin & Olof -

-

- - - +Save
GIMP User Manual
PrevNext

Chapter 11. Save

Save Image Introduction

In this chapter we'll explain to you how saving your images + to disk works. +


PrevHomeNext
Open by Extension Save by Extension
\ No newline at end of file diff --git a/help/C/save/save_by_extension.html b/help/C/save/save_by_extension.html index 9f7090a1a3..6ea1a4ee50 100644 --- a/help/C/save/save_by_extension.html +++ b/help/C/save/save_by_extension.html @@ -1,77 +1,167 @@ - - - - - Help Page for Save by Extension - - - - - - - - - - - -
- Save by Extension Help Page -

-

- When saving a file using the "File -> Save As" menu entry, you -can either select a particular file format in Save Options, or you can -choose "Save by Extension". This simply means that Gimp will save the -file using whatever format relates to the extension that has been given -to the filename - for example, typing foo.jpg would save the -file as a JPEG. -

- The extensions supported by the Gimp are: -

- .aa - An AA file;
- .avi - An AVI file;
- .bmp - A Bitmap file;
- .c - A C source file;
- .cel - A CEL file;
- .colorhtml - A formatted HTML file;
- .dataurl - Used data URLs;
- .fit - A FITS file;
- .fli - An FLI file;
- .gbr - A Gimp brush;
- .gicon - A Gicon file;
- .gif - A GIF file;
- .gih - A GIH file;
- .gpb - A GPB file;
- .h - A C header file;
- .hrz - An HRZ file;
- .html - An HTML table;
- .jpg - A JPEG file;
- .miff - A MIFF file;
- .pat - A Gimp pattern;
- .pcx - A PCX file;
- .pix - A PIX file;
- .png - A PNG file;
- .pnm - A PNM file;
- .ps - A PostScript file;
- .rgb - An SGI file;
- .im1 - A Sunras file;
- .tga - A TGA file;
- .tif - A TIFF file;
- .xbm - An XBM file;
- .xcf - An XCF file (Gimp's Native);
- .xwd - An XWD file;
- .xpm - An XPM file;
- .xcf.bz2 - A bzip2 compressed XCF file. -

- For more information on these formats, click on the file -extension. -

- Although this is list of formats supported as standard by the -Gimp, other formats may be supported by adding additional plug-ins. -These can be obtained at The Gimp -Plug-in Registry. -

- Index

-

- - +Save by Extension
GIMP User Manual
PrevChapter 11. SaveNext

Save by Extension

When saving a file using the File —> + Save As menu entry, you can either + select a particular file format in Save + Options, or you can choose Save by + Extension. This simply means that + GIMP will save the file using whatever + format relates to the extension that has been given to the + filename — for example, typing foo.jpg would + save the file as a JPEG. +


PrevHomeNext
SaveUpDialogs
\ No newline at end of file diff --git a/help/C/toolbox/Makefile.am b/help/C/toolbox/Makefile.am index 4d02ecbf0f..0cb5ad0a18 100644 --- a/help/C/toolbox/Makefile.am +++ b/help/C/toolbox/Makefile.am @@ -5,7 +5,7 @@ SUBDIRS = help helpdatadir = $(gimpdatadir)/help/C/toolbox helpdata_DATA = \ - index.html \ + index.html \ toolbox.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/toolbox/help/Makefile.am b/help/C/toolbox/help/Makefile.am index e09c667af6..be1061fa3f 100644 --- a/help/C/toolbox/help/Makefile.am +++ b/help/C/toolbox/help/Makefile.am @@ -3,8 +3,7 @@ helpdatadir = $(gimpdatadir)/help/C/toolbox/help helpdata_DATA = \ - context_help.html \ - index.html + context_help.html EXTRA_DIST = $(helpdata_DATA) @@ -19,4 +18,4 @@ install-data-local: rm -f $(DESTDIR)$(helpdatadir)/dialogs $(LN_S) ../../dialogs $(DESTDIR)$(helpdatadir)/dialogs rm -f $(DESTDIR)$(helpdatadir)/filters - $(LN_S) ../filters $(DESTDIR)$(helpdatadir)/filters + $(LN_S) ../../filters $(DESTDIR)$(helpdatadir)/filters diff --git a/help/C/toolbox/help/context_help.html b/help/C/toolbox/help/context_help.html index c2201705ee..890f374220 100644 --- a/help/C/toolbox/help/context_help.html +++ b/help/C/toolbox/help/context_help.html @@ -1,31 +1,144 @@ - - - - - Help Page for context_help - - - - - - - - - - - -
- context_help help page -
-

- Index

- (/toolbox/help/context_help.html)

- Sorry but the help file for context_help is not yet done. -

- /Karin & Olof -

-

- - - +Context Help
GIMP User Manual
PrevChapter 3. ToolBoxNext

Context Help

Sorry, but the help page for "Context Help" is not written yet. +


PrevHomeNext
Help Page for HelpUpTip of the Day
\ No newline at end of file diff --git a/help/C/toolbox/help/index.html b/help/C/toolbox/help/index.html deleted file mode 100644 index 3814dd14f8..0000000000 --- a/help/C/toolbox/help/index.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - Index for help - - - - - - - - - - - -
- help Index -
-

- (/toolbox/help/index.html)

- Top index

-

Topics in this directory:

- context_help
-

- /Karin & Olof -

-

- - - diff --git a/help/C/toolbox/index.html b/help/C/toolbox/index.html index 784d33fcce..00b6d00216 100644 --- a/help/C/toolbox/index.html +++ b/help/C/toolbox/index.html @@ -1,32 +1,206 @@ - - - - - Index for toolbox - - - - - - - - - - - -
- toolbox Index -
-

- (/toolbox/index.html)

- Top index

-

Topics in this directory:

- toolbox
-

- /Karin & Olof -

-

- - - +ToolBox
GIMP User Manual
PrevNext

Chapter 3. ToolBox

Toolbox Introduction

In this chapter we'll explain you the menus and buttons of + the Toolbox. +


PrevHomeNext
File Formats The ToolBox
\ No newline at end of file diff --git a/help/C/toolbox/toolbox.html b/help/C/toolbox/toolbox.html index aad8774aa9..e24c22d48f 100644 --- a/help/C/toolbox/toolbox.html +++ b/help/C/toolbox/toolbox.html @@ -1,31 +1,201 @@ - - - - - Help Page for toolbox - - - - - - - - - - - -
- toolbox help page -
-

- Index

- (/toolbox/toolbox.html)

- Sorry but the help file for toolbox is not yet done. -

- /Karin & Olof -

-

- - - +The ToolBox
GIMP User Manual
PrevChapter 3. ToolBoxNext

The ToolBox

Probably the window that is most central to the use of + GIMP is the + ToolBox. +

Figure 3-1. The ToolBox

The toolbox consists of the menu bar with + the entries File, Xtns and + Help, the tools buttons which are the set of + square buttons in Figure 2-1, the color selector which is at the + bottom left, and the tools status indicators which are at the + bottom right. +

Almost all the tools in the toolbox have + options which you can configure to define how the tool operates. + You can access the options either by double clicking on the tool's + icon, +


PrevHomeNext
ToolBoxUpModule Browser
\ No newline at end of file diff --git a/help/C/tools/Makefile.am b/help/C/tools/Makefile.am index 5a8b14c491..ca1072b9de 100644 --- a/help/C/tools/Makefile.am +++ b/help/C/tools/Makefile.am @@ -3,47 +3,46 @@ helpdatadir = $(gimpdatadir)/help/C/tools helpdata_DATA = \ - airbrush.html \ - bezier_select.html \ - blend.html \ - brightness_contrast.html \ - bucket_fill.html \ - by_color_select.html \ - clone.html \ - color_balance.html \ - color_picker.html \ - convolve.html \ - crop.html \ - curves.html \ - dodgeburn.html \ - ellipse_select.html \ - eraser.html \ - flip.html \ - free_select.html \ - fuzzy_select.html \ - histogram.html \ - hue_saturation.html \ - index.html \ - ink.html \ - intelligent_scissors.html \ - levels.html \ - magnify.html \ - measure.html \ - move.html \ - paintbrush.html \ - path.html \ - pencil.html \ - posterize.html \ - rect_select.html \ - smudge.html \ - text.html \ - threshold.html \ - transform.html \ - transform_perspective.html \ - transform_rotate.html \ - transform_scale.html \ - transform_shear.html \ - xinput_airbrush.html + airbrush.html \ + bezier_select.html \ + blend.html \ + brightness_contrast.html \ + bucket_fill.html \ + by_color_select.html \ + clone.html \ + color_balance.html \ + color_picker.html \ + convolve.html \ + crop.html \ + curves.html \ + dodgeburn.html \ + ellipse_select.html \ + eraser.html \ + flip.html \ + free_select.html \ + fuzzy_select.html \ + histogram.html \ + hue_saturation.html \ + index.html \ + ink.html \ + intelligent_scissors.html \ + levels.html \ + magnify.html \ + measure.html \ + move.html \ + paintbrush.html \ + path.html \ + pencil.html \ + posterize.html \ + rect_select.html \ + smudge.html \ + text.html \ + threshold.html \ + transform.html \ + transform_perspective.html \ + transform_rotate.html \ + transform_scale.html \ + transform_shear.html EXTRA_DIST = $(helpdata_DATA) diff --git a/help/C/tools/airbrush.html b/help/C/tools/airbrush.html index 06055d1ca4..39dbe7828c 100644 --- a/help/C/tools/airbrush.html +++ b/help/C/tools/airbrush.html @@ -1,31 +1,141 @@ - - - - - Help Page for airbrush - - - - - - - - - - - -
- airbrush help page -
-

- Index

- (/tools/airbrush.html)

- Sorry but the help file for airbrush is not yet done. -

- /Karin & Olof -

-

- - - +Airbrush
GIMP User Manual
PrevChapter 8. ToolsNext

Airbrush

Sorry, but the help page for "Airbrush" is not written yet. +


PrevHomeNext
Tool Options DialogUpBezier Selection
\ No newline at end of file diff --git a/help/C/tools/bezier_select.html b/help/C/tools/bezier_select.html index 6255a3614b..7daff179a1 100644 --- a/help/C/tools/bezier_select.html +++ b/help/C/tools/bezier_select.html @@ -1,31 +1,138 @@ - - - - - Help Page for bezier_select - - - - - - - - - - - -
- bezier_select help page -
-

- Index

- (/tools/bezier_select.html)

- Sorry but the help file for bezier_select is not yet done. -

- /Karin & Olof -

-

- - - +Bezier Selection
GIMP User Manual
PrevChapter 8. ToolsNext

Bezier Selection

Sorry, but the help page for "Bezier Selection" is not written yet. +


PrevHomeNext
AirbrushUpBlend
\ No newline at end of file diff --git a/help/C/tools/blend.html b/help/C/tools/blend.html index 2e6d7e0df6..41eef9e740 100644 --- a/help/C/tools/blend.html +++ b/help/C/tools/blend.html @@ -1,31 +1,138 @@ - - - - - Help Page for blend - - - - - - - - - - - -
- blend help page -
-

- Index

- (/tools/blend.html)

- Sorry but the help file for blend is not yet done. -

- /Karin & Olof -

-

- - - +Blend
GIMP User Manual
PrevChapter 8. ToolsNext

Blend

Sorry, but the help page for "Blend" is not written yet. +


PrevHomeNext
Bezier SelectionUpBrightness-Contrast
\ No newline at end of file diff --git a/help/C/tools/brightness_contrast.html b/help/C/tools/brightness_contrast.html index 4f10a867cd..bc905aff83 100644 --- a/help/C/tools/brightness_contrast.html +++ b/help/C/tools/brightness_contrast.html @@ -1,31 +1,138 @@ - - - - - Help Page for brightness_contrast - - - - - - - - - - - -
- brightness_contrast help page -
-

- Index

- (/tools/brightness_contrast.html)

- Sorry but the help file for brightness_contrast is not yet done. -

- /Karin & Olof -

-

- - - +Brightness-Contrast
GIMP User Manual
PrevChapter 8. ToolsNext

Brightness-Contrast

Sorry, but the help page for "Brightness-Contrast" is not written yet. +


PrevHomeNext
BlendUpBucket Fill
\ No newline at end of file diff --git a/help/C/tools/bucket_fill.html b/help/C/tools/bucket_fill.html index c4ad851fc1..05c1bd8442 100644 --- a/help/C/tools/bucket_fill.html +++ b/help/C/tools/bucket_fill.html @@ -1,31 +1,138 @@ - - - - - Help Page for bucket_fill - - - - - - - - - - - -
- bucket_fill help page -
-

- Index

- (/tools/bucket_fill.html)

- Sorry but the help file for bucket_fill is not yet done. -

- /Karin & Olof -

-

- - - +Bucket Fill
GIMP User Manual
PrevChapter 8. ToolsNext

Bucket Fill

Sorry, but the help page for "Bucket Fill" is not written yet. +


PrevHomeNext
Brightness-ContrastUpBy Color Selection
\ No newline at end of file diff --git a/help/C/tools/by_color_select.html b/help/C/tools/by_color_select.html index 1b6e82e443..31b72b13da 100644 --- a/help/C/tools/by_color_select.html +++ b/help/C/tools/by_color_select.html @@ -1,31 +1,138 @@ - - - - - Help Page for by_color_select - - - - - - - - - - - -
- by_color_select help page -
-

- Index

- (/tools/by_color_select.html)

- Sorry but the help file for by_color_select is not yet done. -

- /Karin & Olof -

-

- - - +By Color Selection
GIMP User Manual
PrevChapter 8. ToolsNext

By Color Selection

Sorry, but the help page for "By Color Selection" is not written yet. +


PrevHomeNext
Bucket FillUpClone
\ No newline at end of file diff --git a/help/C/tools/clone.html b/help/C/tools/clone.html index 629150b403..a431e37492 100644 --- a/help/C/tools/clone.html +++ b/help/C/tools/clone.html @@ -1,31 +1,138 @@ - - - - - Help Page for clone - - - - - - - - - - - -
- clone help page -
-

- Index

- (/tools/clone.html)

- Sorry but the help file for clone is not yet done. -

- /Karin & Olof -

-

- - - +Clone
GIMP User Manual
PrevChapter 8. ToolsNext

Clone

Sorry, but the help page for "Clone" is not written yet. +


PrevHomeNext
By Color SelectionUpColor Balance
\ No newline at end of file diff --git a/help/C/tools/color_balance.html b/help/C/tools/color_balance.html index dbf8a5ec30..7affc3130d 100644 --- a/help/C/tools/color_balance.html +++ b/help/C/tools/color_balance.html @@ -1,31 +1,138 @@ - - - - - Help Page for color_balance - - - - - - - - - - - -
- color_balance help page -
-

- Index

- (/tools/color_balance.html)

- Sorry but the help file for color_balance is not yet done. -

- /Karin & Olof -

-

- - - +Color Balance
GIMP User Manual
PrevChapter 8. ToolsNext

Color Balance

Sorry, but the help page for "Color Balance" is not written yet. +


PrevHomeNext
CloneUpColor Picker
\ No newline at end of file diff --git a/help/C/tools/color_picker.html b/help/C/tools/color_picker.html index 57d8d5e141..59a35bd80c 100644 --- a/help/C/tools/color_picker.html +++ b/help/C/tools/color_picker.html @@ -1,31 +1,138 @@ - - - - - Help Page for color_picker - - - - - - - - - - - -
- color_picker help page -
-

- Index

- (/tools/color_picker.html)

- Sorry but the help file for color_picker is not yet done. -

- /Karin & Olof -

-

- - - +Color Picker
GIMP User Manual
PrevChapter 8. ToolsNext

Color Picker

Sorry, but the help page for "Color Picker" is not written yet. +


PrevHomeNext
Color BalanceUpConvolver
\ No newline at end of file diff --git a/help/C/tools/convolve.html b/help/C/tools/convolve.html index e3e98cc022..bfffe3664e 100644 --- a/help/C/tools/convolve.html +++ b/help/C/tools/convolve.html @@ -1,31 +1,138 @@ - - - - - Help Page for convolve - - - - - - - - - - - -
- convolve help page -
-

- Index

- (/tools/convolve.html)

- Sorry but the help file for convolve is not yet done. -

- /Karin & Olof -

-

- - - +Convolver
GIMP User Manual
PrevChapter 8. ToolsNext

Convolver

Sorry, but the help page for "Convolver" is not written yet. +


PrevHomeNext
Color PickerUpCrop
\ No newline at end of file diff --git a/help/C/tools/crop.html b/help/C/tools/crop.html index 37fc439f40..9205dbbb3f 100644 --- a/help/C/tools/crop.html +++ b/help/C/tools/crop.html @@ -1,31 +1,138 @@ - - - - - Help Page for crop - - - - - - - - - - - -
- crop help page -
-

- Index

- (/tools/crop.html)

- Sorry but the help file for crop is not yet done. -

- /Karin & Olof -

-

- - - +Crop
GIMP User Manual
PrevChapter 8. ToolsNext

Crop

Sorry, but the help page for "Crop" is not written yet. +


PrevHomeNext
ConvolverUpCurves
\ No newline at end of file diff --git a/help/C/tools/curves.html b/help/C/tools/curves.html index a057b49f07..977c46aa86 100644 --- a/help/C/tools/curves.html +++ b/help/C/tools/curves.html @@ -1,31 +1,138 @@ - - - - - Help Page for curves - - - - - - - - - - - -
- curves help page -
-

- Index

- (/tools/curves.html)

- Sorry but the help file for curves is not yet done. -

- /Karin & Olof -

-

- - - +Curves
GIMP User Manual
PrevChapter 8. ToolsNext

Curves

Sorry, but the help page for "Curves" is not written yet. +


PrevHomeNext
CropUpDodge or Burn
\ No newline at end of file diff --git a/help/C/tools/dodgeburn.html b/help/C/tools/dodgeburn.html index fb152a431e..7bff83a94d 100644 --- a/help/C/tools/dodgeburn.html +++ b/help/C/tools/dodgeburn.html @@ -1,31 +1,138 @@ - - - - - Help Page for dodgeburn - - - - - - - - - - - -
- dodgeburn help page -
-

- Index

- (/tools/dodgeburn.html)

- Sorry but the help file for dodgeburn is not yet done. -

- /Karin & Olof -

-

- - - +Dodge or Burn
GIMP User Manual
PrevChapter 8. ToolsNext

Dodge or Burn

Sorry, but the help page for "Dodge or Burn" is not written yet. +


PrevHomeNext
CurvesUpElliptical Selection
\ No newline at end of file diff --git a/help/C/tools/ellipse_select.html b/help/C/tools/ellipse_select.html index 58fbfae1c8..09f93b8269 100644 --- a/help/C/tools/ellipse_select.html +++ b/help/C/tools/ellipse_select.html @@ -1,31 +1,138 @@ - - - - - Help Page for ellipse_select - - - - - - - - - - - -
- ellipse_select help page -
-

- Index

- (/tools/ellipse_select.html)

- Sorry but the help file for ellipse_select is not yet done. -

- /Karin & Olof -

-

- - - +Elliptical Selection
GIMP User Manual
PrevChapter 8. ToolsNext

Elliptical Selection

Sorry, but the help page for "Elliptical Selection" is not written yet. +


PrevHomeNext
Dodge or BurnUpEraser
\ No newline at end of file diff --git a/help/C/tools/eraser.html b/help/C/tools/eraser.html index 505feb0eb6..df07dbc899 100644 --- a/help/C/tools/eraser.html +++ b/help/C/tools/eraser.html @@ -1,31 +1,138 @@ - - - - - Help Page for eraser - - - - - - - - - - - -
- eraser help page -
-

- Index

- (/tools/eraser.html)

- Sorry but the help file for eraser is not yet done. -

- /Karin & Olof -

-

- - - +Eraser
GIMP User Manual
PrevChapter 8. ToolsNext

Eraser

Sorry, but the help page for "Eraser" is not written yet. +


PrevHomeNext
Elliptical SelectionUpFlip
\ No newline at end of file diff --git a/help/C/tools/flip.html b/help/C/tools/flip.html index f0e7ebf1ed..c725d922e5 100644 --- a/help/C/tools/flip.html +++ b/help/C/tools/flip.html @@ -1,31 +1,138 @@ - - - - - Help Page for flip - - - - - - - - - - - -
- flip help page -
-

- Index

- (/tools/flip.html)

- Sorry but the help file for flip is not yet done. -

- /Karin & Olof -

-

- - - +Flip
GIMP User Manual
PrevChapter 8. ToolsNext

Flip

Sorry, but the help page for "Flip" is not written yet. +


PrevHomeNext
EraserUpFree-Hand Selection
\ No newline at end of file diff --git a/help/C/tools/free_select.html b/help/C/tools/free_select.html index b4561d8b57..755eac35e5 100644 --- a/help/C/tools/free_select.html +++ b/help/C/tools/free_select.html @@ -1,31 +1,138 @@ - - - - - Help Page for free_select - - - - - - - - - - - -
- free_select help page -
-

- Index

- (/tools/free_select.html)

- Sorry but the help file for free_select is not yet done. -

- /Karin & Olof -

-

- - - +Free-Hand Selection
GIMP User Manual
PrevChapter 8. ToolsNext

Free-Hand Selection

Sorry, but the help page for "Free-Hand Selection" is not written yet. +


PrevHomeNext
FlipUpFuzzy Selection
\ No newline at end of file diff --git a/help/C/tools/fuzzy_select.html b/help/C/tools/fuzzy_select.html index ee34f53307..3226fe7714 100644 --- a/help/C/tools/fuzzy_select.html +++ b/help/C/tools/fuzzy_select.html @@ -1,31 +1,141 @@ - - - - - Help Page for fuzzy_select - - - - - - - - - - - -
- fuzzy_select help page -
-

- Index

- (/tools/fuzzy_select.html)

- Sorry but the help file for fuzzy_select is not yet done. -

- /Karin & Olof -

-

- - - +Fuzzy Selection
GIMP User Manual
PrevChapter 8. ToolsNext

Fuzzy Selection

Sorry, but the help page for "Fuzzy Selection" is not written yet. +


PrevHomeNext
Free-Hand SelectionUpHistogram
\ No newline at end of file diff --git a/help/C/tools/histogram.html b/help/C/tools/histogram.html index 098ebefac6..08430e545b 100644 --- a/help/C/tools/histogram.html +++ b/help/C/tools/histogram.html @@ -1,31 +1,138 @@ - - - - - Help Page for histogram - - - - - - - - - - - -
- histogram help page -
-

- Index

- (/tools/histogram.html)

- Sorry but the help file for histogram is not yet done. -

- /Karin & Olof -

-

- - - +Histogram
GIMP User Manual
PrevChapter 8. ToolsNext

Histogram

Sorry, but the help page for "Histogram" is not written yet. +


PrevHomeNext
Fuzzy SelectionUpHue-Saturation
\ No newline at end of file diff --git a/help/C/tools/hue_saturation.html b/help/C/tools/hue_saturation.html index 7c3bfc28ef..2cdc927e84 100644 --- a/help/C/tools/hue_saturation.html +++ b/help/C/tools/hue_saturation.html @@ -1,31 +1,138 @@ - - - - - Help Page for hue_saturation - - - - - - - - - - - -
- hue_saturation help page -
-

- Index

- (/tools/hue_saturation.html)

- Sorry but the help file for hue_saturation is not yet done. -

- /Karin & Olof -

-

- - - +Hue-Saturation
GIMP User Manual
PrevChapter 8. ToolsNext

Hue-Saturation

Sorry, but the help page for "Hue-Saturation" is not written yet. +


PrevHomeNext
HistogramUpInk
\ No newline at end of file diff --git a/help/C/tools/index.html b/help/C/tools/index.html index c785e1de2d..84f31a94cd 100644 --- a/help/C/tools/index.html +++ b/help/C/tools/index.html @@ -1,71 +1,367 @@ - - - - - Index for tools - - - - - - - - - - - -
- tools Index -
-

- (/tools/index.html)

- Top index

-

Topics in this directory:

- airbrush
- bezier_select
- blend
- brightness_contrast
- bucket_fill
- by_color_select
- clone
- color_balance
- color_picker
- convolve
- crop
- curves
- dodgeburn
- ellipse_select
- eraser
- flip
- free_select
- fuzzy_select
- histogram
- hue_saturation
- ink
- intelligent_scissors
- levels
- magnify
- measure
- move
- paintbrush
- path
- pencil
- posterize
- rect_select
- smudge
- text
- threshold
- transform
- transform_perspective
- transform_rotate
- transform_scale
- transform_shear
- xinput_airbrush
-

- /Karin & Olof -

-

- - - +Tools
GIMP User Manual
PrevNext


PrevHomeNext
Edit Path Attributes Tool Options Dialog
\ No newline at end of file diff --git a/help/C/tools/ink.html b/help/C/tools/ink.html index a730b80a68..89016e53a7 100644 --- a/help/C/tools/ink.html +++ b/help/C/tools/ink.html @@ -1,31 +1,138 @@ - - - - - Help Page for ink - - - - - - - - - - - -
- ink help page -
-

- Index

- (/tools/ink.html)

- Sorry but the help file for ink is not yet done. -

- /Karin & Olof -

-

- - - +Ink
GIMP User Manual
PrevChapter 8. ToolsNext

Ink

Sorry, but the help page for "Ink" is not written yet. +


PrevHomeNext
Hue-SaturationUpIntelligent Scissors
\ No newline at end of file diff --git a/help/C/tools/intelligent_scissors.html b/help/C/tools/intelligent_scissors.html index 539dd2bdd2..0872ad8572 100644 --- a/help/C/tools/intelligent_scissors.html +++ b/help/C/tools/intelligent_scissors.html @@ -1,31 +1,138 @@ - - - - - Help Page for intelligent_scissors - - - - - - - - - - - -
- intelligent_scissors help page -
-

- Index

- (/tools/intelligent_scissors.html)

- Sorry but the help file for intelligent_scissors is not yet done. -

- /Karin & Olof -

-

- - - +Intelligent Scissors
GIMP User Manual
PrevChapter 8. ToolsNext

Intelligent Scissors

Sorry, but the help page for "Intelligent Scissors" is not written yet. +

\ No newline at end of file diff --git a/help/C/tools/levels.html b/help/C/tools/levels.html index 41d2aed2a2..e557427e7d 100644 --- a/help/C/tools/levels.html +++ b/help/C/tools/levels.html @@ -1,31 +1,138 @@ - - - - - Help Page for levels - - - - - - - - - - - -
- levels help page -
-

- Index

- (/tools/levels.html)

- Sorry but the help file for levels is not yet done. -

- /Karin & Olof -

-

- - - +Levels
GIMP User Manual
PrevChapter 8. ToolsNext

Levels

Sorry, but the help page for "Levels" is not written yet. +


PrevHomeNext
Intelligent ScissorsUpMagnify
\ No newline at end of file diff --git a/help/C/tools/magnify.html b/help/C/tools/magnify.html index 40908c4787..04bcbf0d34 100644 --- a/help/C/tools/magnify.html +++ b/help/C/tools/magnify.html @@ -1,31 +1,138 @@ - - - - - Help Page for magnify - - - - - - - - - - - -
- magnify help page -
-

- Index

- (/tools/magnify.html)

- Sorry but the help file for magnify is not yet done. -

- /Karin & Olof -

-

- - - +Magnify
GIMP User Manual
PrevChapter 8. ToolsNext

Magnify

Sorry, but the help page for "Magnify" is not written yet. +


PrevHomeNext
LevelsUpMeasure
\ No newline at end of file diff --git a/help/C/tools/measure.html b/help/C/tools/measure.html index d04f9dcf04..18564a5fab 100644 --- a/help/C/tools/measure.html +++ b/help/C/tools/measure.html @@ -1,31 +1,138 @@ - - - - - Help Page for measure - - - - - - - - - - - -
- measure help page -
-

- Index

- (/tools/measure.html)

- Sorry but the help file for measure is not yet done. -

- /Karin & Olof -

-

- - - +Measure
GIMP User Manual
PrevChapter 8. ToolsNext

Measure

Sorry, but the help page for "Measure" is not written yet. +


PrevHomeNext
MagnifyUpMove
\ No newline at end of file diff --git a/help/C/tools/move.html b/help/C/tools/move.html index 435d4cfca0..270428f3c0 100644 --- a/help/C/tools/move.html +++ b/help/C/tools/move.html @@ -1,31 +1,138 @@ - - - - - Help Page for move - - - - - - - - - - - -
- move help page -
-

- Index

- (/tools/move.html)

- Sorry but the help file for move is not yet done. -

- /Karin & Olof -

-

- - - +Move
GIMP User Manual
PrevChapter 8. ToolsNext

Move

Sorry, but the help page for "Move" is not written yet. +


PrevHomeNext
MeasureUpPaintbrush
\ No newline at end of file diff --git a/help/C/tools/paintbrush.html b/help/C/tools/paintbrush.html index a9e1ed9fad..48276b5e22 100644 --- a/help/C/tools/paintbrush.html +++ b/help/C/tools/paintbrush.html @@ -1,31 +1,138 @@ - - - - - Help Page for paintbrush - - - - - - - - - - - -
- paintbrush help page -
-

- Index

- (/tools/paintbrush.html)

- Sorry but the help file for paintbrush is not yet done. -

- /Karin & Olof -

-

- - - +Paintbrush
GIMP User Manual
PrevChapter 8. ToolsNext

Paintbrush

Sorry, but the help page for "Paintbrush" is not written yet. +


PrevHomeNext
MoveUpBezier Selection
\ No newline at end of file diff --git a/help/C/tools/path.html b/help/C/tools/path.html index e53e4b5c1e..fa73f2e3f7 100644 --- a/help/C/tools/path.html +++ b/help/C/tools/path.html @@ -1,31 +1,138 @@ - - - - - Help Page for path - - - - - - - - - - - -
- path help page -
-

- Index

- (/tools/path.html)

- Sorry but the help file for path is not yet done. -

- /Karin & Olof -

-

- - - +Bezier Selection
GIMP User Manual
PrevChapter 8. ToolsNext

Bezier Selection

Sorry, but the help page for "Bezier Selection" is not written yet. +


PrevHomeNext
PaintbrushUpPencil
\ No newline at end of file diff --git a/help/C/tools/pencil.html b/help/C/tools/pencil.html index 6f5bd18c4a..2fe6e36721 100644 --- a/help/C/tools/pencil.html +++ b/help/C/tools/pencil.html @@ -1,31 +1,138 @@ - - - - - Help Page for pencil - - - - - - - - - - - -
- pencil help page -
-

- Index

- (/tools/pencil.html)

- Sorry but the help file for pencil is not yet done. -

- /Karin & Olof -

-

- - - +Pencil
GIMP User Manual
PrevChapter 8. ToolsNext

Pencil

Sorry, but the help page for "Pencil" is not written yet. +


PrevHomeNext
Bezier SelectionUpPosterize
\ No newline at end of file diff --git a/help/C/tools/posterize.html b/help/C/tools/posterize.html index c601571789..562454cab9 100644 --- a/help/C/tools/posterize.html +++ b/help/C/tools/posterize.html @@ -1,31 +1,138 @@ - - - - - Help Page for posterize - - - - - - - - - - - -
- posterize help page -
-

- Index

- (/tools/posterize.html)

- Sorry but the help file for posterize is not yet done. -

- /Karin & Olof -

-

- - - +Posterize
GIMP User Manual
PrevChapter 8. ToolsNext

Posterize

Sorry, but the help page for "Posterize" is not written yet. +


PrevHomeNext
PencilUpRectangular Selection
\ No newline at end of file diff --git a/help/C/tools/rect_select.html b/help/C/tools/rect_select.html index 49a5803ccb..75046236e4 100644 --- a/help/C/tools/rect_select.html +++ b/help/C/tools/rect_select.html @@ -1,31 +1,138 @@ - - - - - Help Page for rect_select - - - - - - - - - - - -
- rect_select help page -
-

- Index

- (/tools/rect_select.html)

- Sorry but the help file for rect_select is not yet done. -

- /Karin & Olof -

-

- - - +Rectangular Selection
GIMP User Manual
PrevChapter 8. ToolsNext

Rectangular Selection

Sorry, but the help page for "Rectangular Selection" is not written yet. +


PrevHomeNext
PosterizeUpSmudge
\ No newline at end of file diff --git a/help/C/tools/smudge.html b/help/C/tools/smudge.html index e90630f342..d4d983d810 100644 --- a/help/C/tools/smudge.html +++ b/help/C/tools/smudge.html @@ -1,31 +1,138 @@ - - - - - Help Page for smudge - - - - - - - - - - - -
- smudge help page -
-

- Index

- (/tools/smudge.html)

- Sorry but the help file for smudge is not yet done. -

- /Karin & Olof -

-

- - - +Smudge
GIMP User Manual
PrevChapter 8. ToolsNext

Smudge

Sorry, but the help page for "Smudge" is not written yet. +


PrevHomeNext
Rectangular SelectionUpText Tool
\ No newline at end of file diff --git a/help/C/tools/text.html b/help/C/tools/text.html index f80d2a1c24..6fb3458ea2 100644 --- a/help/C/tools/text.html +++ b/help/C/tools/text.html @@ -1,31 +1,138 @@ - - - - - Help Page for text - - - - - - - - - - - -
- text help page -
-

- Index

- (/tools/text.html)

- Sorry but the help file for text is not yet done. -

- /Karin & Olof -

-

- - - +Text Tool
GIMP User Manual
PrevChapter 8. ToolsNext

Text Tool

Sorry, but the help page for "Text Tool" is not written yet. +


PrevHomeNext
SmudgeUpThreshold
\ No newline at end of file diff --git a/help/C/tools/threshold.html b/help/C/tools/threshold.html index 9c8f5d3721..2e163df14f 100644 --- a/help/C/tools/threshold.html +++ b/help/C/tools/threshold.html @@ -1,31 +1,138 @@ - - - - - Help Page for threshold - - - - - - - - - - - -
- threshold help page -
-

- Index

- (/tools/threshold.html)

- Sorry but the help file for threshold is not yet done. -

- /Karin & Olof -

-

- - - +Threshold
GIMP User Manual
PrevChapter 8. ToolsNext

Threshold

Sorry, but the help page for "Threshold" is not written yet. +


PrevHomeNext
Text ToolUpTransform
\ No newline at end of file diff --git a/help/C/tools/transform.html b/help/C/tools/transform.html index 7b2c57171a..8f4db3c2df 100644 --- a/help/C/tools/transform.html +++ b/help/C/tools/transform.html @@ -1,31 +1,138 @@ - - - - - Help Page for transform - - - - - - - - - - - -
- transform help page -
-

- Index

- (/tools/transform.html)

- Sorry but the help file for transform is not yet done. -

- /Karin & Olof -

-

- - - +Transform
GIMP User Manual
PrevChapter 8. ToolsNext

Transform

Sorry, but the help page for "Transform" is not written yet. +


PrevHomeNext
ThresholdUpPerspective Transform
\ No newline at end of file diff --git a/help/C/tools/transform_perspective.html b/help/C/tools/transform_perspective.html index 302580a445..7b140fe456 100644 --- a/help/C/tools/transform_perspective.html +++ b/help/C/tools/transform_perspective.html @@ -1,31 +1,138 @@ - - - - - Help Page for transform_perspective - - - - - - - - - - - -
- transform_perspective help page -
-

- Index

- (/tools/transform_perspective.html)

- Sorry but the help file for transform_perspective is not yet done. -

- /Karin & Olof -

-

- - - +Perspective Transform
GIMP User Manual
PrevChapter 8. ToolsNext

Perspective Transform

Sorry, but the help page for "Perspective Transform" is not written yet. +


PrevHomeNext
TransformUpRotate
\ No newline at end of file diff --git a/help/C/tools/transform_rotate.html b/help/C/tools/transform_rotate.html index 1d0a60162a..b2eb3f9bdc 100644 --- a/help/C/tools/transform_rotate.html +++ b/help/C/tools/transform_rotate.html @@ -1,31 +1,138 @@ - - - - - Help Page for transform_rotate - - - - - - - - - - - -
- transform_rotate help page -
-

- Index

- (/tools/transform_rotate.html)

- Sorry but the help file for transform_rotate is not yet done. -

- /Karin & Olof -

-

- - - +Rotate
GIMP User Manual
PrevChapter 8. ToolsNext

Rotate

Sorry, but the help page for "Rotate" is not written yet. +


PrevHomeNext
Perspective TransformUpScale
\ No newline at end of file diff --git a/help/C/tools/transform_scale.html b/help/C/tools/transform_scale.html index 5b4cd52f41..240b31699f 100644 --- a/help/C/tools/transform_scale.html +++ b/help/C/tools/transform_scale.html @@ -1,31 +1,138 @@ - - - - - Help Page for transform_scale - - - - - - - - - - - -
- transform_scale help page -
-

- Index

- (/tools/transform_scale.html)

- Sorry but the help file for transform_scale is not yet done. -

- /Karin & Olof -

-

- - - +Scale
GIMP User Manual
PrevChapter 8. ToolsNext

Scale

Sorry, but the help page for "Scale" is not written yet. +


PrevHomeNext
RotateUpShear
\ No newline at end of file diff --git a/help/C/tools/transform_shear.html b/help/C/tools/transform_shear.html index 760e7d1fa7..7b2f78e9e9 100644 --- a/help/C/tools/transform_shear.html +++ b/help/C/tools/transform_shear.html @@ -1,31 +1,138 @@ - - - - - Help Page for transform_shear - - - - - - - - - - - -
- transform_shear help page -
-

- Index

- (/tools/transform_shear.html)

- Sorry but the help file for transform_shear is not yet done. -

- /Karin & Olof -

-

- - - +Shear
GIMP User Manual
PrevChapter 8. ToolsNext

Shear

Sorry, but the help page for "Shear" is not written yet. +

\ No newline at end of file diff --git a/help/C/tools/xinput_airbrush.html b/help/C/tools/xinput_airbrush.html deleted file mode 100644 index 65d4ef2688..0000000000 --- a/help/C/tools/xinput_airbrush.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Help Page for xinput_airbrush - - - - - - - - - - - -
- xinput_airbrush help page -
-

- Index

- (/tools/xinput_airbrush.html)

- Sorry but the help file for xinput_airbrush is not yet done. -

- /Karin & Olof -

-

- - - diff --git a/help/C/using_gimp.html b/help/C/using_gimp.html new file mode 100644 index 0000000000..2f77b73dd4 --- /dev/null +++ b/help/C/using_gimp.html @@ -0,0 +1,434 @@ +Using GIMP
GIMP User Manual
PrevNext

Chapter 2. Using GIMP

Starting for the First Time

When you launch GIMP for the first + time, you will see a special dialog box. This allows you to setup + GIMP to your personal settings, without + affecting the way GIMP runs for other + users. The first thing you'll see is the license to the + GIMP — the GNU + General Public License. Click continue if + you accept the license. +

User Directory

GIMP now needs to create a + directory to hold your personal settings. Under UNIX, Linux, + and UNIX-like systems, the directory will be ~/.gimp-1.1 (the tilde ~ + means "your home directory" — often + /home/username). + Under Microsoft Windows the + directory location will vary. All the files and directories + which will be created are listed on the left-hand side. Click + on any of the entries to see what it is for. If you want these + files and directories to be created, click + Continue. + GIMP will give you a list of what + was done. You should check this list for any errors and if + everything is OK, click Continue again. +

Performance Tuning

To make GIMP perform as well as + possible, you can adjust several settings. For storing data + about images which are being edited, + GIMP uses a section of memory + called the "Tile Cache". A good way to decide on + a good size for your Tile Cache is to use two-thirds of the + RAM available in your system. For example, + 32MB would be a good size if your system + has 48MB of RAM. +

Some images are just too big to fit into this cache, and so + GIMP can use your hard disk as a + type of additional memory. You should set your swap directory + to an area on your hard disk which has enough free space — + around 200MB. To enhance performance when you + have several hard disks, you can set the swap file to the + fastest one. To locate a directory, click on the + ... button + or enter it directly into the box. You should make sure that + GIMP shows you a + checkmark next to + the box, otherwise GIMP can't + access the directory. +

Once you have made your settings, click + Continue. +

You can change these settings later in + GIMP's preferences. +

+

Monitor Resolution

Every monitor is slightly different, and, to make images look + correct, GIMP needs to know the + resolution of your monitor. You may find information on your + monitor's resolution in its manual. If you are not sure, click + Calibrate. You need to then find a + ruler and measure the length of the white bars. Enter their + measurements in the horizontal and + vertical boxes. You can select the units + used for measuring the bars from the drop-down list. Click + OK when you have finished calibrating. +

When you are ready, click Continue to + finish the configuration and start GIMP. +

GIMP will show a splash-screen with + a progress-bar at the bottom showing what + GIMP is doing. When + GIMP starts, it looks through all + your personal directories for items such as plug-ins and + patterns. The first time GIMP + starts, this process will take much longer than future times + because GIMP creates a + "cache" of the files. +


PrevHomeNext
What Can GIMP Do For Me? The Main Interface
\ No newline at end of file diff --git a/help/C/welcome.html b/help/C/welcome.html deleted file mode 100644 index 53a8fc21b4..0000000000 --- a/help/C/welcome.html +++ /dev/null @@ -1,111 +0,0 @@ - - - - - The Gimp Help System - - - - - - - - - -
Welcome To - The Gimp Help System

-

- About Gimp -

-

- Gimp is an acronym for GNU Image - Manipulation Program. Gimp is software - suitable for such tasks as photo retouching, image composition and image - authoring. It's capabilities as a image manipulation programs makes it a - worthy contender to other similar programs such as Adobe Photoshop or Corel - PhotoPaint. -

- The biggest advantage that Gimp has is that it is a free program, - and it can be downloaded from the Internet. But even more importantly, it's - not freeware. Gimp is an OSS (Open Source Software) program covered by the - GPL license, which gives you - the freedom to access and also to change the - source code that makes up the program. This is how and why Gimp is constantly - being developed and improved. -

-
- A Brief List of Gimp Features and Capabilities
-

-
-
- ° Full suite of painting tools including brushes, a pencil, an airbrush, - an ink tool, and cloning.
- ° Tile-based memory management so image size is limited only by available - disk space.
- ° Sub-pixel sampling for all paint tools for high-quality - anti-aliasing.
- ° Full Alpha channel support.
- ° Layers and channels.
- ° Advanced scripting capabilities provided by a procedural - database so you can call internal Gimp functions from external - scripts, such as Script-Fu, Perl-Fu (Perl scripts) and Python-Fu (Python - scripts).
- ° Multiple undo/redo (limited only by disk space).
- ° Transformation tools including rotate, scale, shear and flip.
- ° File formats supported include GIF, JPEG, PNG, XPM, TIFF, TGA, MPEG, - PS, PDF, PCX, BMP and many others.
- ° Load, display, convert and save to many file formats.
- ° Selection tools including rectangle, ellipse, free, fuzzy, paths and - intelligent scissors.
- ° Plug-ins that allow for the easy addition of new functions, new file - formats and new effect filters. -
-

- Therefore the whole Gimp developer team is welcoming you to the wonderful - world of Gimp. -

- About the Help System -

-

- The Gimp Help System will provide you with the necessary information how - to use all the functions provided by Gimp. It will do so in a short and effective - way so the best way to describe it is as a extended quick reference to Gimp. - The difference between the Gimp help system and a pure quick reference is - that the help system will describe the functionality and how to use the function - in a productive manner. -

- How to Use the Help System -

-

- The built in Gimp help browser (which we hope that you are using) has three - note book tabs. The one that you are reading this text in is the main note - book tab in which all help texts are displayed. The Context note book tab - will show the context of the help system and the index note book tab will - show the index of the help system. The advantage of the built in help browser - is that you can easily navigate the help system in e.g the Context note and - display the help text in the main note book tab. -

- What to Expect of the Help System -

-

- Besides the description of the functionality of the functions in Gimp. You - will also find descriptions of how to organize your work with Gimp, how to - setup Gimp, various tips and tricks, quick reference page of short cuts and - modifier keys, News of Gimp 1.2 for old Gimp users, etc. You will find all - this extra information in the Context note book tab, since they are general - help items and not specific to a special Gimp function. -

- You will also find links to the Gimp Users Manual and the Gimp Users Tutorial - to where you will find more in depth information of the function and how - to user the function when you work in Gimp. We hope that you will find the - links useful and that they will enlighten you and give you an extended and - professional understanding of Gimp, image manipulation and art. -

- So Happy Gimping -

- The Gimp Development Team -

- Index -

- - diff --git a/help/C/why_gimp.html b/help/C/why_gimp.html new file mode 100644 index 0000000000..5fedf97116 --- /dev/null +++ b/help/C/why_gimp.html @@ -0,0 +1,226 @@ +What Can GIMP Do For Me?
GIMP User Manual
PrevChapter 1. IntroductionNext

What Can GIMP Do For Me?

GIMP is a very powerful application + which has many uses. +

Image Editing

GIMP's main use is for the creation + and editing of bitmap images. This ranges from the touching up + of digital photographs to the creation of digital art or the + authoring of logos. The word "bitmap" means that + GIMP is mainly designed to work on + images that are made up of "pixels" — tiny + rectangles which each have a single set color. These pixels + are colored in a way to make up images. +

The other main method of storing images is + "vectors". A vector image is made up of lines, + co-ordinates, and fills. GIMP has + some support for vector drawing in the + Gfig plug-in, but it is not a + complete editing environment and shouldn't be used for the + creation of complex vector diagrams. +

Video Editing

GIMP also offers some image editing + features, which are mainly useful for creating small + animations since the editing is done on a frame-by-frame + basis. GIMP supports writing the + AVI and GIF animation + formats and can also read MPEG videos. +


PrevHomeNext
IntroductionUpUsing GIMP
\ No newline at end of file diff --git a/help/ChangeLog b/help/ChangeLog index c44b0605ac..acfd49d5c0 100644 --- a/help/ChangeLog +++ b/help/ChangeLog @@ -1,3 +1,18 @@ +2000-12-15 Michael Natterer + + * makedummyhelpfile.sh + * makeindex.sh: removed. + + * images/*: added some images. + + * help/*: Updated to the latest version of the gimp-help CVS module. + + This Version instoduces a bunch of new toplevel HTML files for + general topics, an autogenerated index, TOC, glossary, + an "image" directory on the "C" level, peace, love, and stuff... + + Thanks to all help writers: Prof, Bex, Piers, ... + 2000-08-27 Sven Neumann * C/filters/Makefile.am diff --git a/help/images/Makefile.am b/help/images/Makefile.am index 9f479d95a4..3c483d3e8f 100644 --- a/help/images/Makefile.am +++ b/help/images/Makefile.am @@ -3,8 +3,24 @@ helpdatadir = $(gimpdatadir)/help/images helpdata_DATA = \ - eek.png \ - wilber.png + eek.png \ + wilber.png \ + \ + anchor_layer_icon.png \ + delete_icon.png \ + duplicate_icon.png \ + lower_layer_icon.png \ + new_icon.png \ + path_to_selection_icon.png \ + raise_layer_icon.png \ + stroke_icon.png \ + \ + layers_example.png \ + layers_overview.png \ + \ + note.gif \ + tip.gif \ + warning.gif EXTRA_DIST = $(helpdata_DATA) diff --git a/help/images/anchor_layer_icon.png b/help/images/anchor_layer_icon.png new file mode 100644 index 0000000000..f7b9ca182b Binary files /dev/null and b/help/images/anchor_layer_icon.png differ diff --git a/help/images/delete_icon.png b/help/images/delete_icon.png new file mode 100644 index 0000000000..f32b04ee0f Binary files /dev/null and b/help/images/delete_icon.png differ diff --git a/help/images/duplicate_icon.png b/help/images/duplicate_icon.png new file mode 100644 index 0000000000..e9aa2a84c6 Binary files /dev/null and b/help/images/duplicate_icon.png differ diff --git a/help/images/layers_example.png b/help/images/layers_example.png new file mode 100644 index 0000000000..bee709958f Binary files /dev/null and b/help/images/layers_example.png differ diff --git a/help/images/layers_overview.png b/help/images/layers_overview.png new file mode 100644 index 0000000000..b3607fbccb Binary files /dev/null and b/help/images/layers_overview.png differ diff --git a/help/images/lower_layer_icon.png b/help/images/lower_layer_icon.png new file mode 100644 index 0000000000..911f95a358 Binary files /dev/null and b/help/images/lower_layer_icon.png differ diff --git a/help/images/new_icon.png b/help/images/new_icon.png new file mode 100644 index 0000000000..e1411027e4 Binary files /dev/null and b/help/images/new_icon.png differ diff --git a/help/images/note.gif b/help/images/note.gif new file mode 100644 index 0000000000..bd87119a76 Binary files /dev/null and b/help/images/note.gif differ diff --git a/help/images/path_to_selection_icon.png b/help/images/path_to_selection_icon.png new file mode 100644 index 0000000000..c9284269bd Binary files /dev/null and b/help/images/path_to_selection_icon.png differ diff --git a/help/images/raise_layer_icon.png b/help/images/raise_layer_icon.png new file mode 100644 index 0000000000..f5e0cc3b84 Binary files /dev/null and b/help/images/raise_layer_icon.png differ diff --git a/help/images/stroke_icon.png b/help/images/stroke_icon.png new file mode 100644 index 0000000000..10054f37bc Binary files /dev/null and b/help/images/stroke_icon.png differ diff --git a/help/images/tip.gif b/help/images/tip.gif new file mode 100644 index 0000000000..a3ddbb0f08 Binary files /dev/null and b/help/images/tip.gif differ diff --git a/help/images/warning.gif b/help/images/warning.gif new file mode 100644 index 0000000000..4697c06098 Binary files /dev/null and b/help/images/warning.gif differ diff --git a/help/makedummyhelpfile.sh b/help/makedummyhelpfile.sh deleted file mode 100755 index 9e54ac2ce1..0000000000 --- a/help/makedummyhelpfile.sh +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh - -dir=`basename \`pwd\`` -subdirs=`find . -maxdepth 1 -type d` -local=`pwd | sed -e 's/^.*\/help\/C\\(.*\\)/\\1/'` - -# -# Create dummy help pages -# - -for file in $* -do - -name=`basename $file .html` - -cat << EOF > $file - - - - -EOF - -echo " Help Page for $name" >> $file - -cat << EOF >> $file - - - - - - - - - - - -
-EOF - -echo " $name help page" >> $file - -cat << EOF >> $file -
-

- Index

- ($local/$file)

-EOF - -echo " Sorry but the help file for $name is not yet done." >> $file - -cat << EOF >> $file -

- /Karin & Olof -

-

- - - -EOF - -done diff --git a/help/makeindex.sh b/help/makeindex.sh deleted file mode 100755 index 104689ea4c..0000000000 --- a/help/makeindex.sh +++ /dev/null @@ -1,90 +0,0 @@ -#!/bin/sh - -dir=`basename \`pwd\`` -subdirs=`find . -maxdepth 1 -type d` -local=`pwd | sed -e 's/^.*\/help\/C\\(.*\\)/\\1/'` - -# -# Create the index for this directory -# - -cat << EOF > index.html - - - - -EOF - -echo " Index for $dir" >> index.html - -cat << EOF >> index.html - - - - - - - - - - - -
-EOF - -echo " $dir Index" >> index.html - -cat << EOF >> index.html -
-

- ($local/index.html)

-EOF - -echo " Top index

" >> index.html - -set $subdirs - -if [ "x$3" != "x" ]; then - -echo " Subtopics available:

" >> index.html - -for dir in $subdirs -do - -if [ $dir != "." ]; then -if [ $dir != "./CVS" ]; then - -echo " `basename $dir`
" >> index.html - -fi -fi - -done - -fi - -echo "

Topics in this directory:

" >> index.html - -for file in *.html -do - -if [ $file != index.html ]; then - -name=`basename $file .html` - -echo " $name
" >> index.html - -fi - -done - -cat << EOF >> index.html -

- /Karin & Olof -

-

- - - -EOF diff --git a/plug-ins/helpbrowser/helpbrowser.c b/plug-ins/helpbrowser/helpbrowser.c index 592acb0df2..082e8f9136 100644 --- a/plug-ins/helpbrowser/helpbrowser.c +++ b/plug-ins/helpbrowser/helpbrowser.c @@ -156,7 +156,7 @@ static HelpPage pages[] = NULL, NULL, NULL, - "welcome.html" + "introduction.html" } }; @@ -425,7 +425,7 @@ html_source (HelpPage *page, gtk_signal_handler_unblock_by_data (GTK_OBJECT (GTK_COMBO (combo)->entry), combo); } - + update_toolbar (page); } @@ -443,7 +443,8 @@ load_page (HelpPage *source_page, gchar *old_dir; gchar *new_dir, *new_base; gchar *new_ref; - gboolean page_valid = FALSE; + gboolean page_valid = FALSE; + gboolean filters_dir = FALSE; g_return_val_if_fail (ref != NULL && source_page != NULL && dest_page != NULL, FALSE); @@ -470,6 +471,9 @@ load_page (HelpPage *source_page, goto FINISH; } + if (strcmp (g_basename (new_dir), "filters") == 0) + filters_dir = TRUE; + g_free (new_dir); new_dir = g_get_current_dir (); @@ -498,6 +502,25 @@ load_page (HelpPage *source_page, file_contents = g_string_append (file_contents, aline); fclose (afile); } + else if (filters_dir) + { + gchar *undocumented_filter; + + undocumented_filter = g_strconcat (new_dir, G_DIR_SEPARATOR_S, + "undocumented_filter.html", NULL); + + + afile = fopen (undocumented_filter, "rt"); + + if (afile != NULL) + { + while (fgets (aline, sizeof (aline), afile)) + file_contents = g_string_append (file_contents, aline); + fclose (afile); + } + + g_free (undocumented_filter); + } if (strlen (file_contents->str) <= 0) { @@ -1014,7 +1037,7 @@ run_temp_proc (gchar *name, help_path = g_strconcat (gimp_data_directory(), G_DIR_SEPARATOR_S, GIMP_HELP_PREFIX, NULL); locale = g_strdup ("C"); - help_file = g_strdup ("welcome.html"); + help_file = g_strdup ("introduction.html"); /* Make sure all the arguments are there! */ if (nparams == 3) @@ -1182,7 +1205,7 @@ run (gchar *name, help_path = g_strconcat (gimp_data_directory(), G_DIR_SEPARATOR_S, GIMP_HELP_PREFIX, NULL); locale = g_strdup ("C"); - help_file = g_strdup ("welcome.html"); + help_file = g_strdup ("introduction.html"); /* Make sure all the arguments are there! */ if (nparams == 4)