| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 5,193
» Latest member: Henryhuh
» Forum threads: 7,844
» Forum posts: 42,597
Full Statistics
|
| Latest Threads |
Batcher - Batch Image Pro...
Forum: Extending the GIMP
Last Post: denzjos
6 minutes ago
» Replies: 10
» Views: 13,740
|
GIMP 3.2.x not recognizin...
Forum: General questions
Last Post: sallyanne
12 minutes ago
» Replies: 1
» Views: 40
|
GIMP Rename Layer (Pro) -...
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 05:27 PM
» Replies: 3
» Views: 146
|
achieving a overdriven al...
Forum: General questions
Last Post: saint_m
03-27-2026, 05:10 PM
» Replies: 2
» Views: 229
|
GIMP: The Movie | Officia...
Forum: Gallery
Last Post: JakaBasej01
03-27-2026, 01:14 PM
» Replies: 3
» Views: 1,108
|
Severe Security Flaws in ...
Forum: Linux and other Unixen
Last Post: rich2005
03-20-2026, 04:59 PM
» Replies: 6
» Views: 293
|
Parametric Mask plug-in f...
Forum: Extending the GIMP
Last Post: denzjos
03-19-2026, 05:32 PM
» Replies: 1
» Views: 195
|
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: rich2005
03-19-2026, 04:29 PM
» Replies: 3
» Views: 2,164
|
How do I color Bevel Text...
Forum: General questions
Last Post: rich2005
03-18-2026, 12:36 PM
» Replies: 8
» Views: 626
|
Gimp 3.x scanner xsane pl...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
03-18-2026, 09:52 AM
» Replies: 22
» Views: 19,235
|
|
|
| Brush always black |
|
Posted by: meetdilip - 11-13-2020, 01:40 PM - Forum: Extending the GIMP
- No Replies
|
 |
I drew an SVG > exported as PNG > opened in GIMP > saved as .gbr
The brush loads fine on GIMP, but sadly it is always a black imprint, no matter what Foreground colour I choose. I remember setting the colour to null somewhere during the process. It will be nice to learn how to fix this and make the brush honour the FG colour. Thanks.
LGN has a video on this with the solution. The image should be converted to greyscale mode before exporting to .gbr . Working now.
|
|
|
| Only Basic brushes, others greyed out |
|
Posted by: meetdilip - 11-13-2020, 12:36 PM - Forum: General questions
- Replies (2)
|
 |
Since the last couple of days, possibly after 2.10.22 update, only the " Basic " set of brushes are visible. Others are there in the .config folder and they are set properly under folder path. But only " Basic " set it visible / selectable. Others are greyed out. I haven't touched any settings in a while. Any help on this will be awesome. Thanks.
|
|
|
Path to Selection not working... SOLVED. |
|
Posted by: Krikor - 11-12-2020, 09:52 PM - Forum: General questions
- Replies (3)
|
 |
I already found the solution!
Hi,
Using script guides for paths, I created 4 paths.
But when I try to select these paths for selection (Path To Selection) nothing happens.
But if I use the Rectangle Select Tool and create a selection and then transform it into a path, from that path I can select it via "Path to Selection '.
Obs: The "this path works" path I made with the Rectangle Select Tool.
I don't know where I'm going wrong.
Do the paths generated by the Guides To Path plugin behave differently?
How to make these paths be selected?
Quote: Path summary Warning
Path "A8" [4]:
(0.0, 0.0) <- 2 : 154.0 : OPN -> (0.0, 154.0)
(154.0, 0.0) <- 2 : 154.0 : OPN -> (154.0, 154.0)
(0.0, 0.0) <- 2 : 154.0 : OPN -> (154.0, 0.0)
(0.0, 154.0) <- 2 : 154.0 : OPN -> (154.0, 154.0)
Path summary Warning
Path "this path works" [1]:
(199.0, 145.0) <- 4 : 224.0 : CW -> (199.0, 200.0)
I thank you for your help!
4paths.xcf (Size: 462.19 KB / Downloads: 609)
Ok, with ofn-path-edits I managed to solve the problem !!
I used the option Join Strokes and voilà!
Now I can select the paths.
|
|
|
| GIMP batch: error |
|
Posted by: cmorlighem - 11-11-2020, 08:51 AM - Forum: Extending the GIMP
- Replies (1)
|
 |
Hi,
I'm new to Gimp and I need to use it from the command line as it is part of an automation process.
I'm starting with a super simple command :
gimp-2.10.exe -i -b "(let* ((image (car (file-tiff-load 1 C:\Users\Camille\Documents\test.tif C:\Users\Camille\Documents\test.tif)))))"
I keep getting this error:
batch command experienced an execution error:
Error: eval: unbound variable: C:\Users\Camille\Documents\test.tif
I did lots of forum but I haven't found anything working. Also I tried with adding single/double quotes but doesn't change anything. I tried with -b "(gimp-quit 0)" in the end but doesn't change anything either and same when I use gimp-console-2.10.exe.
I'm running the command with windows 10.
Can anyone help me?
|
|
|
| [split] Installing Python scripts |
|
Posted by: OpaPeterPKHG - 11-10-2020, 09:10 AM - Forum: Scripting questions
- Replies (5)
|
 |
Hello,
W10 gimp 2.10.22
How to install any python plugin.
Would like a working small example
e.g. from WW
Code:
import gimp
def python_message(image, drawable, message):
gimp.message(message)
register(
"python_fu_message",
"Show message",
"Show message",
"Pin-Chou Liu",
"Pin-Chou Liu",
"2019",
"<Image>/Filters/Hello World...",
"",
[
(PF_STRING, "message", "message", "Hello World"),
],
[],
python_message)
main()
|
|
|
|