| 
| Welcome, Guest |  
| You have to register before you can post on our site. 
 
 |  
 
 
 
| Latest Threads |  
| Outlined and filled in 3.... Forum: General questions
 Last Post: rich2005
 5 hours ago
 » Replies: 2
 » Views: 77
 |  
| Can't find path plug-in Forum: General questions
 Last Post: programmer_ceds
 11 hours ago
 » Replies: 5
 » Views: 199
 |  
| Upgrade 3.0.6 Forum: Windows
 Last Post: J-C R 45
 Today, 03:07 AM
 » Replies: 4
 » Views: 282
 |  
| ASTROPHOTOGRAPHY- CREATIN... Forum: Tutorials and tips
 Last Post: Zero01
 Yesterday, 07:24 PM
 » Replies: 5
 » Views: 477
 |  
| "Plug-in crashed" on GIMP... Forum: General questions
 Last Post: rich2005
 10-29-2025, 09:26 AM
 » Replies: 1
 » Views: 189
 |  
| free e-on 3D software Forum: Other graphics software
 Last Post: gasMask
 10-29-2025, 07:43 AM
 » Replies: 2
 » Views: 204
 |  
| fill area has a border.. Forum: General questions
 Last Post: Studoc64
 10-29-2025, 12:48 AM
 » Replies: 3
 » Views: 207
 |  
| A simple function to use ... Forum: Extending the GIMP
 Last Post: Scallact
 10-27-2025, 05:20 PM
 » Replies: 0
 » Views: 163
 |  
| Is there any version wher... Forum: Older Gimp versions (2.8, 2.6....)
 Last Post: rich2005
 10-27-2025, 11:06 AM
 » Replies: 9
 » Views: 2,882
 |  
| Copy content of channels ... Forum: General questions
 Last Post: Ofnuts
 10-26-2025, 12:41 PM
 » Replies: 2
 » Views: 310
 |  
 |  | 
 
 
| \Data\.gimp\backups\.goutputstream-XXXXXX Files |  
| Posted by: DoughyInTheMiddle  - 11-16-2018, 08:14 PM - Forum: General questions 
- Replies (2) |  
| 
	
		
|  | 
				Absolutely first time poster, but figured I'd go to the community with this because I haven't found anything Gimp related to cause this.
 In the folder above, I've got about 20 files ranging from a couple that are empty, to a handful that are around 12MB in size, but half of them are around 500mb in size. My assumption is that these were times that gimp crashed and created a temporary backup, but the weird thing is that they never cleared out.
 
 I've got 4GB of data sitting in there and just wanna make sure my assumptions are correct before I purge them.
 
 Help appreciated in advance.
 |  
		|   |  |  
 
| Clipping mask |  
| Posted by: grit  - 11-16-2018, 10:23 AM - Forum: General questions 
- Replies (5) |  
| 
	
		
|  | 
				In PS if you have bottom layer with some shape let's say rectangle, and you create top layer with clipping mask, everything you paint in top layer can't go outside that rectangle in  bottom shape.
 How to do that in GIMP?
 |  
		|   |  |  
 
| Resynthesizer Instal Issue in GIMP 2.10.8 |  
| Posted by: Traceybear  - 11-16-2018, 05:52 AM - Forum: Extending the GIMP 
- Replies (2) |  
| 
	
		
|  | 
				Hi, I have been trying to get Resynthesizer to work in GIMP 2.10.8 all day. I have reinstalled GIMP. It was originally an update from 2.8 where the heal selection tool worked great. I installed the new GIMP and installed the 64 bit windows versions of resynthsizer.exe and resynthesizer.gui along with the plugin-heal-selection.py. However, I get the error
 Calling error for procedure 'gimp-procedural-db-proc-info':
 
 Procedure 'plug-in-resynthesizer' not found
 
 with the details
 
 raceback (most recent call last):
 File "C:\Program Files\GIMP 2\32\lib\gimp\2.0\python/gimpfu.py", line 740, in response
 dialog.res = run_script(params)
 File "C:\Program Files\GIMP 2\32\lib\gimp\2.0\python/gimpfu.py", line 361, in run_script
 return apply(function, params)
 File "C:\Users\Tracey\AppData\Roaming\GIMP\2.10\plug-ins\plugin-heal-selection.py", line 148, in heal_selection
 pdb.plug_in_resynthesizer(timg, tdrawable, 0,0, useBorder, work_drawable.ID, -1, -1, 0.0, 0.117, 16, 500)
 error: procedure not found
 
 I do still have the 2.8 file in my profile but renamed it 2.8  old. Does anybody have any suggestions?
 
 Thanks in advance!
 |  
		|   |  |  
 
 
 
| Gimp 2.10 'with files' batch |  
| Posted by: rich2005  - 11-15-2018, 11:34 AM - Forum: Extending the GIMP 
- Replies (1) |  
| 
	
		
|  | 
				As you know, I am not a coder. Selina in this post https://www.gimp-forum.net/Thread-Changi...5#pid11445 has an unknown number of .xcf files of various ppi and would like all as 96 ppi.
 
 A little plugin to do one at a time: Does not do much, sets the ppi and saves the image straight away.
 
 
 
Code:
 #!/usr/bin/python# -*- coding: utf-8 -*-
 
 from gimpfu import*
 
 def plugin_96ppi(img, drawable):
 
 filename = img.filename
 pdb.gimp_image_set_resolution(img, 96.0, 96.0)
 pdb.gimp_file_save(img, drawable, filename, filename)
 pdb.gimp_image_clean_all(img)
 
 register(
 "python_fu_96ppi",
 "set96ppi",
 "*",
 "*",
 "*",
 "2018",
 "<Image>/Tools/set-96ppi",
 "*",
 [],
 [],
 plugin_96ppi)
 
 main()
 Can this be used in a Gimp batch mode? https://wiki.gimp.org/wiki/Release:2.10_changelog has a with-files macro. Seems simple but I can not get this to work. Not using the flatpak, using a 'bunt' 18.10 VM & Gimp 2.10.6
 
 
 Quote:-A new 'with-files' macro is available to run commands on several files at once. For instance, if you want to invert colors of all png files in a directory, and save them as jpg, you could run:gimp -i -b '(with-files "*.png" (gimp-invert layer) \
 (gimp-file-save 1 image layer \
 (string-append basename ".jpg") \
 (string-append basename ".jpg") ))'
 **quiet rant** Gimp really needs some sort of macro facility that does not rely on command line or writing a script. Tried all ways with BIMP but it just does not handle .xcf files with several layers.
 |  
		|   |  |  
 
| How to mirror and align text |  
| Posted by: Aertew  - 11-15-2018, 02:17 AM - Forum: General questions 
- Replies (2) |  
| 
	
		
|  | 
				So here is the problem, I have text right, but, I want it to have a equal distance from each other. So I have my first text, I have tried creating a copy and flipping it, that didn't work with text, with images its fine because with images they the same area as of the entire image, but text is different, because with text they only have the area of themselves, even then, I cant flip the text because then I cant edit the text afterwords. That's the best I could explain my problem, sorry if its confusing.
 TL;DR I want to have a equal distance between my text.
 |  
		|   |  |  
 
| Help Uninstall Script-fu |  
| Posted by: stevecuss  - 11-14-2018, 04:20 PM - Forum: OSX 
- Replies (1) |  
| 
	
		
|  | 
				Hello,
 I am in a pickle and hope someone can help me. I downloaded Gimp last week from the main website and tried to install it but kept having troubles. It would open but never seemed to install into my applications.
 
 I tried using Gimp and gave up on the complexity and found a simpler design solution for my needs. I think I installed Gimp, but can't tell. It doesn't show up in my spotlight or any search.
 
 Ever since I downloaded GIMP, my battery runs hots, fan always on, battery drains super fast. I ran activity monitor and something called "script-fu" is taking 95% of cpu. It won't allow me to delete or quit it and I can't find where it is located on my mac. I used a 3rd party sweeper and still can't seem to find it.
 
 Can anyone help me out? Somehow Gimp has installed it running on my mac, without gimp itself running and it is severely affecting performance. I'm puzzled as to why I can't locate it.
 
 thanks so much for any assistance you can offer
 
 I reinstalled Gimp to see if that would help. Here is what I currently know
 
 - Gimp took several minutes to verify
 - Gimp appears to have only run from the installer. It is not in my apps.
 
 I was thinking if I reinstalled gimp, it would help me figure out where script-fu is and how to delete/disable it.
 |  
		|   |  |  
 |