Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
1153f4ff
Commit
1153f4ff
authored
Dec 18, 2000
by
jtl
Browse files
fixed for new gbr
parent
a5b0575f
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
1153f4ff
2000-12-18 Jens Lautenbacher <jtl@gimp.org>
Sven Neumann <sven@gimp.org>
* plug-ins/script-fu/scripts/select_to_brush.scm: make it work
with the new brush format and the new saving code. It loads and
saves RGB selections into pixmap brushes now.
* plug-ins/script-fu/scripts/mkbrush.scm
* plug-ins/script-fu/scripts/select_to_brush.scm: make it work with
the new brush format and the new saving code; select_to_brush
loads and saves RGB selections into pixmap brushes now.
2000-12-18 Daniel Egger <egger@suse.de>
...
...
plug-ins/script-fu/scripts/mkbrush.scm
View file @
1153f4ff
...
...
@@ -4,6 +4,9 @@
; Make-Brush - a script for the script-fu program
; by Seth Burgess 1997 <sjburges@ou.edu>
;
; 18-Dec-2000 fixed to work with the new convention (not inverted) of
; gbr saver (jtl@gimp.org)
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation; either version 2 of the License, or
...
...
@@ -52,9 +55,9 @@
(
gimp-image-add-layer
img
drawable
0
)
; Actual code starts...
(
gimp-palette-set-background
'
(
0
0
0
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
255
255
255
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
0
0
0
))
(
gimp-rect-select
img
0
0
width
height
REPLACE
FALSE
0
)
(
gimp-edit-fill
drawable
BG-IMAGE-FILL
)
...
...
@@ -127,9 +130,9 @@
(
gimp-image-add-layer
img
drawable
0
)
; Actual code starts...
(
gimp-palette-set-background
'
(
0
0
0
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
255
255
255
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
0
0
0
))
(
cond
((
<
0
feathering
)
(
gimp-rect-select
img
(
/
feathering
2
)
(
/
feathering
2
)
width
height
REPLACE
TRUE
feathering
))
((
>=
0
feathering
)
...
...
@@ -201,9 +204,9 @@
(
gimp-image-add-layer
img
drawable
0
)
; Actual code starts...
(
gimp-palette-set-background
'
(
0
0
0
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
255
255
255
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
0
0
0
))
(
gimp-ellipse-select
img
0
0
width
height
REPLACE
TRUE
FALSE
0
)
(
gimp-edit-fill
drawable
BG-IMAGE-FILL
)
...
...
@@ -278,9 +281,9 @@
(
gimp-image-add-layer
img
drawable
0
)
; Actual code starts...
(
gimp-palette-set-background
'
(
0
0
0
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
255
255
255
))
(
gimp-drawable-fill
drawable
BG-IMAGE-FILL
)
(
gimp-palette-set-background
'
(
0
0
0
))
(
cond
((
>
feathering
0
)
; keep from taking out gimp with stupid entry.
(
gimp-ellipse-select
img
(
/
feathering
2
)
(
/
feathering
2
)
width
height
REPLACE
TRUE
TRUE
feathering
))
((
<=
feathering
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment