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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,636
» Latest member: Mel987
» Forum threads: 7,498
» Forum posts: 40,913

Full Statistics

Latest Threads
Endianess of pixel data i...
Forum: Scripting questions
Last Post: Ofnuts
8 hours ago
» Replies: 5
» Views: 276
Can not save or export pi...
Forum: General questions
Last Post: rich2005
Yesterday, 03:54 PM
» Replies: 4
» Views: 143
CMYK color mode Gimp 2.10
Forum: Extending the GIMP
Last Post: rich2005
07-20-2025, 08:21 PM
» Replies: 22
» Views: 82,488
copy sequence of filters ...
Forum: General questions
Last Post: programmer_ceds
07-20-2025, 04:03 PM
» Replies: 3
» Views: 250
[Python] In-memory save p...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: DunkleMaterie
07-20-2025, 12:54 PM
» Replies: 4
» Views: 202
text tool
Forum: General questions
Last Post: inemar
07-20-2025, 07:08 AM
» Replies: 2
» Views: 183
Python Snippets for GIMP ...
Forum: Scripting questions
Last Post: pixelmixer
07-19-2025, 06:51 PM
» Replies: 4
» Views: 208
Gimp 3.0.4 Appimage by Iv...
Forum: Alternate Gimp packagings
Last Post: vitforlinux
07-19-2025, 11:44 AM
» Replies: 0
» Views: 125
edit_paste pastes at inco...
Forum: Scripting questions
Last Post: class43
07-18-2025, 03:48 PM
» Replies: 2
» Views: 181
Open, save buttons on bot...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: GrumpyDeveloper
07-17-2025, 09:52 PM
» Replies: 8
» Views: 3,056

 
  Help! My GIMP 2.10 crashes on all file operations!
Posted by: LagrangeL4 - 08-13-2021, 08:39 AM - Forum: Windows - Replies (6)

Greetings, forum. Yesterday afternoon (Thu Aug 12, 2021), my GIMP 2.10.24-rev-1, on Windows 10 64-bit, started malfunctioning for no reason at all. Nothing in Windows had changed. Nothing in GIMP had changed.

The nature of the malfunction is, any attempt to click any sub-menu of the File menu ("New", "Open", "Save-As", "Export-As") causes GIMP to freeze. The program enters a "not-responding" state indefinitely and has to be terminated by first clicking the "X" in the upper-right corner, then clicking the "Terminate Program" button on the "this program is not responding" box that pops up, then clicking "cancel" on the "lets tell Microsoft all about this" box that then pops up.

This is not acceptable, because while I can edit and alter images all I like (by first opening them in GIMP via Windows Explorer, thus bypassing the broken "File" menu), I can't save any of my work!

Steps I've taken in attempt to solve this:

1. Re-installed GIMP on top of itself. Result: Problem persists.
2. Un-installed then re-installed GIMP. Result: Problem persists.

I'm at a loss. I have no idea what caused this problem, no idea of why uninstall-then-reinstall failed to fix it, and no idea on how to fix it. Does anyone have any ideas on how to fix this?



Attached Files Thumbnail(s)
   
Print this item

  How to erase (clear) pixels near edges?
Posted by: ajax - 08-12-2021, 04:33 PM - Forum: General questions - Replies (3)

When attempting to remove backgrounds from an image, I think, the idea is to select the applicable area and then clear (delete/erase) the selected area.  This makes the selected area transparent.  Select by color can be effective but typically a small area near the edge of the object (i.e., portion of the image being preserved) is NOT handled accurately.  In that, pixels to be removed remain or pixels to be keep get selected for removal.  It becomes quite difficult to use the various selection tools to include these pixels.

It would seem that being able to use the various brush (painting) tools for this task would be desirable.  For example, I tried using the Clone Tool but it appears that transparency cannot be cloned.  In that pixels can be cloned but NOT the absence of pixels.  Setting Hardness to zero is NO help.

Is there a way to use Brush Tools like the Clone Tool to make the target area Transparent?

Print this item

  Where the fonts come from?
Posted by: jerryemerydelacruz - 08-11-2021, 09:40 PM - Forum: General questions - Replies (5)

I just installed Gimp 2.10.24 on a new computer, and it's reading the fonts from the Windows Font folder even though that folder isn't listed as a font folder in the Preferences>Folders>Fonts.  All of the font folders in Preferences are empty.  Is there a way to prevent Gimp from loading the Windows fonts and only load the Fonts I put in the folders listed under Preferences?


I changed the permissions of the fonts.conf file in Program Files>Gimp2/etc/fonts. Opened the file with Notepad and removed the line <dir>WINDOWSFONTDIR</dir>. I then copied a ttf font to the Program Files>Gimp 2>share>gimp>2.0>fonts folder and restarted Gimp. Now it only shows the one font, so this seems to work.

Print this item

  Batch convert Jpeg into monochrome pcx
Posted by: BubbleFritten - 08-11-2021, 06:09 PM - Forum: Scripting questions - Replies (1)

Hello,

i want to convert some jpeg's to monochrome pcx. To solve the problems step by step  my first try is to convert to monochrome jpg, but this didn't work.
The saved picture is still colorized. Even if i try the greyscale command it's colorized.
What's wrong with the script?


Code:
(define (convert-mono pattern )
(let* ((filelist (cadr (file-glob pattern 1))))
(while (not (null? filelist))
(let* ((filename (car filelist))
(image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
(gimp-image-convert-indexed image CONVERT-DITHER-NONE CONVERT-PALETTE-MONO 0 0 1 "" )
(drawable (car (gimp-image-get-active-layer image))))
(gimp-file-save RUN-NONINTERACTIVE image drawable filename filename)
(gimp-image-delete image))
(set! filelist (cdr filelist)))))
EDIT
for testing purposes i have made the following version, it didn't work.
The result is not grayscaled.

Code:
(define (convert-mono pattern )
(let* ((filelist (cadr (file-glob pattern 1))))
 (while (not (null? filelist))
 (let* (
       (filename (car filelist))
       (destination_file "")
       (image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
     (drawable (car (gimp-image-flatten image)))
     (gimp-image-convert-grayscale image)
       )
       
  (set! destination_file (string-append "out-" filename))
  (gimp-file-save RUN-NONINTERACTIVE image drawable destination_file destination_file)
  (gimp-image-delete image)
 )
 
 (set! filelist (cdr filelist)))
)
)

Print this item

  Turn text into a mask
Posted by: dfansler - 08-11-2021, 01:41 PM - Forum: General questions - Replies (3)

I am running GIMP 2.10.20 (revision 1).  I am designing a logo for my boat - the name is Dragon Fire.  I have an image of dragon breathing fire, along with the text "Dragon Fire"  Rather than having solid color text, I decided to make the text filled with the flame.  So I made a new layer and copied the flame into it.  The flame has been placed under the text.  This flame layer is just beneath the text layer.

I did a rectangular selection of the text (which has a transparent background) and made a mask using the selection.  I subtracted this from the flame layer, but got a rectangular product.

How can I turn the text itself into a mask to subtract from the flame?

Thanks,
David

Print this item

  Newbie: Fade into white via selection
Posted by: Christian - 08-11-2021, 07:21 AM - Forum: General questions - Replies (2)

Hi all,

as a Newbie I searched and watched on Youtube how to create a fade into a picture.

I want to make a selection of my face and then fade the background into white.

I am successful doing this with a AddMask (white) and the Gradient Tool. But this is just a vertical fade. I want to customize this fade on a specific selection (of my head).

Help appreciated!
Chris

Print this item

  Correct pale effect in part of image
Posted by: mand71 - 08-11-2021, 07:17 AM - Forum: General questions - Replies (3)

Hi,
I am experimenting with enhancement of old images.
The text and image on the right bottom are pale.
I would like the color darkness on the text and images on the right bottom the same as left top.
How to accomplish that in gimp.
Thank you and have a great day.
Mandy



Attached Files Thumbnail(s)
   
Print this item

  Batch Color Saturation
Posted by: firefly - 08-10-2021, 04:55 PM - Forum: Extending the GIMP - Replies (13)

How do I do batch Color Saturation?  I don't see an option in the Batch Manipulation menu and I don't want to use Hue Saturation.

Print this item

  Scaling layers
Posted by: FAMOsa - 08-10-2021, 11:52 AM - Forum: General questions - Replies (5)

Hello.  Thank you all in advance.

I make a lot of composite pictures with many layers.  I import an image as a layer and then I click on it and on the scale tool and I get a little grid over the layer and I can adjust the size as I like.  I have done this many time, but in one document the scale tool is acting fishy.  I get the grid, but it is not the same as the layer.  It is some crazy configuration like width=3000 pixels.  height=1 pixel. 
I've tried to reset that tool, both in the gimp preferences and in the reset button in the scale dialog box.  I can never make it go back to the original way of just giving me a grid over the selected layer. 

I would appreciate any help.

Print this item

  Find that menu entry
Posted by: rich2005 - 08-09-2021, 08:53 AM - Forum: Tutorials and tips - No Replies

Some plugins are not hidden in a menu but are at the end of a 'nest' of sub-menus. In particular is the Paths Dock where the right-click context menu is long. (1)

   

That is ok for a single use, consecutive repeated use is catered for by the Filters CTRL-F and SHIFT-CTRL-F keyboard shortcuts. (see: 8)

   

An alternative method is using the built-in  Gimp Search.  Press the ? / key (2) and enter the menu name as an entry (3) and it gives a list of possibilities.  Click on the entry (4) and in this case it brings up the plugin dialogue (5)

   

If your memory is not too good, you do not have to be too accurate with the search term, often a partial phrase works (6) and if you are using lots of paths, do not be lazy, give them a name (7) It does help with path plugins.  Back to the beginning, Using the same plugin repeatedly ? Then top of the Filters menu are Repeat functions (8).

   

Note: This is in addition to the Windows -> Help -> Plugin Browser which gives the menu location as text.

Print this item