| Welcome, Guest | 
 
You have to register before you can post on our site. 
 
 | 
 
  
 
 
| Latest Threads | 
 
"Plug-in crashed" on GIMP...
 
Forum: General questions 
Last Post: rich2005 
1 hour ago 
» Replies: 3 
» Views: 332
 | 
 
AIMAGoR - Artificial IMAg...
 
Forum: Other graphics software 
Last Post: vitforlinux 
3 hours ago 
» Replies: 23 
» Views: 9,665
 | 
 
Isolate, select and copy/...
 
Forum: General questions 
Last Post: denzjos 
Yesterday, 06:22 PM 
» Replies: 5 
» Views: 274
 | 
 
RapidRAW
 
Forum: Other graphics software 
Last Post: denzjos 
Yesterday, 12:51 PM 
» Replies: 2 
» Views: 182
 | 
 
Tutoriel   installer Drea...
 
Forum: Tutorials and tips 
Last Post: meric57 
Yesterday, 07:45 AM 
» Replies: 0 
» Views: 17
 | 
 
Nouveau Arrivant sur le f...
 
Forum: Watercooler 
Last Post: meric57 
Yesterday, 06:45 AM 
» Replies: 0 
» Views: 17
 | 
 
Accessing GIMP’s internal...
 
Forum: General questions 
Last Post: rich2005 
11-02-2025, 12:35 PM 
» Replies: 1 
» Views: 161
 | 
 
Can't find path plug-in
 
Forum: General questions 
Last Post: programmer_ceds 
11-01-2025, 04:47 PM 
» Replies: 7 
» Views: 446
 | 
 
Gimp shows blank black sc...
 
Forum: Windows 
Last Post: rich2005 
11-01-2025, 09:01 AM 
» Replies: 1 
» Views: 161
 | 
 
Outlined and filled in 3....
 
Forum: General questions 
Last Post: rich2005 
10-31-2025, 04:42 PM 
» Replies: 2 
» Views: 241
 | 
 
 
 
 | 
  | 
|   scriptfu could says what values to be expected | 
 
| 
Posted by: estatistics  - 02-24-2025, 07:53 PM - Forum: Scripting questions 
- Replies (2)
 | 
 
	
		
  | 
		
			 
				scriptfu could says what values to be expected instead of saying only  
"Error: Invalid value for argument 1" 
Moreover it can provide an example how to set the arguments in a variable.  
eg. (file-webp-export  1 0 0 0 a.jpg b.jpg) can save a as b with these numberd arguments means ...   
 
 
How to export all my jpg images as webp using gimp in linux bash in batch?  
 
gimp -i  -b '(let* ((image (car (gimp-file-load RUN-NONINTERACTIVE "DSC_0978.JPG"))))(file-webp-export RUN-NONINTERACTIVE image "DSC_0978.webp" lossless include-exif include-xmp))' --batch-interpreter="plug-in-script-fu-eval" 
 
I cant understand what arguments must put in which positions. Script fu menu for file-webp-export has a lot! Whcih of these are essential and in what positions? 
  
When using  
Code: 
 gimp -i  -b '(let* ((image (car (gimp-file-load RUN-NONINTERACTIVE "DSC_0978.JPG"))))(file-webp-export RUN-NONINTERACTIVE image "DSC_0978.webp"))' --batch-interpreter="plug-in-script-fu-eval"
  
 
 
it says  
Code: 
 (script-fu:457680): scriptfu-WARNING **: 14:16:06.586: Missing arg type: GimpExportOptions 
(script-fu:457680): scriptfu-WARNING **: 14:16:06.586: Calling Plug-In PDB procedures with arguments as an ordered list is deprecated. 
Please use named arguments: (file-webp-export #:run-mode 1 #:image 1 #:file DSC_0978.webp) 
batch command executed successfully
  
 
 
but when using  
Code: 
 gimp -i  -b '(let* ((image (car (gimp-file-load RUN-NONINTERACTIVE "DSC_0978.JPG"))))(file-webp-export run-mode "1" image "DSC_0978.webp" 100))' --batch-interpreter="plug-in-script-fu-eval"
  
 
it says 
Code: 
  batch command experienced an execution error: 
Error: eval: unbound variable: run-mode  
Stopping at failing batch command [0]: (let* ((image (car (gimp-file-load RUN-NONINTERACTIVE "DSC_0978.JPG"))))(file-webp-export run-mode "1" image "DSC_0978.webp" 100))
  
			
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
|   Can not make bookmarks for image folder | 
 
| 
Posted by: JaBo  - 02-24-2025, 07:35 PM - Forum: Installation and usage 
- Replies (4)
 | 
 
	
		
  | 
		
			 
				I have a dual boot set up (Windows 11/Ubuntu 24.04) with Gimp 2.10.38.  
In GIMP on my Ubuntu OS I want to make a bookmark for the my images folder (not sure of the English Windows folder name) on the Windows drive. I can access this folder in the open dialogue but if I want to bookmark it, the bookmark option is greyed out. Note that I can make bookmarks for other folders on the Windows drive.
			 
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
 
|   Gimp make jpg to Webp 100% quality half size while IM6 make double size. why? | 
 
| 
Posted by: estatistics  - 02-24-2025, 06:04 PM - Forum: General questions 
- Replies (8)
 | 
 
	
		
  | 
		
			 
				Same JPG picture with 100% quality in GIMP, and saving all information, without any other processing 
a) Saving it as WEBP, result half size. 
b) Running  mogrify -quality 100 -format  webp on same JPG picture, double size resulted. 
 
Why? What is doing GIMP and what is doing IM6 mogrify when transforming JPG to webp format?  
Note that the differences in picture quality between JPG and gimp 100% webp and im6 100% webp in full zoom are almost not visible. 
 
 
The original picture. 
greek carnaval pic 
 
Because i have GIMP 3, is lacking scipt-fu in menu (why?) 
using bash, i try to make all jpg to be saved as webp. How? 
 
 
gimp -i --verbose -b  '(let* (file-webp-save 1 image drawable "$webp_name" "$webp_name" 0 $lossless $quality 100.0 1 1 1 0 0 0 0 67 0))' --batch-interpreter="plug-in-script-fu-eval" 
			 
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
|   select outline | 
 
| 
Posted by: ElkMan3  - 02-23-2025, 09:06 PM - Forum: General questions 
- Replies (2)
 | 
 
	
		
  | 
		
			 
				i am trying to select the outline of an image, but the outline is not all the same color and is slightly blended into the main color. my goal is to make the whole outline all the same color.
			 
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
|   Eraser Stopped Working | 
 
| 
Posted by: Connolly Music Creations  - 02-23-2025, 04:41 PM - Forum: General questions 
- Replies (11)
 | 
 
	
		
  | 
		
			 
				I've been erasing the background on an image (saving frequently) but then out of nowhere the eraser stopped working.  I can still change the brushes, sizes, opacity, etc., but it doesn't erase.  On the toolbox under Eraser the Mode says Normal and I can't change that, but I'm so new I don't know if that's typical or not.  Since I shut down and came back to working on it, is there a history I can go back to and pick up from there?  Thanks!
			 
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
|   I can't edit a path | 
 
| 
Posted by: Bob W  - 02-23-2025, 03:43 AM - Forum: General questions 
- Replies (2)
 | 
 
	
		
  | 
		
			 
				A few days a ago I created a closed path, edited it a bit, and saved it as an svg file. 
 
Today I tried to load the path and edit it some more.  The path loaded and I can see it.  I am in path editing mode and can't edit the path.  I can not see the points in the path.  The cursor stays the same -- with a little circle with a slash through it -- no matter what I do.  I try clicking on the path and nothing happens.  I can't move any points. 
 
What can be done to fix this?
			 
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
 
|   Multiple install paths in Win 10 – can I delete? | 
 
| 
Posted by: LateJunction  - 02-20-2025, 10:06 AM - Forum: Windows 
- Replies (2)
 | 
 
	
		
  | 
		
			 
				This user has a long and noteworthy track record of not understanding how/where/why/when/who GIMP is installed on my Win10 PCs. I have just noticed that some components of my installed version 2.10.38 (replacing 2.10.28, I think, some considerable time ago) appear in two places, at least. For example: 
 
- %AppData%\Local\Programs\GIMP 2\share\gimp\2.0\brushes 
 
-%AppData%\Roaming\GIMP\2.10\brushes 
 
Most of the resource folders in this 2.10 directory are more than 2 years old and are empty (e.g. the brushes folder), but all of the files in 2.10 with filename ‘*rc’ (no extension) were updated this morning. So I am in doubt about whether or not I can delete this GIMP data in %AppData%\Roaming\.  
 
Any advice?
			 
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
|   Some questions about brushes | 
 
| 
Posted by: AlisonJones  - 02-20-2025, 05:19 AM - Forum: General questions 
- Replies (2)
 | 
 
	
		
  | 
		
			 
				SO…I have some questions about brushes, first one is, if I alter a brush type and size can I save those settings so that I  I don't have to readjust a brush again to get those settings? And if I can where would I find that brush should I want to use it again. Also, is there a way to pick out a few favorite brushes to make a set out that I can dock, so I don't have to go through all of the brushes to find them every time. Thank you for any help.
			 
			
		 | 
	 
	
		
			
				 
			
		 | 
	 
 
 | 
 
 
 
 |