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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,577
» Latest member: RaymondBut
» Forum threads: 7,452
» Forum posts: 40,728

Full Statistics

Latest Threads
Missing script-fu "refres...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
1 hour ago
» Replies: 10
» Views: 185
Macroglossum stellatarum
Forum: Watercooler
Last Post: denzjos
5 hours ago
» Replies: 0
» Views: 22
processes in Whitelist
Forum: OSX
Last Post: rich2005
Today, 09:45 AM
» Replies: 5
» Views: 149
Digikam: photo management...
Forum: Other graphics software
Last Post: denzjos
Today, 06:53 AM
» Replies: 7
» Views: 4,586
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: SteveH
Yesterday, 11:47 PM
» Replies: 0
» Views: 62
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: rich2005
Yesterday, 12:12 PM
» Replies: 10
» Views: 3,119
Can't see GIMP windows
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Tankred
Yesterday, 11:48 AM
» Replies: 3
» Views: 246
Windows save
Forum: General questions
Last Post: sallyanne
Yesterday, 06:27 AM
» Replies: 3
» Views: 337
Trying to append part of ...
Forum: General questions
Last Post: Denarius
06-30-2025, 12:26 PM
» Replies: 5
» Views: 325
clone tool
Forum: General questions
Last Post: sallyanne
06-30-2025, 12:38 AM
» Replies: 6
» Views: 406

 
  Extending an image background
Posted by: aridavid5 - 03-11-2020, 08:37 PM - Forum: General questions - Replies (6)

I've tried using the resynth plugin and I have not succeeded. Maybe I'm doing it wrong. I don't know. I'm including a video of exactly what I wish to accomplish with Gimp. (In the video it was done with Photoshop) https://youtu.be/jO9EFFsWV3c

Print this item

  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: 368)
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