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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,966
» Latest member: wingnet
» Forum threads: 7,717
» Forum posts: 41,961

Full Statistics

Latest Threads
plugin-py3-export-all
Forum: Extending the GIMP
Last Post: CowboyJoe
32 minutes ago
» Replies: 5
» Views: 220
Pasting a layer group wit...
Forum: General questions
Last Post: teapot
43 minutes ago
» Replies: 0
» Views: 29
Can the gradient tool be ...
Forum: General questions
Last Post: ESH
Yesterday, 09:34 PM
» Replies: 3
» Views: 232
Gimp 2.10.30 Text alignme...
Forum: General questions
Last Post: sallyanne
Yesterday, 11:13 AM
» Replies: 1
» Views: 142
Gimp 3 path tool auto con...
Forum: General questions
Last Post: CmykStudent
11-26-2025, 02:01 AM
» Replies: 9
» Views: 677
Numerous issues with 3.0+...
Forum: General questions
Last Post: rich2005
11-24-2025, 09:51 PM
» Replies: 2
» Views: 230
How to transform a layer ...
Forum: General questions
Last Post: stacash
11-24-2025, 08:47 PM
» Replies: 10
» Views: 787
How to make contours in G...
Forum: General questions
Last Post: denzjos
11-23-2025, 07:10 PM
» Replies: 2
» Views: 252
Has anyone tried getting ...
Forum: Extending the GIMP
Last Post: vitforlinux
11-22-2025, 04:32 PM
» Replies: 2
» Views: 336
What exactly tutorials ar...
Forum: General questions
Last Post: sallyanne
11-22-2025, 06:44 AM
» Replies: 6
» Views: 702

 
  Cannot rotate Grid lines with Layer - Win 11 - GIMP 3.0.4
Posted by: toliveras23 - 07-22-2025, 01:14 AM - Forum: General questions - Replies (2)

[attachment=13722]

Windows 11 (64-bit)
GIMP 3.0.4

I select the correct layer that I have add Grid Lines.

I use the Rotate Tool with Layer selected and rotate 60 degrees.

Grid lines merely offset to upper left instead of rotating 60 degrees.

Print this item

  Can not save or export pictures, button is off the bottom of page
Posted by: Holographic Breathing - 07-21-2025, 11:34 AM - Forum: General questions - Replies (6)

I cannot save or export pictures; the button is off the bottom of the page.

Here is a video showing the problem. This was before I found out that the button was off the bottom of the page.

But even now, there is still no way of getting to the button.

If you know a way of accessing the Button, please let me know.



Sorry if I was very stressed and annoyed when I made this video.


Any help appreciated, thank you in advance.



https://youtu.be/AgwZ-nquSbo

Print this item

  [Python] In-memory save png
Posted by: DunkleMaterie - 07-19-2025, 08:34 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (4)

Hello,

I don't know, whether such a feature is realizable without certain changes to the Gio, but let me just describe my intent:

In a plugin, I want to send an "copy" of current image to a service using urllib.request.Request. Currently, I save the png image as usual using Gimp.file_save(), reopen it to read the data as bytes and attach them to a boundarized body. Then I send this body using the content-type 'multipart/form-data; boundary=xxxx' to the web service. I get an answer, evaluate the response and add the retrieved image to a new created layer. This all is working well and stable.

But I just want to get rid of storing the image into a file and read it again to a byte buffer. Already tried Gio.File.new_for_uri() and point the uri to memory, but my current knowledge for this aspect of the Gio library is literally not existent  Big Grin

Maybe there is a more elegant way to implement a in-memory file storage, as the export to PNG format is crucial.

Does someone has an approach in mind and could give me some pointers to study?

Thanks

Print this item

  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?

Print this item

  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!

Print this item

  Gimp 3.0.4 Appimage by IvanHC, fully working
Posted by: vitforlinux - 07-19-2025, 11:44 AM - Forum: Alternate Gimp packagings - No Replies

The 3.0.2 version of Gimp AppImage by IvanHC was too lightweight and did not work completely, but with Gimp GIT, one could survive.

Today I read on my GitHub that the issues are resolved, the new 3.0.4 Works!

To download it:
https://github.com/ivan-hc/GIMP-appimage...ous-stable

G'mic is not supported.

Print this item

  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.

Print this item

Python 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!

Print this item

  Clone size randomly changes
Posted by: oldschool1@runbox.com - 07-16-2025, 10:03 PM - Forum: General questions - Replies (2)

I'm running GIMP 2.10.38, but I've also downloaded 3.04 as an appimage and had the same issue with it. I'm on the latest update of MX Linux.

A few months ago, whenever I try and use the clone tool, the tool size seemingly randomly changes size and orientation when I move the cursor or tool. I've tried disabling dynamics options, but this had no effect. In the paint dynamics editor, the opacity, size, and angle have an x in the random column, which I cannot change. While I don't know if that is related, it may be relevant.

I've uninstalled and reinstalled gimp to no avail. As I've said, I downloaded 3.04 as an appimage with the same results. 

Running this for graphics:

Code:
Graphics:
  Device-1: NVIDIA GM107GLM [Quadro M1200 Mobile] vendor: Lenovo driver: nvidia v: 535.247.01
    non-free: 530.xx+ status: current (as of 2023-03) arch: Maxwell code: GMxxx process: TSMC 28nm
    built: 2014-19 pcie: gen: 1 speed: 2.5 GT/s lanes: 16 link-max: gen: 3 speed: 8 GT/s
    bus-ID: 01:00.0 chip-ID: 10de:13b6 class-ID: 0300
   Display: x11 server: X.Org v: 1.21.1.7 compositor: xfwm v: 4.20.0 driver: X: loaded: nvidia
    unloaded: fbdev,modesetting,nouveau,vesa alternate: nv gpu: nvidia display-ID: :0.0 screens: 1


ANY ideas?

Print this item

  Gimp Crash
Posted by: KjellA - 07-15-2025, 09:32 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (1)

I have windows 11. I open Gimp 3.04 and try to open an image then gimp closes, I have uninstalled and removed everything and reinstalled but the same thing happens time and time again

Print this item