Welcome, Guest |
You have to register before you can post on our site.
|
|
|
Toolbar selection inconvenience |
Posted by: Tolinar - 08-20-2025, 07:19 PM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (4)
|
 |
I created a forum identity specifically to complain about a tiny problem with the interface which frustrates the crap out of me.
If you click a button on the toolbox (to change tools), then move the mouse off the toolbox button without releasing the button, the tool doesn't change.
So, I'll click, for example, the eyedropper button quickly, but move the cursor off the toolbox before releasing
Then click the picture and put down a dot of color - because the tool didn't change.
Essentially - the interface ignores attempts to change tools if you don't both click-and-release over the control button.
This nuisance is easily reproduced and with the small size of the toolbox controls, probably introduces a lot of bother to people's operation.
I can understand canceling the selection when you hold the mouse button down to bring up the context menu...
but even if you click on a control and then smear over other controls before releasing the mouse, the control and intent is definitely on the Mouse button down operation.
This nuisance seems easy to fix. Please deal with it soon in a future version.
|
|
|
Gimp 2.10 installation problem windows 11 |
Posted by: Henrymw - 08-19-2025, 07:08 AM - Forum: Installation and usage
- Replies (3)
|
 |
I have installed Gimp 2.10 on my Windows 11 on my laptop.
I have installed several times, including once when I temporarily shutting down my avg system.
However I never have been able to get a 'complete' installation.
I can find this since when using Edit->Preferences->Folders I do not see all the folders that should be there.
I believe this problem is preventing things such as effective messages from the python 2.7 scripts I am working on.
How can I get a complete installation?
|
|
|
Python "no return values, shouldn't happen" |
Posted by: Nathan - 08-18-2025, 09:55 PM - Forum: Scripting questions
- Replies (6)
|
 |
I'm creating a python script to load a custom image format (.PRS with the magic string "YB"). But I'm having trouble getting even a skeleton file loading plugin to work. This is what I've been able to reduce my code down to:
Code:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import gi
gi.require_version('Gimp', '3.0')
from gi.repository import Gimp, GObject
import sys
load_proc = "file-prs-load"
plugin_binary = "file-prs"
class PrsLoader(Gimp.PlugIn):
def do_query_procedures(self):
return [load_proc]
def do_create_procedure(self, name):
procedure = None
if name == load_proc:
procedure = Gimp.LoadProcedure.new(self, name,
Gimp.PDBProcType.PLUGIN,
self.PrsLoad, None)
procedure.set_menu_label("PRS image")
procedure.set_attribution("Nathan", "Nathan", "2025")
procedure.set_menu_label("PRS image")
procedure.set_documentation("Loads files of PRS file format",
"Loads files of PRS file format",
None)
procedure.set_mime_types("image/prs")
procedure.set_extensions("prs")
procedure.set_magics("0,string,YB")
return procedure
def PrsLoad(self, procedure, run_mode, file, metadata, flags, config, run_data):
print("PrsLoad called")
#Return dummy image for now
image = Gimp.Image.new(100, 100, Gimp.ImageBaseType.RGB)
return_vals = procedure.new_return_values(Gimp.PDBStatusType.SUCCESS, None)
val = GObject.Value(Gimp.Image.__gtype__, image)
return_vals.append(val)
return return_vals
Gimp.main(PrsLoader.__gtype__, sys.argv)
When I try to open a PRS image file, I get the following errors:
Code:
GIMP Message
Opening '/home/nathan/Pictures/tree2b.prs' failed:
PRS image plug-in could not open image
Code:
[nathan@TARDIS file-prs]$ gimp
set device 'Wayland Pointer' to mode: disabled
[file-prs-load] The catalog directory does not exist: /home/nathan/.config/GIMP/3.0/plug-ins/file-prs/locale
[file-prs-load] Override method set_i18n() for the plug-in to customize or disable localization.
[file-prs-load] Localization disabled
env: ‘gjs’: No such file or directory
gimp: LibGimpBase-WARNING: gimp: gimp_wire_read(): unexpected EOF
[file-prs-load] The catalog directory does not exist: /home/nathan/.config/GIMP/3.0/plug-ins/file-prs/locale
[file-prs-load] Override method set_i18n() for the plug-in to customize or disable localization.
[file-prs-load] Localization disabled
[file-prs-load] The catalog directory does not exist: /home/nathan/.config/GIMP/3.0/plug-ins/file-prs/locale
[file-prs-load] Override method set_i18n() for the plug-in to customize or disable localization.
[file-prs-load] Localization disabled
PrsLoad called
(file-prs.py:2595385): LibGimp-WARNING **: 17:46:44.730: _gimp_procedure_run_array: no return values, shouldn't happen
/home/nathan/.config/GIMP/3.0/plug-ins/file-prs/file-prs.py:46: Warning: g_error_new: assertion 'domain != 0' failed
Gimp.main(PrsLoader.__gtype__, sys.argv)
INFO: a stray image seems to have been left around by a plug-in: "[Untitled]"[nathan@TARDIS file-prs]$
I'm not too worried about the localization messages at this time.
|
|
|
font samples |
Posted by: skunkworks - 08-15-2025, 12:02 AM - Forum: General questions
- Replies (6)
|
 |
Is there a sample file with many (or all) default fonts I can look at? For example, the same phrase--Hello, World!--is rendered in a number of fonts?
|
|
|
Ways to convert video files to .AVI without loss of quality? |
Posted by: manojadword95 - 08-14-2025, 07:47 AM - Forum: Watercooler
- Replies (1)
|
 |
Looking for the best video converter to convert an AVI file to the MP4 format.
I'm facing an issue of compatibility with AVI files, and now I want them to be converted into the MP4 format so that the problem gets solved. plz recommend me an effective converter.
Earlier, I used to use (link to expensive software removed), which is good, but I need a new software.
|
|
|
|