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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,947
» Latest member: drexinaz
» Forum threads: 7,707
» Forum posts: 41,906

Full Statistics

Latest Threads
Ubuntu - Right way to cra...
Forum: Linux and other Unixen
Last Post: ExplodingCabbage
5 hours ago
» Replies: 2
» Views: 146
Gimp 3.0.6 Python plug-in...
Forum: Scripting questions
Last Post: Volker
10 hours ago
» Replies: 0
» Views: 79
What exactly tutorials ar...
Forum: General questions
Last Post: SleipnirTheHorse
11 hours ago
» Replies: 5
» Views: 359
Random Clone
Forum: General questions
Last Post: mrkid
Yesterday, 01:26 PM
» Replies: 3
» Views: 244
Problem with Gimp 3 Pytho...
Forum: Scripting questions
Last Post: Volker
Yesterday, 11:03 AM
» Replies: 7
» Views: 428
Issue with Gradient Flare...
Forum: General questions
Last Post: rich2005
Yesterday, 09:56 AM
» Replies: 4
» Views: 184
ExifToolGUI and ExifTool ...
Forum: Other graphics software
Last Post: denzjos
Yesterday, 09:47 AM
» Replies: 10
» Views: 9,867
Beginner question on Laye...
Forum: General questions
Last Post: denzjos
Yesterday, 07:05 AM
» Replies: 1
» Views: 112
New to Gimp
Forum: General questions
Last Post: denzjos
11-17-2025, 08:20 AM
» Replies: 4
» Views: 341
Autopano Giga 4.4.2 now f...
Forum: Other graphics software
Last Post: denzjos
11-17-2025, 08:17 AM
» Replies: 1
» Views: 144

 
  tip: Gimp 2.10.18 brush (& tools) sliders
Posted by: rich2005 - 03-09-2020, 01:52 PM - Forum: Tutorials and tips - No Replies

With the introduction of a more compact Tools Options Dock there are some changes. The sliders in particular are narrower than before and the way adjustments are made, slightly different.  

Example for the brush size slider, and apart from entering a value directly or using the little up/down arrows;

Old style: The slider is divided into top and bottom halves, Fast or slow increments depend on where the mouse cursor is positioned
New style: The default is fast, for slow use the right mouse button.

   

Keyboard input: 
The defaults are the square brackets ]  [ to increment the size in steps of  one and alt-]  alt-[ for increments in steps of 10.
A quick demo: https://i.imgur.com/BfBoIuF.mp4
These, same as most keyboard shortcuts can be changed in Edit -> Keyboard Shortcuts  if required.

edit: To revert to the old slider setup, use the Edit -> Preferences menu as this post https://www.gimp-forum.net/Thread-How-do...2#pid17282

Print this item

  Uninstalled 2.10.18 and reinstalled 2.10.14
Posted by: marigolden - 03-08-2020, 08:24 PM - Forum: General questions - Replies (2)

When it wouldn't even display the brush size I wanted (despite listing the number I'd entered, 1) that was IT for me.

Print this item

  scissor select
Posted by: Zachary - 03-08-2020, 02:58 PM - Forum: General questions - Replies (1)

hi - 

I am having trouble using the selection I have made with the scissors.

I have tried "create alpha channel," "invert," and delete, but it simply does not delete anything. 

Any tips on how I can use the scissor tool successfully?

What I am trying to do is cut out the outline of a flower, then post it on another layer in which I will add text.

Print this item

  Shrink layer to shape
Posted by: infiniteWin - 03-07-2020, 07:29 PM - Forum: General questions - Replies (1)

I had an old logo which I traced over (text and rectangles). I created a new layer for each rectangle as I wanted to align the shapes later. I've since found out that guides work on layers, not the shapes in them, and was hoping on some advice on what to do as a don't see a resize to contents option for layers or a way to get the shapes, not layers, to snap to guides.

Any help would be apreciated

Print this item

  Reverse transpareny
Posted by: macr8e - 03-07-2020, 06:35 PM - Forum: General questions - Replies (7)

Probably something very simple but I'm stuck. I have a png file of an arrow. I want the arrow a color and the bg transparent. Currently the arrow in transparent and the bg is color. It seems this should be a simple fix.



Attached Files Thumbnail(s)
   
Print this item

  Magnetic laso tool, Quick mask?
Posted by: surfbug - 03-07-2020, 04:51 PM - Forum: General questions - Replies (2)

I had Ps software but I switched to your Gimp but I don't see any magnetic laso tool anywhere. I tried to open PS image on your software but I don't see any images. Does gimp have any quick mask if so can I edit the image on quick mask? Thx

Print this item

  Imports in a Python plugin
Posted by: Ottia Tuota - 03-07-2020, 09:31 AM - Forum: Scripting questions - Replies (5)

Hello!

I have been writing some plugins for Gimp. I plan to share them soon since I believe they will be useful. But I have a problem where I wish you can help me.

I explain the general situation first before making my question.

Python allows imports. I have the plugins in two Python files. (One file registrates one Gimp plugin and the other registrates two.) The files contain large common parts. The common parts are currently embedded in both files, but it would be much better if the common parts could be in separate files instead and the two plugin files would just import them.

Now you perhaps think that I might just combine everything in one big file containing three registrations. But I don't want to do that. For future development I would want to have the common parts each in its own file, and I don't like the idea of having to combine everything in one big file every time I make a new version of some part. Besides, it is likely that those common parts will find usage in some future plugins.

Now I pose my question (sorry about the lengthy explanations). Please note that I know very little about computers.

Can the following be realized somehow? Suppose we have a file A.py implementing a plugin. Another file B.py contains material that we want to be imported in A.py, for instance some object called NameDefinedInB. In file A.py we have written

# File A.py
# ---------
from gimpfu import *
import B as imported_B
...
NameInA = imported_B.NameDefinedInB
# Then NameInA is applied in A.py in some way
...


In Gimp's plug-ins folder we put A.py and B.py in the same subfolder A as follows:

plug-ins
   |
   +---A  (subfolder)
   |   |
   |   +----A.py  (file, the plugin)
   |   +----B.py  (file, to be imported in A.py)
   |
   +---some other plugin
   |
   +---some other plugin
   |
  ...
   

This is how I would like to arrange things, hoping that the stuff in B.py will be imported in A.py.

I made a little test plugin about this. I have tried it with the following three installations of Gimp (on Windows 10 64 bits):

1: Gimp 2.10.18 from gimp.org
2: Gimp 2.10.18 portable from Samj
3: Gimp 2.10.18 portable from Partha

and got the following results:

1: The test plugin does not appear in Gimp's menu.
2: The test plugin does not appear in Gimp's menu.
3: Works OK! (And a .pyc file is created.)

The test plugin is in the attached zip file in case you wish to try it. Put the whole folder import_test as a subfolder in Gimp's plug-ins folder and restart Gimp. The plugin should be found as Filters/ImportTest/Import test. If it is, click it and see if anything happens in the error console.

Any ideas? Is this supposed to work at all? Since I want to share the plugins, I need a solution that works for everybody as such. Thanks in advance!



Attached Files
.zip   import_test.zip (Size: 795 bytes / Downloads: 439)
Print this item

  Scale image isn't scaling my image
Posted by: Lost Birds - 03-06-2020, 03:22 PM - Forum: General questions - Replies (5)

My canvas is sized 1920x1080. The picture I'm working with is 1920x1279 and I'm trying to crop one part of it so I get 1920x1080. When I press Shift+C and enter size I want to crop it to, the cropping outline is much smaller than the size I'm entering. I know this for a fact because as I've said my canvas is 1920x1080 but when I put crop size into the same resolution (1920x1080), the crop outline is smaller than the canvas.

How do I solve this? I can't formulate the question good enough to find a solution via google, hence I'm asking here.

Example: gyazo screenshot

Print this item

  converting selection to a single line path
Posted by: pavikpeter - 03-06-2020, 01:14 PM - Forum: General questions - Replies (6)

I have the same issue than described here by ringo.r81

Is that possible that there is no option to save a single line path fom a one pixel wide selection in gimp?

Print this item

  Save layer as visible.
Posted by: Krikor - 03-05-2020, 09:58 PM - Forum: General questions - Replies (8)

I hope to be able to explain my doubt.

The situation is this:
Situation 01.
• I have two layers:
•• The bottom one with any color image;
•• The top layer with an opaque image
The visual result of this overlay is the one shown in the image below, where it is seen that there is no visibility through the top image.
   
Situation 02.
• By modifying the top layer mode, I am able to obtain certain transparency, and the visual result shows that it is now possible to see part of the bottom image, as shown in the image below.
   
Attempt 01.
So I close the visibility of the bottom layer and make new from visible for the top layer.
The result I saved as a .png file

Unwanted Result.
The problem is that the image saved as .png does not maintain the conditions that were seen while under the effect of the applied layer modes. Part of the image transparency (not the background) is opaque (matte) again.
   
If I open this image and put it on top of another, there is no more transparency obtained in Situation 02.
   

There is some way to do this correctly and preserve the image as it is seen before it is saved (as it is visible while under the effect of layer mode).?

Thanks in advance.

Print this item