| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 5,146
» Latest member: cjel
» Forum threads: 7,820
» Forum posts: 42,466
Full Statistics
|
| Latest Threads |
re-coloured pixels hide c...
Forum: Extending the GIMP
Last Post: programmer_ceds
7 hours ago
» Replies: 1
» Views: 94
|
Wavelet-decompose doing m...
Forum: General questions
Last Post: JohnWilliams
Yesterday, 07:46 AM
» Replies: 9
» Views: 5,233
|
Smudge tool not working
Forum: General questions
Last Post: sallyanne
Yesterday, 12:51 AM
» Replies: 3
» Views: 200
|
Thank you for Gimp
Forum: Watercooler
Last Post: Sampollyt
02-25-2026, 12:38 PM
» Replies: 0
» Views: 100
|
RapidRAW
Forum: Other graphics software
Last Post: denzjos
02-25-2026, 07:40 AM
» Replies: 3
» Views: 1,007
|
Hiding Unwanted System Fo...
Forum: Extending the GIMP
Last Post: rich2005
02-24-2026, 10:05 AM
» Replies: 1
» Views: 198
|
Version Issue
Forum: General questions
Last Post: rich2005
02-23-2026, 09:40 PM
» Replies: 1
» Views: 230
|
GIMP 3 Python Enums: Defi...
Forum: Extending the GIMP
Last Post: MrsP-from-C
02-23-2026, 08:27 PM
» Replies: 6
» Views: 369
|
Odd problem with GIMP 3.0...
Forum: General questions
Last Post: cjsmall
02-22-2026, 08:09 PM
» Replies: 4
» Views: 448
|
Anyone working on video g...
Forum: Watercooler
Last Post: connag
02-22-2026, 07:48 PM
» Replies: 3
» Views: 2,108
|
|
|
| David's Batch Processor i V3.0 |
|
Posted by: AfTech54 - 03-31-2025, 09:47 AM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (2)
|
 |
I've used David's Batch Processor (Dbp) in v 2.10, the Dbp plugin appears in the Filter menu.
I've got the Dvp file in a MS OneDrive (OD) folder so I have access to my custom settings in my both computers.
Now I've added the (OD) folder to Settings/Folders/Plugins in V 3.0.2 but the plugin doesn't show up under the Filter menu.
I've also added the Dbp file to:
C:\Users\Roger\AppData\Local\Programs\GIMP 3\lib\gimp\3.0\plug-ins
C:\Users\Roger\OneDrive\Roger Private\OD GIMP Set\Custom\plug-ins
I've closed and started GIMP after each task.
Is the Dbp not compatible with Gimp 3, if so - is there any similar plugin working in V3.0?
|
|
|
| resynthesizer |
|
Posted by: Gimper@PP - 03-31-2025, 09:26 AM - Forum: Extending the GIMP
- Replies (3)
|
 |
Hey, I use windows 11 + gimp 3.0.2 and i will install resynthesizer but i get it not install.
I get the last version of resynthsizer from github
I install it in preferences - map - plug-ins in gimp 3.0.2
What am i doing wrong?
|
|
|
| Transforming an image? |
|
Posted by: Knusbrich - 03-30-2025, 06:31 PM - Forum: General questions
- Replies (1)
|
 |
First of all, I would like to mention that I am an absolute beginner in using GIMP.
I have a picture of a fence photographed from a drone. The fence looks like an ellipse in the picture, but in reality the fence is square. I have studied various videos on Youtube, but have not found one that helps me further. I imagine a kind of free transform tool where you can push and pull the frame of the picture in different places, so that the fence becomes more square. In short, it is described as changing an ellipse to a square. Does anyone have a link to a tutorial or a plugin that can help with this task?
|
|
|
| Converseen batch image processor |
|
Posted by: denzjos - 03-30-2025, 07:09 AM - Forum: Other graphics software
- No Replies
|
 |
Converseen is a free cross-platform batch image processor for Windows, Linux, macOS, FreeBSD, and other operating systems. It allows you to convert, resize, rotate, and flip an infinite number of images with a single mouse click. Moreover, Converseen can convert an entire PDF document into a set of images with your preferred characteristics. You can choose from over 100+ formats, set the size, resolution, and the filename.
https://converseen.fasterland.net
|
|
|
| Python Scripting Help Needed Gimp 3 |
|
Posted by: silenuznowan - 03-29-2025, 05:37 PM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (2)
|
 |
I have some simple batch scripts for version 2 that I am trying to convert to work with version 3, which I really like working with.
Anyway one simple script was this:
Code:
import os
import gimpfu
def convert(filename):
img = pdb.gimp_file_load(filename, filename)
new_name = filename.rsplit(".",1)[0] + ".png"
layer = pdb.gimp_image_merge_visible_layers(img, 1)
pdb.gimp_file_save(img, layer, new_name, new_name)
pdb.gimp_image_delete(img)
savepath = ('${DEST}' + '/' + "$1" )
if os.path.exists(savepath):
print('the folder exists')
else:
os.makedirs(savepath)
os.rename(new_name, savepath + "/" + new_name)
from glob import glob
for filename in glob("*.xcf"):
print(filename)
convert(filename)
pdb.gimp_quit(1)
I'm now trying to do the equivalent with Gimp 3 but am unable to even load the file.
In Gimp 2 you could load a file with the one line:
Code:
img = pdb.gimp_file_load(filename, filename)
So now this is replaced with:
Code:
def load_file(filename):
procedure = Gimp.get_pdb().lookup_procedure('gimp-file-load');
config = procedure.create_config();
config.set_property('run-mode', Gimp.RunMode.NONINTERACTIVE);
config.set_property('file', filename);
result = procedure.run(config);
success = result.index(0);
image = result.index(1)
return image;
def convert(filename):
img = load_file(filename)
Only this results in the following error
Quote:TypeError: could not convert 'interior-starship-doors.xcf' to type 'GFile' when setting property 'GimpProcedureConfig-gimp-file-load.file'
So it looks like instead of expecting a filename for file the new python api expects an object of type GFile to be passed, and I was wondering how I do this?
Thanks in advance.
Update: I managed to figure things out using Gio so my new load_file function looks like this:
Code:
def load_file(filename):
file = Gio.File.new_for_path(filename)
procedure = Gimp.get_pdb().lookup_procedure('gimp-file-load');
config = procedure.create_config();
config.set_property('run-mode', Gimp.RunMode.NONINTERACTIVE);
config.set_property('file', file);
result = procedure.run(config);
success = result.index(0);
image = result.index(1)
return image;
While this works, I'm wondering if I'm also supposed to dispose of the Gio.File object, and if so how do I do that?
Thanks in advance. Also if there's any interest I can post the whole version of the new script.
|
|
|
| Error while parsing |
|
Posted by: rdoty - 03-29-2025, 04:38 PM - Forum: General questions
- Replies (1)
|
 |
When I load Gimp 3.0 I get this message "Error while parsing 'C:\Users\xxxx\AppData\Roaming\GIMP\3.0\devicerc' in line 9: invalid value 'a' for token select-criterion
Is this a problem and how do I correct? Also, could this relate to some of the problems I had with a previous thread, difficulty removing jpeg background?
|
|
|
| GIMP 3.0 View and Color menu length |
|
Posted by: KenS. - 03-29-2025, 01:40 PM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (1)
|
 |
Hi there, if I click on a menu, and then move either left of right, the menus dropdown so you can see the listings, but both the the View and Color menus are long, so they will not close when you move the cursor either left or right, with the View menu, you can click on the up arrow at the top, to clear the menu, but the Color menu doesn't have a arrow at the top that I can see, I have to move the cursor off to one side and click to clear the menu. Would like to see both menus extend downward, so the menu title isn't hidden. Take care.
|
|
|
|