| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 4,974
» Latest member: AngryDude
» Forum threads: 7,720
» Forum posts: 41,977
Full Statistics
|
| Latest Threads |
Isse with applying Layer ...
Forum: General questions
Last Post: rich2005
6 hours ago
» Replies: 1
» Views: 73
|
Average colour in GIMP - ...
Forum: Extending the GIMP
Last Post: Zbyma72age
Yesterday, 05:25 PM
» Replies: 3
» Views: 197
|
Batcher - Batch Image Pro...
Forum: Extending the GIMP
Last Post: chuckhenrich
Yesterday, 10:51 AM
» Replies: 7
» Views: 8,422
|
plugin-py3-export-all
Forum: Extending the GIMP
Last Post: Ofnuts
Yesterday, 08:19 AM
» Replies: 6
» Views: 447
|
pencil don't have full co...
Forum: General questions
Last Post: rich2005
11-30-2025, 08:03 PM
» Replies: 4
» Views: 3,461
|
Pasting a layer group wit...
Forum: General questions
Last Post: teapot
11-29-2025, 04:06 AM
» Replies: 2
» Views: 243
|
Can the gradient tool be ...
Forum: General questions
Last Post: CmykStudent
11-28-2025, 01:14 PM
» Replies: 6
» Views: 429
|
Gimp 2.10.30 Text alignme...
Forum: General questions
Last Post: sallyanne
11-27-2025, 11:13 AM
» Replies: 1
» Views: 200
|
Gimp 3 path tool auto con...
Forum: General questions
Last Post: CmykStudent
11-26-2025, 02:01 AM
» Replies: 9
» Views: 804
|
Numerous issues with 3.0+...
Forum: General questions
Last Post: rich2005
11-24-2025, 09:51 PM
» Replies: 2
» Views: 301
|
|
|
| Gimp 3.0.2- Problem merging down layers |
|
Posted by: Mel987 - 07-22-2025, 03:00 AM - Forum: General questions
- Replies (3)
|
 |
Hi! I need to emerge some layers, but when I try to do so the program erases one of them instead of emerging them (if I use emerge down) or most of them (If I try to add my layers to a group to emerge it as a whole, most of them become invisible before I even try to emerge them), and I don't know why. This problem only presents with one file so I don't think it's a problem with my Gimp or its configuration, but I've been only working with Gimp for a few months, so I don't know much about the program or how to solve this problem. Thanks for the help!
(Please forgive any grammatical errors, English isn't my first language)
|
|
|
| copy sequence of filters applied in one image to other image |
|
Posted by: estatistics - 07-19-2025, 03:50 PM - Forum: General questions
- Replies (3)
|
 |
I want to copy the sequence of filters applied in one image to other image.
I cant remember either their values or the queue of the filters. I knwo how to use under history, and recently used filters.
I want the easiest way to apply it.
Chatgpt suggested to save the image as xcf, copy visible from edit, and then paste as new layer. Dont work. It copy the image as whole not only the filter that i have applied to this image.
How i can copy a batch of filters applied to an image as edits to another image?
|
|
|
| Python Snippets for GIMP 3 |
|
Posted by: pixelmixer - 07-19-2025, 01:21 PM - Forum: Scripting questions
- Replies (4)
|
 |
Hi all,
I’m familiar with Script-Fu, but I know nothing about Python scripting. (GIMP 3)
I’m testing a macro system and would really appreciate some small, self-contained Python snippets that can run with a button press, just something minimal to confirm it's working.
Any suggestions or examples would be cool.
Thanks!
|
|
|
| text tool |
|
Posted by: inemar - 07-19-2025, 05:53 AM - Forum: General questions
- Replies (2)
|
 |
After copying a text in OpenOffice, I cannot paste it into the text of the Text tool. Nothing happens but I receive the message underneath (I translate French into English): "There is no image data in the clipboard".
Thank you for suggestions.
|
|
|
edit_paste pastes at incorrect location after scaling |
|
Posted by: class43 - 07-17-2025, 01:41 PM - Forum: Scripting questions
- Replies (2)
|
 |
I am working on an application to scale an image, but the bottom part of the image contains a special pattern that must be copied over and repeated since it is distorted during scaling. I have the following section of code:
Code:
image1 = Gimp.file_load(Gimp.RunMode.NONINTERACTIVE, Gio.file_new_for_path(image1_dir))
image1_width = image1.get_width()
image1.select_rectangle(Gimp.ChannelOps.REPLACE, 0, 1479, image1_width, 57)
image1_dr = image1.get_selected_drawables()
Gimp.edit_copy(image1_dr)
image.scale(image_new_width, image_height)
image1.select_rectangle(Gimp.ChannelOps.REPLACE, 0, 1479, image1_width, 57)
image1_dr = image1.get_selected_drawables()
Gimp.edit_paste(image1_dr[0], True)
image1.select_rectangle(Gimp.ChannelOps.REPLACE, image1_width, 1479, image1_width, 57)
image1_dr = image1.get_selected_drawables()
Gimp.edit_paste(image1_dr[0], True)
In this code, I select and copy an area of size (width, 57) from coordinate (0,1479). Then, I scale the image to a new width. I then try and paste the selected area at coordinates (0,1479) and then at (original_width, 1479). So the whole of the bottom of the new image should have the original pattern. However, only a region on the bottom right of the image is covered, and not at the specified regions. In an example, if width was originally 25378, and then scaled to 31234, the selected area was only pasted onto the region from (15617,1479) to (31234,1479). The other area where I pasted first from (0,1479) to (15617,1479) has the distorted pattern after scaling and not the original pattern that was pasted onto it.
Can you please explain why this occurs, and suggest a way to properly copy and paste the original pattern onto the scaled image?
Thank you for your help!
|
|
|
|