Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,777
» Latest member: Jamesnex
» Forum threads: 7,592
» Forum posts: 41,388

Full Statistics

Latest Threads
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
5 hours ago
» Replies: 15
» Views: 11,569
Photo play-time
Forum: Gallery
Last Post: Ofnuts
5 hours ago
» Replies: 24
» Views: 21,555
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
Yesterday, 11:53 PM
» Replies: 2
» Views: 463
Linux command that does e...
Forum: Other graphics software
Last Post: Grobe
Yesterday, 09:34 PM
» Replies: 0
» Views: 147
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
Yesterday, 04:03 PM
» Replies: 0
» Views: 161
How do you make text circ...
Forum: General questions
Last Post: rich2005
Yesterday, 07:18 AM
» Replies: 12
» Views: 3,160
New Install, Black Screen...
Forum: OSX
Last Post: akhrameev
09-11-2025, 02:32 PM
» Replies: 3
» Views: 2,850
Trouble changing backgrou...
Forum: General questions
Last Post: tomatoSauce23
09-11-2025, 12:50 PM
» Replies: 6
» Views: 1,405
Mishap fixed
Forum: Gimp-Forum.net
Last Post: MrsP-from-C
09-10-2025, 05:50 PM
» Replies: 1
» Views: 465
finding relationship betw...
Forum: General questions
Last Post: denzjos
09-09-2025, 06:52 AM
» Replies: 3
» Views: 793

 
  Pls share your opinions on artwork for professional CD pressing?
Posted by: bassmothership - 08-22-2025, 06:34 AM - Forum: General questions - Replies (2)

Hi 

I'm learning Gimp working through the manual about 6 hours per day for a week now. My first goal is to be able to design a look for my music work online, and if possible, to be printed on paper as well.

I'm planning to press domestically my first album to CD (here in Japan) and I see that all companies have their own unique templates that only use Adobe programs. I understand this is serious professional work and Adobe is the industry standard but... still, I'd like to ask you guys:

Is there's any remote chance that one can have some autonomy and being able to do this kind of work in Gimp dealing with CD pressing companies requirements without using Adobe programs? 

OR, either you'll have to become an Adobe software user or you'll have to pay for the pressing company to design everything for you, which will increase the costs a lot for sure. 
Is this correct?

Please let me know what you guys think.
I need some reality check.

Print this item

  Bucket fill whole selection in Python-fu
Posted by: TheCosmicKid - 08-21-2025, 09:45 PM - Forum: Scripting questions - Replies (2)

Hi,

This is a very simple problem, but when I try a bucket fill through a Python-fu call, I always get a "Fill similar colors" result when I need "Fill whole selection". I can't seem to find the relevant setting in the listed context setters for the procedure (I'm looking here). What am I missing?

Thank you!

Print this item

  Gimp 3.0.4 problem with window resizing after loading image
Posted by: mrstanlez - 08-21-2025, 07:33 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (1)

How to reply the issue ?

Linux tested: Debian, Arch Linux, Manjaro, Ubuntu, Linux Mint
Version: Gimp 3.0.4
Monitor: 4k LG(3820 x 2160)
Gimp window size: 1920 x 1080

If I click on large image for opening it in Gimp,it will open it of course.
But Gimp window will immediately resize itself to the image size.

Thank you.



Attached Files Thumbnail(s)
       
Print this item

  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.

Print this item

  Create and modify mypaint preset
Posted by: Quasar999 - 08-20-2025, 07:03 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (5)

Hello
i can't modify or create a MyPaint brush preset. As you can see in the picture i've created a folder on the user home for the main brushes of MyPaint with the rights to write but the editing buttons on the frame are still grey.
   
   
   

Print this item

  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?

Print this item

Exclamation 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.

Print this item

  Vector Layers - Coming Soon
Posted by: rich2005 - 08-18-2025, 11:20 AM - Forum: Watercooler - Replies (4)

In the latest Gimp 3.1.3 (appimage) are vector layers, so they will be in Gimp 3.2 when it comes along.

You can make your own path and apply a fill and stroke which remains editable. You can apply transformations - just remember to work in paths mode. 

Path Tool Options looks like this:

   


and me bumbling about https://i.imgur.com/TyPfJ0p.mp4

Print this item

Question Need help Converting an Images Colors to the closest one in a palette
Posted by: Aminivibrio - 08-16-2025, 04:43 PM - Forum: General questions - Replies (8)

So I am developing a video game which uses a built-in color palette similar to old MS-DOS games. Because of this, I need a program that will convert all the colors in an image to the closest color in a given color palette. Unfortunately, my game's color palette has more than 256 colors (around 2000), so I can't just convert all the images I want to turn into sprites to indexed mode. The best method I've found so far is to use the Select by Color Tool and manually convert every color in the image to match my palette. Does anyone know a way to convert images to a color palette instantly besides indexed mode?

Print this item

  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?

Print this item