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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,792
» Latest member: Dunham
» Forum threads: 7,601
» Forum posts: 41,418

Full Statistics

Latest Threads
ora format... it really w...
Forum: General questions
Last Post: rich2005
1 hour ago
» Replies: 2
» Views: 75
cannot find plu-gins in g...
Forum: General questions
Last Post: rich2005
3 hours ago
» Replies: 1
» Views: 47
Simplifying a path
Forum: Extending the GIMP
Last Post: Ofnuts
5 hours ago
» Replies: 40
» Views: 35,276
"Gimp 2.99 & Gimp 3.0" fo...
Forum: Gimp-Forum.net
Last Post: Ofnuts
5 hours ago
» Replies: 0
» Views: 63
.pcd files issue?
Forum: OSX
Last Post: Ofnuts
6 hours ago
» Replies: 2
» Views: 320
Coincidence or not, that ...
Forum: Watercooler
Last Post: Krikor
7 hours ago
» Replies: 2
» Views: 1,118
How do you make text circ...
Forum: General questions
Last Post: Krikor
8 hours ago
» Replies: 13
» Views: 3,743
files missing after insta...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
Yesterday, 03:58 PM
» Replies: 4
» Views: 451
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: HavingTooMuchFun
Yesterday, 08:24 AM
» Replies: 2
» Views: 606
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
09-15-2025, 07:02 AM
» Replies: 1
» Views: 420

 
  Insert image on screen - Remove fingers
Posted by: AmandineViaud - 03-28-2018, 03:07 PM - Forum: General questions - Replies (3)

Hello everyone,

I successfully inserted a print screen in a tablet screen. The only thing that bothers me are the hands of the person that holds the tablet. I just want the image I inserted to be under the person's hands. How can I do this? Could you pls walk me through the process (I'm completely new to Gimp so I need pretty straight forward/easy directions pls :Smile)

Thank you!

Print this item

Brick Export image
Posted by: Nika - 03-28-2018, 01:39 PM - Forum: General questions - Replies (3)

Hi,

I am having problems when I want to export images to .JPG file (or any other format).

Shouldn't the extension of the file change automatically to the one I choose in the drop-down menu?

The way it is now, I have to manually change the extension every time I want to export the image, and if I want to export it, isn't it logical that I want to change the image type?

Regards,
N


[Image: GIMP_Export_image_Extension_problem_cr.png]

Print this item

  Python-fu delete selection
Posted by: cfdirt - 03-27-2018, 08:22 PM - Forum: Scripting questions - Replies (2)

This is my first project with python-fu.  I have a routine I need to do on hundreds of images, a few times on each image. 

What I need to do is

1. Select a color using pdb.gimp_image_select_color
2. Delete the contents of that selection

This is the equivalent of

1. Using the Select By Color Tool (Shift O)
2. Hitting the delete button on the keyboard


I can create the selection but I am not sure how to delete the contents within the selection. Can someone steer me in the right direction for what I need to do next or point me towards an example?

Many thanks

Print this item

  counting pixels
Posted by: momara - 03-27-2018, 04:50 PM - Forum: General questions - Replies (6)

Hello,
Total newbie here and using Gimp for scientific purposes.  We are following some past work of scientist testing digital photos to determine vegetation cover (obstruction from view).  Two author groups used Gimp to analyze their photos (pre 2013).  I am unable to recreate their procedures and can't figure out on my own how to count pixels.  I have hundreds of photos of grasses and plants taken with a black backdrop.  What I need to do is find the ratio of black pixels (the black backdrop) to other pixels (plants).  I tried using Threshold to change to BW then using Histogram.  I 've also tried using just Histogram.  I've tried a bunch of different ways to get to a pixel count.  I'm either missing a step or two or am just not understanding the results I'm getting.  HELP!!!  I can send an image if that helps.
Thank you,
Mo

Print this item

  GIMP performance on macOS
Posted by: wolarts - 03-27-2018, 03:38 PM - Forum: OSX - No Replies

The included video and the title really explain it, I am getting pretty bad performance when moving and scaling an image in GIMP with an image that is only 1440p. I do not get these performance issues under Windows 10.

https://www.youtube.com/watch?v=bnL9IMm73WU

Print this item

  Masking multiple layers at the same time
Posted by: jrickards - 03-27-2018, 02:42 PM - Forum: General questions - Replies (2)

I had 4 layers and in one section, I wanted to create a mask that "drilled" down through 3 of the layers. It has been a while since I did that but I think that what I ended up doing was creating a selection from the layer mask on the top layer, then creating a layer mask from selection for the other two layers but I was wondering if there was a better way to do this. I tried grouping and the "chain" icon to see if what I did to one layer applied to the others in the group/chain but no luck.

Any suggestions?

Thanks,

Jules

Print this item

  Release candidate #1 for Gimp 2.10 is out!
Posted by: Ofnuts - 03-27-2018, 09:21 AM - Forum: Gimp 2.10 - Replies (57)

https://www.gimp.org/news/2018/03/26/gim...-released/

Print this item

Exclamation where can i download all inkscape plugins ! like Gimp all-in-one!
Posted by: QUARLEAP - 03-27-2018, 08:52 AM - Forum: Other graphics software - Replies (7)

where can i download all inkscape plugins ! like Gimp all-in-one!
-
!

Print this item

  .bat script issues
Posted by: ThaUnknown_ - 03-26-2018, 08:33 PM - Forum: Extending the GIMP - Replies (3)

Code:
@ECHO OFF
TITLE Compress GIMP
CLS

REM This is to get the first argument after the batch file
SET FILE_IN=%1
CALL :DEQUOTE FILE_IN

REM This sets the path used in the gimp script
SET PATH=%FILE_IN%\*.png

REM This prints the path
ECHO Will run GIMP script in path '%PATH%'. Press Enter to continue or Ctrl+C to exit.

REM This waits for enter input
PAUSE

REM Change argument 0 to the GIMP exe
REM For me it's "D:\Programs\GIMP 2\bin\gimp-2.8.exe" 
REM If you want to run it inside the current cmd window,
REM  use gimp-console-2.8.exe, otherwise (aka new window pops up), use gimp-2.8.exe
"D:\Programs\GIMP 2\bin\gimp-2.8.exe" -i -b "(batch-auto-fix \"%PATH%\")"

REM Tell user it's done!
ECHO DONE.
GOTO:EOF

:DEQUOTE
FOR /F "delims=" %%A IN ('echo %%%1%%') DO SET %1=%%~A
GOTO:EOF
This is a script I asked my friend to make that changes the image mode to indexed and saves it as a compressed .png. He never could get it to work and he gave up so I figured this is the best place to ask for this kind of help. I hope his comments are enough, if not I could elaborate/explain if issues arise.

Print this item

  Saving to .pdf problem
Posted by: Pat625 - 03-25-2018, 05:55 PM - Forum: General questions - Replies (3)

I can open a multipage .pdf in Gimp 2.8.22 as layers and work on it without difficulty. When I try to save it as a .pdf, all I get is one page and the others are lost.  Is there any way to save a multipage .pdf using Gimp?

Print this item