1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

Compare commits

...

11 Commits

Author SHA1 Message Date
Ell
e737ce81d0 app: show blending mode icons in the layer stack
The icons are displayed next to the layer name, for non-normal
layers only.
2017-01-04 10:55:49 -05:00
Ell
8af103ea4d app: show blending mode icons in the mode combos 2017-01-04 10:55:49 -05:00
Ell
3f127cb551 icons: improve dependencies of generated icons
For icons whose generation logic is defined in the makefile, add the
makefile as a dependency; for icons whose generation depends on
external tools in the source tree, depend on the tools.
2017-01-04 10:55:49 -05:00
Ell
aab3c8349b icons: use AM_V_GEN when generating icons 2017-01-04 10:55:48 -05:00
Ell
a9445888ac icons: auto-generate blending mode icons for the Color theme 2017-01-04 10:55:48 -05:00
Ell
46b9d3c9f9 icons: add blending mode icons to the icon list 2017-01-04 10:55:48 -05:00
Ell
381a10be91 icons: add raster blending mode backdrop to Color
backdrop png
2017-01-04 10:55:48 -05:00
Ell
0ca3dab688 icons: add scalable blending mode backdrop to Color 2017-01-04 10:55:48 -05:00
Ell
e78f04ace3 icons: add raster blending mode icons to Symbolic 2017-01-04 10:55:42 -05:00
Ell
ccf826492c icons: add scalable blending mode icons to Symbolic 2017-01-04 10:55:30 -05:00
Ell
687798dd65 ^^^^^^ ell/blending-mode-icons ^^^^^^
Testing branch for bug 776545.
2017-01-04 10:55:24 -05:00
61 changed files with 4380 additions and 72 deletions

View File

@@ -69,8 +69,10 @@ struct _GimpLayerTreeViewPriv
gint model_column_mask;
gint model_column_mask_visible;
gint model_column_mode;
GtkCellRenderer *mask_cell;
GtkCellRenderer *mode_cell;
PangoAttrList *italic_attrs;
PangoAttrList *bold_attrs;
@@ -147,6 +149,11 @@ static void gimp_layer_tree_view_mask_update (GimpLayerTree
GimpLayer *layer);
static void gimp_layer_tree_view_mask_changed (GimpLayer *layer,
GimpLayerTreeView *view);
static void gimp_layer_tree_view_mode_update (GimpLayerTreeView *view,
GtkTreeIter *iter,
GimpLayer *layer);
static void gimp_layer_tree_view_mode_changed (GimpLayer *layer,
GimpLayerTreeView *view);
static void gimp_layer_tree_view_renderer_update (GimpViewRenderer *renderer,
GimpLayerTreeView *view);
static void gimp_layer_tree_view_update_borders (GimpLayerTreeView *view,
@@ -166,6 +173,11 @@ static void gimp_layer_tree_view_alpha_update (GimpLayerTree
GimpLayer *layer);
static void gimp_layer_tree_view_alpha_changed (GimpLayer *layer,
GimpLayerTreeView *view);
static void gimp_layer_tree_view_mode_cell_data_func (GtkTreeViewColumn *tree_column,
GtkCellRenderer *cell,
GtkTreeModel *model,
GtkTreeIter *iter,
gpointer data);
G_DEFINE_TYPE_WITH_CODE (GimpLayerTreeView, gimp_layer_tree_view,
@@ -262,6 +274,11 @@ gimp_layer_tree_view_init (GimpLayerTreeView *view)
&tree_view->n_model_columns,
G_TYPE_BOOLEAN);
view->priv->model_column_mode =
gimp_container_tree_store_columns_add (tree_view->model_columns,
&tree_view->n_model_columns,
GIMP_TYPE_LAYER_MODE_EFFECTS);
/* Paint mode menu */
view->priv->paint_mode_menu = gimp_paint_mode_menu_new (FALSE, FALSE);
@@ -355,6 +372,15 @@ gimp_layer_tree_view_constructed (GObject *object)
gimp_container_tree_view_add_renderer_cell (tree_view,
layer_view->priv->mask_cell);
layer_view->priv->mode_cell = gtk_cell_renderer_pixbuf_new ();
gtk_tree_view_column_pack_end (tree_view->main_column,
layer_view->priv->mode_cell,
FALSE);
gtk_tree_view_column_set_cell_data_func (tree_view->main_column,
layer_view->priv->mode_cell,
gimp_layer_tree_view_mode_cell_data_func,
tree_view, NULL);
g_signal_connect (tree_view->renderer_cell, "clicked",
G_CALLBACK (gimp_layer_tree_view_layer_clicked),
layer_view);
@@ -459,7 +485,7 @@ gimp_layer_tree_view_set_container (GimpContainerView *view,
{
layer_view->priv->mode_changed_handler =
gimp_tree_handler_connect (container, "mode-changed",
G_CALLBACK (gimp_layer_tree_view_layer_signal_handler),
G_CALLBACK (gimp_layer_tree_view_mode_changed),
view);
layer_view->priv->opacity_changed_handler =
@@ -552,6 +578,7 @@ gimp_layer_tree_view_insert_item (GimpContainerView *view,
gimp_layer_tree_view_alpha_update (layer_view, iter, layer);
gimp_layer_tree_view_mask_update (layer_view, iter, layer);
gimp_layer_tree_view_mode_update (layer_view, iter, layer);
return iter;
}
@@ -1207,6 +1234,39 @@ gimp_layer_tree_view_mask_changed (GimpLayer *layer,
gimp_layer_tree_view_mask_update (layer_view, iter, layer);
}
/* Layer Mode callbacks */
static void
gimp_layer_tree_view_mode_update (GimpLayerTreeView *view,
GtkTreeIter *iter,
GimpLayer *layer)
{
GimpContainerTreeView *tree_view = GIMP_CONTAINER_TREE_VIEW (view);
GimpLayerModeEffects mode;
mode = gimp_layer_get_mode (layer);
gtk_tree_store_set (GTK_TREE_STORE (tree_view->model), iter,
view->priv->model_column_mode, mode,
-1);
}
static void
gimp_layer_tree_view_mode_changed (GimpLayer *layer,
GimpLayerTreeView *layer_view)
{
GimpContainerView *view = GIMP_CONTAINER_VIEW (layer_view);
GtkTreeIter *iter;
gimp_layer_tree_view_layer_signal_handler (layer, layer_view);
iter = gimp_container_view_lookup (view, GIMP_VIEWABLE (layer));
if (iter)
gimp_layer_tree_view_mode_update (layer_view, iter, layer);
}
static void
gimp_layer_tree_view_renderer_update (GimpViewRenderer *renderer,
GimpLayerTreeView *layer_view)
@@ -1454,3 +1514,44 @@ gimp_layer_tree_view_alpha_changed (GimpLayer *layer,
GIMP_VIEWABLE (layer));
}
}
static void
gimp_layer_tree_view_mode_cell_data_func (GtkTreeViewColumn *tree_column,
GtkCellRenderer *cell,
GtkTreeModel *model,
GtkTreeIter *iter,
gpointer data)
{
GimpLayerTreeView *view = GIMP_LAYER_TREE_VIEW (data);
GimpLayerModeEffects mode;
gtk_tree_model_get (model, iter,
view->priv->model_column_mode, &mode,
-1);
if (mode == GIMP_NORMAL_MODE)
{
g_object_set (cell,
"visible", FALSE,
"icon-name", NULL,
NULL);
}
else
{
GEnumClass *enum_class;
GEnumValue *value;
gchar *icon_name;
enum_class = g_type_class_ref (GIMP_TYPE_LAYER_MODE_EFFECTS);
value = &enum_class->values[mode];
icon_name = g_strconcat ("gimp-", value->value_nick, NULL);
g_object_set (cell,
"visible", TRUE,
"icon-name", icon_name,
NULL);
g_free (icon_name);
}
}

View File

@@ -181,6 +181,8 @@ gimp_paint_mode_menu_new (gboolean with_behind_mode,
combo = gimp_enum_combo_box_new_with_model (GIMP_ENUM_STORE (store));
g_object_unref (store);
gimp_enum_combo_box_set_icon_prefix (GIMP_ENUM_COMBO_BOX (combo), "gimp");
gtk_combo_box_set_row_separator_func (GTK_COMBO_BOX (combo),
gimp_paint_mode_menu_separator_func,
GINT_TO_POINTER (-1),

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

View File

@@ -15,6 +15,28 @@ include $(top_srcdir)/icons/icon-list.mk
# SVG=`$(top_srcdir)/tools/extract-vector-icon.sh $< $*` && \
# echo $${SVG} > $@
# The blending mode icons are auto-generated from the Symbolic icons, by
# overlaying a white version of the corresponding symbolic icon on top of the
# blending-mode icon backdrop (gimp-mode-backdrop.{svg,png} in this theme).
MAKE_SVG_MODE_ICON = \
mkdir -p `dirname $@` && \
(sed '/<\/metadata>/q' $< && \
sed '1,/<\/metadata>/d;/<\/svg>/Q' `dirname $< | sed 's/\bSymbolic\b/Color/'`/gimp-mode-backdrop.svg && \
sed -r '1,/<\/metadata>/d;s/\#[[:xdigit:]]{6}\b/\#ffffff/g' $<) > $@
scalable/gimp-%-mode.svg: ../Symbolic/scalable/gimp-%-mode.svg scalable/gimp-mode-backdrop.svg Makefile.am
$(AM_V_GEN) $(MAKE_SVG_MODE_ICON)
MAKE_MODE_ICON = \
mkdir -p `dirname $@` && \
GEGL_USE_OPENCL=no GEGL_SWAP=ram $(GEGL) -o $@ -- \
over input=[ png-load path=`dirname $< | sed 's/\bSymbolic\b/Color/'`/gimp-mode-backdrop.png ] \
aux=[ load path=$< levels out-low=1 ] \
srgb=true
16/gimp-%-mode.png: ../Symbolic/16/gimp-%-mode.png 16/gimp-mode-backdrop.png Makefile.am
$(AM_V_GEN) $(MAKE_MODE_ICON)
## Compiled-in icons for both the core and libgimpwidgets
CORE_IMAGES = \

View File

@@ -28,7 +28,7 @@
<dc:title>Gimp Color Icon Theme</dc:title>
<dc:contributor>
<cc:Agent>
<dc:title>many unknown, Lapo Calamandrei, Andrew Chadwick, Alexandre Prokoudine, Aryeom Han, Benoit Touchette, Jakub Steiner, Jehan, Johannes Matschke, Marek Dvoroznak, Michael Natterer, Klaus Staedtler</dc:title>
<dc:title>many unknown, Lapo Calamandrei, Andrew Chadwick, Alexandre Prokoudine, Aryeom Han, Benoit Touchette, Ell, Jakub Steiner, Jehan, Johannes Matschke, Marek Dvoroznak, Michael Natterer, Klaus Staedtler</dc:title>
</cc:Agent>
</dc:contributor>
<dc:description>Enhanced, extended tango-art-libre for GIMP</dc:description>
@@ -57,17 +57,17 @@
inkscape:snap-bbox="true"
inkscape:snap-nodes="true"
showborder="false"
inkscape:current-layer="stock"
inkscape:window-maximized="0"
inkscape:window-y="27"
inkscape:window-x="0"
inkscape:cy="271.28704"
inkscape:cx="1029.8133"
inkscape:zoom="16"
inkscape:current-layer="layer3"
inkscape:window-maximized="1"
inkscape:window-y="24"
inkscape:window-x="65"
inkscape:cy="113.73969"
inkscape:cx="759.15978"
inkscape:zoom="1"
showgrid="true"
id="namedview88"
inkscape:window-height="704"
inkscape:window-width="1366"
inkscape:window-height="876"
inkscape:window-width="1535"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
@@ -50174,6 +50174,49 @@
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="blending modes"
style="display:inline">
<text
x="624.50372"
y="441.11642"
id="text10172-3-3"
sodipodi:linespacing="125%"
text-align="start"
line-height="125%"
font-weight="bold"
font-size="15"
style="font-weight:bold;font-size:15px;line-height:125%;font-family:'Droid Sans';text-align:start;display:inline;fill:#ffffff">
<tspan
sodipodi:role="line"
x="624.50372"
y="441.11642"
id="tspan20212-6">blending modes</tspan>
</text>
<g
id="gimp-mode-backdrop"
transform="translate(623,453.2294)">
<desc
id="desc5277">This is not a standalone icon, but is rather used as a backdrop against the blending mode icons from the symbolic theme. The color theme's makefile uses this icon, or the corresponding pre-rendered png, when auto-generating the color theme's blending mode icons.</desc>
<rect
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5395"
width="15"
height="15"
x="0.5"
y="0.5"
ry="2.5" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6734"
width="16"
height="16"
x="0"
y="0" />
</g>
</g>
<text
x="456.44839"
y="29.788048"

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 2.8 MiB

View File

@@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-mode-backdrop.svg">
<title
id="title9961">GIMP Mode Backdrop</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Mode Backdrop</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-mode-backdrop">
<desc
id="desc5277">This is not a standalone icon, but is rather used as a backdrop against the blending mode icons from the symbolic theme. The color theme's makefile uses this icon, or the corresponding pre-rendered png, when auto-generating the color theme's blending mode icons.</desc>
<rect
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5395"
width="15"
height="15"
x="0.5"
y="0.5"
ry="2.5" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6734"
width="16"
height="16"
x="0"
y="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -10,34 +10,34 @@ include $(top_srcdir)/icons/icon-list.mk
# As exceptions, we do not want to invert some icons.
# Just use these as-is: gimp-default-colors, gimp-toilet-paper.png.
12/gimp-default-colors.png: $(top_srcdir)/icons/Symbolic/12/gimp-default-colors.png
mkdir -p `dirname $@` && cp -f $< $@
$(AM_V_GEN) mkdir -p `dirname $@` && cp -f $< $@
scalable/gimp-default-colors.svg: ../Symbolic/scalable/gimp-default-colors.svg
mkdir -p `dirname $@` && cp -f $< $@
$(AM_V_GEN) mkdir -p `dirname $@` && cp -f $< $@
%/gimp-toilet-paper.png: $(top_srcdir)/icons/Symbolic/$(@D)/gimp-toilet-paper.png
mkdir -p `dirname $@` && cp -f $< $@
$(AM_V_GEN) mkdir -p `dirname $@` && cp -f $< $@
scalable/gimp-toilet-paper.svg: ../Symbolic/scalable/gimp-toilet-paper.svg
mkdir -p `dirname $@` && cp -f $< $@
$(AM_V_GEN) mkdir -p `dirname $@` && cp -f $< $@
# Other exceptions: inverted gimp-color-picker-white|black are generated
# from each other.
18/gimp-color-picker-black.png: $(top_srcdir)/icons/Symbolic/18/gimp-color-picker-white.png
$(MAKE_ICON)
scalable/gimp-color-picker-black.svg: $(top_builddir)/icons/Symbolic/scalable/gimp-color-picker-white.svg
mkdir -p scalable && $(top_builddir)/tools/invert-svg $< $@
18/gimp-color-picker-black.png: $(top_srcdir)/icons/Symbolic/18/gimp-color-picker-white.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
scalable/gimp-color-picker-black.svg: $(top_builddir)/icons/Symbolic/scalable/gimp-color-picker-white.svg $(top_builddir)/tools/invert-svg$(BUILD_EXEEXT)
$(AM_V_GEN) mkdir -p scalable && $(top_builddir)/tools/invert-svg $< $@
18/gimp-color-picker-white.png: $(top_srcdir)/icons/Symbolic/18/gimp-color-picker-black.png
$(MAKE_ICON)
scalable/gimp-color-picker-white.svg: $(top_builddir)/icons/Symbolic/scalable/gimp-color-picker-black.svg
mkdir -p scalable && $(top_builddir)/tools/invert-svg $< $@
18/gimp-color-picker-white.png: $(top_srcdir)/icons/Symbolic/18/gimp-color-picker-black.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
scalable/gimp-color-picker-white.svg: $(top_builddir)/icons/Symbolic/scalable/gimp-color-picker-black.svg $(top_builddir)/tools/invert-svg$(BUILD_EXEEXT)
$(AM_V_GEN) mkdir -p scalable && $(top_builddir)/tools/invert-svg $< $@
# Rule for all other scalable icons.
scalable/%.svg: ../Symbolic/scalable/%.svg $(top_builddir)/tools/invert-svg$(BUILD_EXEEXT)
mkdir -p scalable && \
$(AM_V_GEN) mkdir -p scalable && \
$(top_builddir)/tools/invert-svg$(BUILD_EXEEXT) $< $@
24/%.svg: $(top_srcdir)/icons/Symbolic/24/%.svg $(top_builddir)/tools/invert-svg$(BUILD_EXEEXT)
mkdir -p 24 && \
$(AM_V_GEN) mkdir -p 24 && \
$(top_builddir)/tools/invert-svg$(BUILD_EXEEXT) $< $@
# We are basically repeating the same rule for every subdirectory, which
@@ -50,44 +50,44 @@ scalable/%.svg: ../Symbolic/scalable/%.svg $(top_builddir)/tools/invert-svg$(BUI
MAKE_ICON = mkdir -p `dirname $@`; GEGL_USE_OPENCL=no GEGL_SWAP=ram $(GEGL) $< -o $@ -- gegl:invert-gamma
12/%.png: $(top_srcdir)/icons/Symbolic/12/%.png
$(MAKE_ICON)
12/%.png: $(top_srcdir)/icons/Symbolic/12/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
16/%.png: $(top_srcdir)/icons/Symbolic/16/%.png
$(MAKE_ICON)
16/%.png: $(top_srcdir)/icons/Symbolic/16/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
18/%.png: $(top_srcdir)/icons/Symbolic/18/%.png
$(MAKE_ICON)
18/%.png: $(top_srcdir)/icons/Symbolic/18/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
20/%.png: $(top_srcdir)/icons/Symbolic/20/%.png
$(MAKE_ICON)
20/%.png: $(top_srcdir)/icons/Symbolic/20/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
22/%.png: $(top_srcdir)/icons/Symbolic/22/%.png
$(MAKE_ICON)
22/%.png: $(top_srcdir)/icons/Symbolic/22/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
24/%.png: $(top_srcdir)/icons/Symbolic/24/%.png
$(MAKE_ICON)
24/%.png: $(top_srcdir)/icons/Symbolic/24/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
32/%.png: $(top_srcdir)/icons/Symbolic/32/%.png
$(MAKE_ICON)
32/%.png: $(top_srcdir)/icons/Symbolic/32/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
48/%.png: $(top_srcdir)/icons/Symbolic/48/%.png
$(MAKE_ICON)
48/%.png: $(top_srcdir)/icons/Symbolic/48/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
64/%.png: $(top_srcdir)/icons/Symbolic/64/%.png
$(MAKE_ICON)
64/%.png: $(top_srcdir)/icons/Symbolic/64/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
96/%.png: $(top_srcdir)/icons/Symbolic/96/%.png
$(MAKE_ICON)
96/%.png: $(top_srcdir)/icons/Symbolic/96/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
128/%.png: $(top_srcdir)/icons/Symbolic/128/%.png
$(MAKE_ICON)
128/%.png: $(top_srcdir)/icons/Symbolic/128/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
192/%.png: $(top_srcdir)/icons/Symbolic/192/%.png
$(MAKE_ICON)
192/%.png: $(top_srcdir)/icons/Symbolic/192/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
256/%.png: $(top_srcdir)/icons/Symbolic/256/%.png
$(MAKE_ICON)
256/%.png: $(top_srcdir)/icons/Symbolic/256/%.png Makefile.am
$(AM_V_GEN) $(MAKE_ICON)
all_icons = \
$(icons12_images) \

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 549 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 655 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 567 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 591 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 503 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 650 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 669 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 535 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 B

View File

@@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-addition-mode.svg">
<title
id="title10744">GIMP Addition Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Addition Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1036.3622)"
style="display:inline;opacity:1"
id="gimp-addition-mode">
<g
id="g9915">
<path
style="fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3,1044.3622 10,0"
id="path8034"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 8,1039.3622 0,10"
id="path8045"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<rect
y="1036.3622"
x="0"
height="16"
width="16"
id="rect9919"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1,107 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-behind-mode.svg">
<title
id="title9961">GIMP Behind Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Behind Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-behind-mode">
<g
id="g23242">
<circle
style="opacity:1;fill:none;fill-opacity:1;stroke:#bebebe;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4143"
cx="8"
cy="7.9999824"
r="3" />
<path
inkscape:connector-curvature="0"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 3.9785156,1.9804688 A 2.0002,2.0002 0 0 0 2.5859374,5.4160156 L 3.7382812,6.5683594 A 4.5,4.5 0 0 1 6.5683594,3.7402344 L 5.4140625,2.5859375 A 2.0002,2.0002 0 0 0 3.9785156,1.9804688 Z m 8.2832034,7.453125 A 4.5,4.5 0 0 1 9.4296875,12.259766 l 1.1562505,1.15625 a 2.0004767,2.0004767 0 1 0 2.828124,-2.830078 L 12.261719,9.4335938 Z"
id="path4219" />
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect23246"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-burn-mode.svg">
<title
id="title10744">GIMP Burn Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.3125"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Burn Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-burn-mode"
transform="matrix(1,0,0,-1,0,16)">
<g
id="g4960">
<path
style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1,8 a 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 L 13,8 13,9 3,9 3,8 1,8 Z m 7,2.5 A 1.5,1.5 0 0 1 9.5,12 1.5,1.5 0 0 1 8,13.5 1.5,1.5 0 0 1 6.5,12 1.5,1.5 0 0 1 8,10.5 Z"
id="path4892"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 8,2.5 A 1.5,1.5 0 0 0 6.5,4 1.5,1.5 0 0 0 8,5.5 1.5,1.5 0 0 0 9.5,4 1.5,1.5 0 0 0 8,2.5 Z M 3,7 3,8 13,8 13,7 3,7 Z"
id="path6852-4" />
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect4964"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-color-erase-mode.svg">
<title
id="title9961">GIMP Color Erase Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Color Erase Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-color-erase-mode">
<g
id="g24572">
<g
id="g24564">
<path
inkscape:connector-curvature="0"
id="path24520"
d="m 2,14 2,0"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path24522"
d="m 8,14 6,0"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g24568">
<path
inkscape:connector-curvature="0"
id="path24524"
d="M 6,13 3,10 5,8 8,11 Z"
style="opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path24526"
d="m 6,7 3,3 5,-5 0,-3 -3,0 z"
style="opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect24580"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-color-mode.svg">
<title
id="title10744">GIMP Color (HSV) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.3125"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Color (HSV) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-color-mode">
<g
id="g4914">
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#bebebe;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6157"
width="13"
height="13"
x="1.5"
y="1.499983"
ry="1.5" />
<g
style="font-style:normal;font-weight:normal;font-size:8.75px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#bebebe;fill-opacity:0.94117647;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text6320">
<path
d="m 2.6456678,5.0344372 1.5274048,0 0,2.2573852 2.2534179,0 0,-2.2573852 1.5274048,0 0,5.9231568 -1.5274048,0 0,-2.5112916 -2.2534179,0 0,2.5112916 -1.5274048,0 0,-5.9231568 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.125px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#bebebe;fill-opacity:0.94117647"
id="path4910" />
<path
d="m 12.965538,5.2208996 0,1.2536621 Q 12.477562,6.256361 12.01339,6.145277 11.549217,6.034193 11.13662,6.034193 q -0.547486,0 -0.809326,0.1507569 -0.261841,0.1507568 -0.261841,0.4681396 0,0.2380371 0.17456,0.3729248 0.178528,0.1309204 0.642701,0.2261353 L 11.533348,7.38307 q 0.987854,0.1983642 1.404419,0.6030273 0.416565,0.4046631 0.416565,1.1505127 0,0.979919 -0.583191,1.459961 -0.579223,0.476074 -1.773376,0.476074 -0.563355,0 -1.1306764,-0.107117 Q 9.2997668,10.858412 8.732445,10.648146 l 0,-1.289368 q 0.5673218,0.3015137 1.0949707,0.4562378 0.5316163,0.1507568 1.0235593,0.1507568 0.499878,0 0.765686,-0.1666259 0.265808,-0.166626 0.265808,-0.4760743 0,-0.2777099 -0.182495,-0.4284668 Q 11.521446,8.7438488 10.981896,8.6248302 L 10.39077,8.4939098 Q 9.5020983,8.3034801 9.0895007,7.8869152 8.6808703,7.4703503 8.6808703,6.7641735 q 0,-0.8847046 0.5712891,-1.3607788 0.571289,-0.4760742 1.6424556,-0.4760742 0.487976,0 1.003724,0.075378 0.515747,0.071411 1.067199,0.2182007 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.125px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#bebebe;fill-opacity:0.94117647"
id="path4912" />
</g>
</g>
<rect
ry="1.5"
y="0"
x="0"
height="16"
width="16"
id="rect4920"
style="opacity:1;fill:none;fill-opacity:0;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-darken-only-mode.svg">
<title
id="title10744">GIMP Darken Only Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Darken Only Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1036.3622)"
style="display:inline;opacity:1"
id="gimp-darken-only-mode">
<g
id="g10536">
<path
style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 9,1038.8622 -4.5,11 -2,0 4.5,-11 z"
id="path6612-3-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7,1038.8622 4.5,11 2,0 -4.5,-11 z"
id="path6612-3-5-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
<rect
y="1036.3622"
x="0"
height="16"
width="16"
id="rect10540"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-difference-mode.svg">
<title
id="title10744">GIMP Difference Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Difference Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-difference-mode">
<g
id="g17046">
<path
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3,8.0000004 10,0"
id="path8034-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<circle
style="opacity:1;fill:none;fill-opacity:1;stroke:#bebebe;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path5414"
cx="8"
cy="7.9999828"
r="5" />
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect17050"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,286 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-dissolve-mode.svg">
<title
id="title9961">GIMP Dissolve Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Dissolve Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(0,-1036.3622)"
id="gimp-dissolve-mode">
<g
id="g22380">
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967"
width="1"
height="2"
x="3"
y="1038.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6"
width="1"
height="2"
x="3"
y="1038.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5"
width="1"
height="2"
x="5"
y="1040.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-4"
width="1"
height="2"
x="7"
y="1038.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-7"
width="1"
height="2"
x="7"
y="1038.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-6"
width="1"
height="2"
x="9"
y="1040.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-5"
width="1"
height="2"
x="11"
y="1038.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-6"
width="1"
height="2"
x="11"
y="1038.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-9"
width="1"
height="2"
x="13"
y="1040.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-8"
width="1"
height="2"
x="3"
y="1042.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-4"
width="1"
height="2"
x="3"
y="1042.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-3"
width="1"
height="2"
x="5"
y="1044.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-4-1"
width="1"
height="2"
x="7"
y="1042.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-7-4"
width="1"
height="2"
x="7"
y="1042.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-6-9"
width="1"
height="2"
x="9"
y="1044.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-5-2"
width="1"
height="2"
x="11"
y="1042.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-6-0"
width="1"
height="2"
x="11"
y="1042.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-9-6"
width="1"
height="2"
x="13"
y="1044.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-2"
width="1"
height="2"
x="3"
y="1046.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-66"
width="1"
height="2"
x="3"
y="1046.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-4"
width="1"
height="2"
x="5"
y="1048.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-4-9"
width="1"
height="2"
x="7"
y="1046.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-7-5"
width="1"
height="2"
x="7"
y="1046.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-6-0"
width="1"
height="2"
x="9"
y="1048.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-5-4"
width="1"
height="2"
x="11"
y="1046.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-6-8"
width="1"
height="2"
x="11"
y="1046.3622" />
<rect
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4967-6-5-9-7"
width="1"
height="2"
x="13"
y="1048.3622" />
</g>
<rect
y="1036.3622"
x="0"
height="16"
width="16"
id="rect22409"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,117 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-divide-mode.svg">
<title
id="title10744">GIMP Divide Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Divide Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1036.3622)"
style="display:inline;opacity:1"
id="gimp-divide-mode">
<g
id="g20972">
<path
style="fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3,1044.3622 10,0"
id="path6852"
inkscape:connector-curvature="0" />
<g
id="g20968">
<circle
r="1.5"
cy="1040.3622"
cx="8"
id="path6854"
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<circle
r="1.5"
cy="1048.3622"
cx="8"
id="path6854-0"
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<rect
y="1036.3622"
x="0"
height="16"
width="16"
id="rect20978"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-dodge-mode.svg">
<title
id="title10744">GIMP Dodge Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.3125"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Dodge Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-dodge-mode">
<g
id="g4960">
<path
style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1,8 a 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 L 13,8 13,9 3,9 3,8 1,8 Z m 7,2.5 A 1.5,1.5 0 0 1 9.5,12 1.5,1.5 0 0 1 8,13.5 1.5,1.5 0 0 1 6.5,12 1.5,1.5 0 0 1 8,10.5 Z"
id="path4892"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 8,2.5 A 1.5,1.5 0 0 0 6.5,4 1.5,1.5 0 0 0 8,5.5 1.5,1.5 0 0 0 9.5,4 1.5,1.5 0 0 0 8,2.5 Z M 3,7 3,8 13,8 13,7 3,7 Z"
id="path6852-4" />
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect4964"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-grain-extract-mode.svg">
<title
id="title10744">GIMP Grain Extract Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Grain Extract Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-grain-extract-mode">
<g
id="g19044">
<circle
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path16228"
cx="8"
cy="7.9999828"
r="2" />
<g
id="g19038">
<path
inkscape:connector-curvature="0"
id="path18958"
d="M 13,7 13,3 9,3 Z"
style="fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path18958-6"
d="M 3,7 3,3 7,3 Z"
style="fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path18958-1"
d="m 13,9 0,4 -4,0 z"
style="fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path18958-6-2"
d="m 3,9 0,4 4,0 z"
style="fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect19052"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-grain-merge-mode.svg">
<title
id="title10744">GIMP Grain Merge Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Grain Merge Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-grain-merge-mode">
<path
id="path19727"
d="M 7,3 3,7 3,9 7,13 9,13 13,9 13,7 9,3 7,3 Z M 8,6 A 2,2 0 0 1 10,8 2,2 0 0 1 8,10 2,2 0 0 1 6,8 2,2 0 0 1 8,6 Z"
style="fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
<rect
y="0"
x="0"
height="16"
width="16"
id="rect20360"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,160 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-hardlight-mode.svg">
<title
id="title10744">GIMP Hard Light Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Hard Light Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-hardlight-mode">
<g
id="g16369">
<circle
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4276"
cx="8"
cy="7.9999828"
r="3" />
<g
id="g16359">
<path
inkscape:transform-center-y="-5.0010202"
inkscape:connector-curvature="0"
id="path4278"
d="M 8,4 8,2"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-x="3.5362553"
inkscape:transform-center-y="-3.5362202"
inkscape:connector-curvature="0"
id="path4278-9"
d="M 5.1708515,5.1719 3.7566379,3.7577"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-x="5.0009954"
inkscape:transform-center-y="-2.02e-05"
inkscape:connector-curvature="0"
id="path4278-1"
d="m 3.9989998,8.001 -1.9999904,0"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-x="3.536252"
inkscape:transform-center-y="3.5361798"
inkscape:connector-curvature="0"
id="path4278-9-2"
d="M 5.1708513,10.8301 3.7566446,12.2443"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-x="5.105e-05"
inkscape:transform-center-y="5.0009798"
inkscape:connector-curvature="0"
id="path4278-7"
d="m 7.9999513,12.002 -4.8e-6,2"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-x="-3.5361906"
inkscape:transform-center-y="3.5362798"
inkscape:connector-curvature="0"
id="path4278-9-0"
d="m 10.829085,10.8302 1.414211,1.4142"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-x="-5.0009916"
inkscape:transform-center-y="7.98e-05"
inkscape:connector-curvature="0"
id="path4278-1-9"
d="m 12.000997,8.0011 1.999989,0"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:transform-center-x="-3.5362916"
inkscape:transform-center-y="-3.5362202"
inkscape:connector-curvature="0"
id="path4278-9-2-3"
d="M 10.829189,5.1719 12.243394,3.7577"
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect16381"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1,111 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-hue-mode.svg">
<title
id="title10744">GIMP Hue (HSV) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="7.9891745"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Hue (HSV) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-hue-mode">
<g
id="g10896">
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#bebebe;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6157"
width="13"
height="13"
x="1.5"
y="1.499983"
ry="1.5" />
<g
style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text6163">
<path
d="m 3.916748,3.4437084 2.3498536,0 0,3.4729004 3.4667968,0 0,-3.4729004 2.3498536,0 0,9.1125486 -2.3498536,0 0,-3.8635251 -3.4667968,0 0,3.8635251 -2.3498536,0 0,-9.1125486 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.5px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#bebebe;fill-opacity:1"
id="path10894" />
</g>
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect10901"
style="opacity:1;fill:none;fill-opacity:0;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-lch-chroma-mode.svg">
<title
id="title10744">GIMP Chroma (LCH) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.3125"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Chroma (LCH) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-lch-chroma-mode"
transform="translate(0,-10e-6)">
<path
id="rect6157-62"
d="M 3,1 C 1.892,1 1,1.892 1,3 l 0,10 c 0,1.108 0.892,2 2,2 l 10,0 c 1.108,0 2,-0.892 2,-2 L 15,3 C 15,1.892 14.108,1 13,1 L 3,1 Z m 5.7226562,2.2734375 c 0.5086264,0 0.9969076,0.05599 1.4648438,0.1699219 0.467936,0.1139323 0.918294,0.2840169 1.349609,0.5078125 l 0,1.8847656 C 11.101725,5.5388997 10.673177,5.3219401 10.25,5.1835938 9.8268229,5.0452474 9.3800456,4.9765625 8.9121094,4.9765625 c -0.8382162,0 -1.4964193,0.2675781 -1.9765625,0.8046875 -0.4801433,0.5371094 -0.7207031,1.2786458 -0.7207031,2.2226562 0,0.9399415 0.2405598,1.6777344 0.7207031,2.2148438 0.4801432,0.537109 1.1383463,0.804688 1.9765625,0.804688 0.4679362,0 0.9147135,-0.06869 1.3378906,-0.207032 0.423177,-0.138346 0.851725,-0.355306 1.287109,-0.652344 l 0,1.884766 c -0.431315,0.223796 -0.881673,0.39388 -1.349609,0.507813 -0.4679362,0.113932 -0.9562174,0.169922 -1.4648438,0.169921 -1.5177408,0 -2.7203776,-0.423177 -3.6074218,-1.269531 C 4.2281901,10.606608 3.7851562,9.456543 3.7851562,8.0039062 c 0,-1.4567057 0.4430339,-2.6087239 1.3300782,-3.4550781 0.8870442,-0.8504232 2.089681,-1.2753906 3.6074218,-1.2753906 z"
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<rect
ry="1.8571399"
y="0"
x="0"
height="16"
width="16"
id="rect10633"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-lch-color-mode.svg">
<title
id="title10744">GIMP Color (LCH) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.3125"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Color (LCH) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-lch-color-mode">
<path
id="rect6157"
d="M 3 1 C 1.892 1 1 1.892 1 3 L 1 13 C 1 14.108 1.892 15 3 15 L 13 15 C 14.108 15 15 14.108 15 13 L 15 3 C 15 1.892 14.108 1 13 1 L 3 1 z M 11.619141 4.9277344 C 11.949748 4.9277344 12.266155 4.9650065 12.570312 5.0390625 C 12.874472 5.1131185 13.166911 5.2217204 13.447266 5.3671875 L 13.447266 6.59375 C 13.164266 6.4006755 12.886393 6.259847 12.611328 6.1699219 C 12.336263 6.0799967 12.046345 6.0351563 11.742188 6.0351562 C 11.197347 6.0351562 10.769125 6.2094727 10.457031 6.5585938 C 10.144938 6.9077149 9.9882814 7.3883464 9.9882812 8.0019531 C 9.9882812 8.6129151 10.144938 9.0922852 10.457031 9.4414062 C 10.769125 9.7905274 11.197347 9.9648438 11.742188 9.9648438 C 12.046345 9.9648437 12.336263 9.9200033 12.611328 9.8300781 C 12.886393 9.740153 13.164266 9.5993245 13.447266 9.40625 L 13.447266 10.632812 C 13.166911 10.77828 12.874472 10.886881 12.570312 10.960938 C 12.266154 11.034993 11.949748 11.072266 11.619141 11.072266 C 10.632609 11.072266 9.8500166 10.798177 9.2734375 10.248047 C 8.6968588 9.6952717 8.4082031 8.946167 8.4082031 8.0019531 C 8.4082031 7.0550945 8.6968588 6.3059896 9.2734375 5.7558594 C 9.8500166 5.2030843 10.632609 4.9277344 11.619141 4.9277344 z M 2.5527344 5.0351562 L 4.0800781 5.0351562 L 4.0800781 7.2910156 L 6.3339844 7.2910156 L 6.3339844 5.0351562 L 7.8613281 5.0351562 L 7.8613281 10.957031 L 6.3339844 10.957031 L 6.3339844 8.4472656 L 4.0800781 8.4472656 L 4.0800781 10.957031 L 2.5527344 10.957031 L 2.5527344 5.0351562 z "
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="0"
x="0"
height="16"
width="16"
id="rect12571"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-lch-hue-mode.svg">
<title
id="title10744">GIMP Hue (LCH) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.3125"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Hue (LCH) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1036.3622)"
style="display:inline;opacity:1"
id="gimp-lch-hue-mode">
<path
inkscape:connector-curvature="0"
id="rect6157-3"
transform="translate(0,1036.3622)"
d="M 3,1 C 1.892,1 1,1.892 1,3 l 0,10 c 0,1.108 0.892,2 2,2 l 10,0 c 1.108,0 2,-0.892 2,-2 L 15,3 C 15,1.892 14.108,1 13,1 L 3,1 Z m 0.9160156,2.4433594 2.3496094,0 0,3.4726562 3.46875,0 0,-3.4726562 2.349609,0 0,9.1132816 -2.349609,0 0,-3.8632816 -3.46875,0 0,3.8632816 -2.3496094,0 0,-9.1132816 z"
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
ry="1.8571399"
y="1036.3622"
x="0"
height="16"
width="16"
id="rect24354"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-lch-lightness-mode.svg">
<title
id="title10744">GIMP Lightness (LCH) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.3125"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Lightness (LCH) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-lch-lightness-mode"
transform="translate(0,-1e-5)">
<path
id="rect6157-7"
d="M 3,1 C 1.892,1 1,1.892 1,3 l 0,10 c 0,1.108 0.892,2 2,2 l 10,0 c 1.108,0 2,-0.892 2,-2 L 15,3 C 15,1.892 14.108,1 13,1 L 3,1 Z m 1.7617188,2.4433594 2.3496093,0 0,7.3359376 4.1269529,0 0,1.777344 -6.4765622,0 0,-9.1132816 z"
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<rect
ry="1.8571399"
y="0"
x="0"
height="16"
width="16"
id="rect11242"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-lighten-only-mode.svg">
<title
id="title9961">GIMP Lighten Only Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Lighten Only Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-lighten-only-mode">
<g
id="g25317">
<path
style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 9,13.5 -4.5,-11 -2,0 4.5,11 z"
id="path6612-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7,13.5 4.5,-11 2,0 -4.5,11 z"
id="path6612-3-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
<rect
y="0"
x="0"
height="16"
width="16"
id="rect25321"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1,107 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-multiply-mode.svg">
<title
id="title10744">GIMP Multiply Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Multiply Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1036.3622)"
style="display:inline;opacity:1"
id="gimp-multiply-mode">
<g
id="g11159">
<path
style="fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4,1040.3622 8,8"
id="path5578"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4,1048.3622 8,-8"
id="path5578-6"
inkscape:connector-curvature="0" />
</g>
<rect
y="1036.3622"
x="0"
height="16"
width="16"
id="rect11163"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,107 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-new-overlay-mode.svg">
<title
id="title10744">GIMP Overlay Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="2.7280108"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Overlay Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-new-overlay-mode"
transform="matrix(0,-1,1,0,0,16)">
<g
id="g18725">
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="M 4.7070312,3.293 3.2929688,4.707 6.5859375,8 9.4140625,8 12.707031,4.707 11.292969,3.293 8,6.5859 4.7070312,3.293 Z"
id="path5578-5"
inkscape:connector-curvature="0" />
<path
style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 1,8 a 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 L 9.4140625,8 12.707031,11.292969 11.292969,12.707031 8,9.4140625 4.7070312,12.707031 3.2929688,11.292969 6.5859375,8 1,8 Z"
id="path5532"
inkscape:connector-curvature="0" />
</g>
<rect
transform="scale(1,-1)"
y="-16"
x="0"
height="16"
width="16"
id="rect15029"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.6 KiB

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-saturation-mode.svg">
<title
id="title10744">GIMP Saturation (HSV) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="7.9891746"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Saturation (HSV) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-saturation-mode">
<g
id="g11494">
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#bebebe;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6157"
width="13"
height="13"
x="1.5"
y="1.499983"
ry="1.5" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="4"
y="12.999983"
id="text6159"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6161"
x="4"
y="12.999983" /></text>
<g
style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text6163">
<path
d="m 10.996826,3.7244701 0,1.928711 Q 10.246094,5.3174877 9.5319824,5.1465893 8.8178711,4.9756908 8.1831055,4.9756908 q -0.8422852,0 -1.2451172,0.2319336 -0.4028321,0.2319336 -0.4028321,0.7202149 0,0.3662109 0.2685547,0.5737304 0.2746582,0.2014161 0.9887696,0.3479004 L 8.793457,7.0508862 q 1.519775,0.3051757 2.160645,0.9277343 0.640869,0.6225586 0.640869,1.7700196 0,1.5075679 -0.897217,2.2460939 -0.8911134,0.732422 -2.7282716,0.732422 -0.8666992,0 -1.7395019,-0.164795 Q 5.3571777,12.397566 4.484375,12.07408 l 0,-1.983643 q 0.8728027,0.463867 1.6845703,0.701904 0.8178711,0.231934 1.574707,0.231934 0.769043,0 1.1779786,-0.256348 0.4089355,-0.256347 0.4089355,-0.732422 0,-0.4272458 -0.2807617,-0.6591794 Q 8.7751465,9.144392 7.9450684,8.9612865 L 7.0356445,8.7598705 Q 5.668457,8.4669018 5.0336914,7.8260326 4.4050293,7.1851635 4.4050293,6.0987377 q 0,-1.361084 0.8789062,-2.0935058 Q 6.1628418,3.27281 7.810791,3.27281 q 0.7507324,0 1.5441895,0.1159668 0.7934575,0.1098633 1.6418455,0.3356933 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.5px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#bebebe;fill-opacity:1"
id="path11492" />
</g>
</g>
<rect
ry="1.5"
y="0"
x="0"
height="16"
width="16"
id="rect11501"
style="opacity:1;fill:none;fill-opacity:0;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-screen-mode.svg">
<title
id="title9961">GIMP Screen Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Screen Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
style="display:inline"
id="gimp-screen-mode">
<path
id="path6237"
d="M 8,1 A 7,7 0 0 0 1,8 7,7 0 0 0 8,15 7,7 0 0 0 15,8 7,7 0 0 0 8,1 Z M 4.7070312,3.2929688 8,6.5859375 11.292969,3.2929688 12.707031,4.7070312 9.4140625,8 12.707031,11.292969 11.292969,12.707031 8,9.4140625 4.7070312,12.707031 3.2929688,11.292969 6.5859375,8 3.2929688,4.7070312 4.7070312,3.2929688 Z"
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<rect
y="0"
x="0"
height="16"
width="16"
id="rect29787"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-softlight-mode.svg">
<title
id="title10744">GIMP Soft Light Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Soft Light Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1036.3622)"
style="display:inline;opacity:1"
id="gimp-softlight-mode">
<path
inkscape:transform-center-y="0.046168628"
inkscape:transform-center-x="-0.39434163"
inkscape:connector-curvature="0"
id="path4976"
d="m 8.9910446,1038.4519 a 5.5,5.5 0 0 1 1.5296044,2.9273 5.5,5.5 0 0 1 -4.4613772,6.3715 5.5,5.5 0 0 1 -3.2709739,-0.4307 6,6 0 0 0 6.2539378,2.951 6,6 0 0 0 4.8669573,-6.9507 6,6 0 0 0 -4.9181484,-4.8684 z"
style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="1036.3622"
x="0"
height="16"
width="16"
id="rect15653"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-subtract-mode.svg">
<title
id="title10744">GIMP Subtract Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Subtract Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
transform="translate(0,-1036.3622)"
style="display:inline;opacity:1"
id="gimp-subtract-mode">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path8034-5"
d="m 3,1044.3622 10,0"
style="fill:none;fill-rule:evenodd;stroke:#bebebe;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="1036.3622"
x="0"
height="16"
width="16"
id="rect17664"
style="opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,123 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg9411"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="gimp-value-mode.svg">
<title
id="title10744">GIMP Value (HSV) Mode</title>
<defs
id="defs9413" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="46.1875"
inkscape:cx="8"
inkscape:cy="8"
inkscape:document-units="px"
inkscape:current-layer="svg9411"
showgrid="true"
units="px"
inkscape:window-width="1535"
inkscape:window-height="876"
inkscape:window-x="65"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
empspacing="4"
type="xygrid"
id="grid9959" />
</sodipodi:namedview>
<metadata
id="metadata9416">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>GIMP Value (HSV) Mode</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Ell</dc:title>
</cc:Agent>
</dc:creator>
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
<dc:date />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="gimp-value-mode">
<g
id="g12732">
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#bebebe;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6157"
width="13"
height="13"
x="1.5"
y="1.499983"
ry="1.5" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="4"
y="12.999983"
id="text6159"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan6161"
x="4"
y="12.999983" /></text>
<g
style="font-style:normal;font-weight:normal;font-size:12.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text6163">
<path
d="m 3.223999,3.4437084 2.3620606,0 2.4169922,6.7260746 2.4108882,-6.7260746 2.362061,0 -3.3752442,9.1125486 -2.8015136,0 L 3.223999,3.4437084 Z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:12.5px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#bebebe;fill-opacity:1"
id="path12730" />
</g>
</g>
<rect
ry="1.5"
y="0"
x="0"
height="16"
width="16"
id="rect12739"
style="opacity:1;fill:none;fill-opacity:0;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 1.4 MiB

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@@ -60,7 +60,10 @@ scalable_images = \
scalable/gtk-select-font.svg \
scalable/gtk-yes.svg \
\
scalable/gimp-addition-mode.svg \
scalable/gimp-anchor.svg \
scalable/gimp-behind-mode.svg \
scalable/gimp-burn-mode.svg \
scalable/gimp-cap-butt.svg \
scalable/gimp-cap-round.svg \
scalable/gimp-cap-square.svg \
@@ -78,6 +81,8 @@ scalable_images = \
scalable/gimp-close.svg \
scalable/gimp-close-all.svg \
scalable/gimp-colormap.svg \
scalable/gimp-color-erase-mode.svg \
scalable/gimp-color-mode.svg \
scalable/gimp-color-picker-black.svg \
scalable/gimp-color-picker-gray.svg \
scalable/gimp-color-picker-white.svg \
@@ -96,14 +101,19 @@ scalable_images = \
scalable/gimp-cursor.svg \
scalable/gimp-curve-free.svg \
scalable/gimp-curve-smooth.svg \
scalable/gimp-darken-only-mode.svg \
scalable/gimp-default-colors.svg \
scalable/gimp-device-status.svg \
scalable/gimp-difference-mode.svg \
scalable/gimp-display-filter-colorblind.svg \
scalable/gimp-display-filter-contrast.svg \
scalable/gimp-display-filter-gamma.svg \
scalable/gimp-display-filter-lcms.svg \
scalable/gimp-display-filter-proof.svg \
scalable/gimp-display-filter.svg \
scalable/gimp-dissolve-mode.svg \
scalable/gimp-divide-mode.svg \
scalable/gimp-dodge-mode.svg \
scalable/gimp-duplicate.svg \
scalable/gimp-dynamics.svg \
scalable/gimp-error.svg \
@@ -123,6 +133,8 @@ scalable_images = \
scalable/gimp-gradient-spiral-anticlockwise.svg \
scalable/gimp-gradient-spiral-clockwise.svg \
scalable/gimp-gradient-square.svg \
scalable/gimp-grain-extract-mode.svg \
scalable/gimp-grain-merge-mode.svg \
scalable/gimp-gravity-east.svg \
scalable/gimp-gravity-north-east.svg \
scalable/gimp-gravity-north.svg \
@@ -133,6 +145,7 @@ scalable_images = \
scalable/gimp-gravity-west.svg \
scalable/gimp-grid.svg \
scalable/gimp-group-layer.svg \
scalable/gimp-hardlight-mode.svg \
scalable/gimp-hcenter.svg \
scalable/gimp-hchain-broken.svg \
scalable/gimp-hchain.svg \
@@ -140,6 +153,7 @@ scalable_images = \
scalable/gimp-histogram-linear.svg \
scalable/gimp-histogram-logarithmic.svg \
scalable/gimp-histogram.svg \
scalable/gimp-hue-mode.svg \
scalable/gimp-images.svg \
scalable/gimp-image.svg \
scalable/gimp-image-open.svg \
@@ -155,7 +169,12 @@ scalable_images = \
scalable/gimp-layers.svg \
scalable/gimp-layer.svg \
scalable/gimp-layer-to-imagesize.svg \
scalable/gimp-lch-chroma-mode.svg \
scalable/gimp-lch-color-mode.svg \
scalable/gimp-lch-hue-mode.svg \
scalable/gimp-lch-lightness-mode.svg \
scalable/gimp-letter-spacing.svg \
scalable/gimp-lighten-only-mode.svg \
scalable/gimp-line-spacing.svg \
scalable/gimp-linked.svg \
scalable/gimp-list.svg \
@@ -163,7 +182,9 @@ scalable_images = \
scalable/gimp-menu-right.svg \
scalable/gimp-merge-down.svg \
scalable/gimp-move-to-screen.svg \
scalable/gimp-multiply-mode.svg \
scalable/gimp-navigation.svg \
scalable/gimp-new-overlay-mode.svg \
scalable/gimp-paste-as-new.svg \
scalable/gimp-paste-into.svg \
scalable/gimp-path.svg \
@@ -221,7 +242,9 @@ scalable_images = \
scalable/gimp-rotate-270.svg \
scalable/gimp-rotate-90.svg \
scalable/gimp-sample-point.svg \
scalable/gimp-saturation-mode.svg \
scalable/gimp-scale.svg \
scalable/gimp-screen-mode.svg \
scalable/gimp-selection.svg \
scalable/gimp-selection-add.svg \
scalable/gimp-selection-all.svg \
@@ -239,6 +262,8 @@ scalable_images = \
scalable/gimp-shape-diamond.svg \
scalable/gimp-shape-square.svg \
scalable/gimp-shred.svg \
scalable/gimp-softlight-mode.svg \
scalable/gimp-subtract-mode.svg \
scalable/gimp-swap-colors.svg \
scalable/gimp-symmetry.svg \
scalable/gimp-template.svg \
@@ -301,6 +326,7 @@ scalable_images = \
scalable/gimp-transparency.svg \
scalable/gimp-undo-history.svg \
scalable/gimp-user-manual.svg \
scalable/gimp-value-mode.svg \
scalable/gimp-vcenter.svg \
scalable/gimp-vchain.svg \
scalable/gimp-vchain-broken.svg \
@@ -541,7 +567,10 @@ icons16_images = \
16/gtk-select-font.png \
16/gtk-yes.png \
\
16/gimp-addition-mode.png \
16/gimp-anchor.png \
16/gimp-behind-mode.png \
16/gimp-burn-mode.png \
16/gimp-cap-butt.png \
16/gimp-cap-round.png \
16/gimp-cap-square.png \
@@ -557,6 +586,8 @@ icons16_images = \
16/gimp-char-picker.png \
16/gimp-clipboard.png \
16/gimp-close-all.png \
16/gimp-color-erase-mode.png \
16/gimp-color-mode.png \
16/gimp-color-pick-from-screen.png \
16/gimp-color-cmyk.png \
16/gimp-color-triangle.png \
@@ -573,13 +604,18 @@ icons16_images = \
16/gimp-cursor.png \
16/gimp-curve-free.png \
16/gimp-curve-smooth.png \
16/gimp-darken-only-mode.png \
16/gimp-device-status.png \
16/gimp-difference-mode.png \
16/gimp-display-filter-colorblind.png \
16/gimp-display-filter-contrast.png \
16/gimp-display-filter-gamma.png \
16/gimp-display-filter-lcms.png \
16/gimp-display-filter-proof.png \
16/gimp-display-filter.png \
16/gimp-dissolve-mode.png \
16/gimp-divide-mode.png \
16/gimp-dodge-mode.png \
16/gimp-duplicate.png \
16/gimp-dynamics.png \
16/gimp-error.png \
@@ -599,11 +635,15 @@ icons16_images = \
16/gimp-gradient-spiral-anticlockwise.png \
16/gimp-gradient-spiral-clockwise.png \
16/gimp-gradient-square.png \
16/gimp-grain-extract-mode.png \
16/gimp-grain-merge-mode.png \
16/gimp-grid.png \
16/gimp-group-layer.png \
16/gimp-hardlight-mode.png \
16/gimp-histogram-linear.png \
16/gimp-histogram-logarithmic.png \
16/gimp-histogram.png \
16/gimp-hue-mode.png \
16/gimp-image.png \
16/gimp-images.png \
16/gimp-image-open.png \
@@ -619,10 +659,17 @@ icons16_images = \
16/gimp-layer-to-imagesize.png \
16/gimp-layer.png \
16/gimp-layers.png \
16/gimp-lch-chroma-mode.png \
16/gimp-lch-color-mode.png \
16/gimp-lch-hue-mode.png \
16/gimp-lch-lightness-mode.png \
16/gimp-lighten-only-mode.png \
16/gimp-list.png \
16/gimp-merge-down.png \
16/gimp-move-to-screen.png \
16/gimp-multiply-mode.png \
16/gimp-navigation.png \
16/gimp-new-overlay-mode.png \
16/gimp-paste-as-new.png \
16/gimp-paste-into.png \
16/gimp-path-stroke.png \
@@ -662,7 +709,9 @@ icons16_images = \
16/gimp-rotate-270.png \
16/gimp-rotate-90.png \
16/gimp-sample-point.png \
16/gimp-saturation-mode.png \
16/gimp-scale.png \
16/gimp-screen-mode.png \
16/gimp-selection-add.png \
16/gimp-selection-all.png \
16/gimp-selection-border.png \
@@ -680,6 +729,8 @@ icons16_images = \
16/gimp-shape-diamond.png \
16/gimp-shape-square.png \
16/gimp-shred.png \
16/gimp-softlight-mode.png \
16/gimp-subtract-mode.png \
16/gimp-symmetry.png \
16/gimp-template.png \
16/gimp-text-layer.png \
@@ -739,6 +790,7 @@ icons16_images = \
16/gimp-transparency.png \
16/gimp-undo-history.png \
16/gimp-user-manual.png \
16/gimp-value-mode.png \
16/gimp-video.png \
16/gimp-warning.png \
16/gimp-web.png \