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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 4,589
» Latest member: jadekristina
» Forum threads: 7,462
» Forum posts: 40,782

Full Statistics

Latest Threads
v3.04 Script Error sg-sav...
Forum: Extending the GIMP
Last Post: Bookman
17 minutes ago
» Replies: 2
» Views: 106
Export all opened images ...
Forum: Extending the GIMP
Last Post: MrsP-from-C
43 minutes ago
» Replies: 17
» Views: 9,469
Technique for removing ov...
Forum: General questions
Last Post: sallyanne
2 hours ago
» Replies: 13
» Views: 1,024
Can tooltip display time ...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: cjsmall
3 hours ago
» Replies: 2
» Views: 72
'Transparent' area is bro...
Forum: General questions
Last Post: sallyanne
3 hours ago
» Replies: 5
» Views: 178
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: vitforlinux
Yesterday, 12:45 PM
» Replies: 11
» Views: 3,255
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: rich2005
Yesterday, 07:15 AM
» Replies: 6
» Views: 353
.SCM and .PY files are no...
Forum: Gimp-Forum.net
Last Post: Ofnuts
07-04-2025, 05:28 PM
» Replies: 0
» Views: 90
Bug: gimp-drawable-get-pi...
Forum: Scripting questions
Last Post: programmer_ceds
07-04-2025, 03:55 PM
» Replies: 8
» Views: 304
blank screen
Forum: OSX
Last Post: wilsonpig
07-04-2025, 08:58 AM
» Replies: 4
» Views: 203

 
  arrow-set-size.scmについて
Posted by: mkunio - 04-16-2025, 08:35 AM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (3)

Windows 10でGIMP 3.0を動かしていますが
arrow-set-size.scmが動きません。
御教授、お願いします。

Print this item

  gimp exposure : value for photo stops
Posted by: denzjos - 04-15-2025, 09:50 AM - Forum: General questions - Replies (2)

I have a few photos where I knew I was shooting with 1.5 stops of correction. That was too much, not overblown, but just a little too much. What is the relationship between the values in the 'Colors / Exposure' slider and one aperture stop more/less (or double/half iso or shutter speed)?

Print this item

  How do I place 2 borders around an image ?
Posted by: Clueless - 04-14-2025, 09:17 PM - Forum: General questions - Replies (5)

Hi 


Please can anyone tell me how do I place a white border around an image that has a white surrounding area, and then another coloured border ? 

I thought it would be as easy to insert a white border first and then another larger coloured (colored) border, however the white border has a differently shaded area along 2 sides with a mitre in one corner. 

thanks in advance

Print this item

  undo history
Posted by: MJ Barmish - 04-14-2025, 10:14 AM - Forum: General questions - Replies (4)

Hello everyone. I would like to know if anyone knows a way to save the undo history (for now, I still have to write down the steps of my work in a notebook).

Print this item

  Installing a font
Posted by: chris64 - 04-14-2025, 02:41 AM - Forum: General questions - Replies (2)

I have been installing fonts for years. They have always been successful. However, for some reason it's not working anymore.

I go into gimp/setting/folders/font
It shows where I need to place these new fonts
It says that it should be in:
Users/donald/Library/Application support/GIMP/2.10/fonts

As you can see by the screenshot that 123Marker.ttf is in this directory

Why does this not work?

Huh

https://drive.google.com/file/d/155RPG7N...drive_link

Print this item

  Alpha layer exports all black
Posted by: woodcraftcz - 04-13-2025, 06:15 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (6)

Hiya absolutely new to GIMP but could someone tell me why I can't export an image that has a top layer set as alpha, it just comes out black and not like how it looks in the work area  Confused 

TIA

Print this item

  How to Dispose of Gegl Color
Posted by: silenuznowan - 04-13-2025, 03:46 PM - Forum: Scripting questions - Replies (3)

I have a script that does some selects and cuts based on color.
   

Code:
image = pyi.file_load(r'/windows/projects/5150/Graphic Prefabs for Maps/geomorphs/hi-res/dead_parrot/legend/blank/4cb2d3ac-a815-4728-a8a1-0fac1e5e1e6f-018.png')
    color = Gegl.Color.new("black")

    layer = image.get_layers()[0]
    pyi.layer_add_alpha(layer)
    pyi.image_select_color(image, Gimp.ChannelOps.REPLACE, layer, color)
    pyi.gimp_selection_invert(layer)
    pyi.drawable_edit_clear(layer)
    pyi.image_resize(image, 7857, 6068)
   
    pyi.file_save(image, r'/windows/projects/5150/Graphic Prefabs for Maps/geomorphs/hi-res/dead_parrot/test/end.png')
    pyi.gimp_selection_none(image)
    pyi.image_delete(image)
    color.do_dispose()
    del color

    pyi.gimp_quit(False)

When run it either reports 1 or 2 leaked buffers. I have tried to dispose of the color item but have as yet been unsuccessful.  When run without any color creation like this, it runs with no buffer leaks.

Code:
    image = pyi.file_load(r'/windows/projects/5150/Graphic Prefabs for Maps/geomorphs/hi-res/dead_parrot/legend/blank/4cb2d3ac-a815-4728-a8a1-0fac1e5e1e6f-018.png')
    layer = image.get_layers()[0]
    pyi.layer_add_alpha(layer)   
    pyi.image_resize(image, 7857, 6068)  
    pyi.file_save(image, r'/windows/projects/5150/Graphic Prefabs for Maps/geomorphs/hi-res/dead_parrot/test/end.png')
    pyi.gimp_selection_none(image)
    pyi.image_delete(image)  
    pyi.gimp_quit(False)

  Hoping someone can help me find the problem.  Here's the output, this time it was just one leaked buffer but sometimes it is two:

Quote:Leaked buffer allocation stack trace:
/usr/local/lib64/libgegl-0.4.so.0(+0x4eefa) [0x7f1aac639efa]
/lib64/libgobject-2.0.so.0(g_type_create_instance+0x271) [0x7f1aac867af1]
/lib64/libgobject-2.0.so.0(+0x1d684) [0x7f1aac84b684]
/usr/local/lib64/libgegl-0.4.so.0(+0x4f2a8) [0x7f1aac63a2a8]
/lib64/libgobject-2.0.so.0(+0x1dc34) [0x7f1aac84bc34]
/lib64/libgobject-2.0.so.0(g_object_new_valist+0x1a7) [0x7f1aac84e0d7]
/lib64/libgobject-2.0.so.0(g_object_new+0x99) [0x7f1aac84e849]
/usr/local/lib64/libgegl-0.4.so.0(gegl_buffer_new+0x68) [0x7f1aac63ac78]
gimp(gimp_layer_add_alpha+0x86) [0x502c46]
gimp() [0x59edb7]
gimp(gimp_procedure_execute+0x1da) [0x6271ba]
gimp(gimp_pdb_execute_procedure_by_name_args+0x159) [0x623cb9]
gimp(gimp_plug_in_handle_message+0x63b) [0x63cc9b]
gimp() [0x62c496]
/lib64/libglib-2.0.so.0(+0x5f638) [0x7f1aac737638]
/lib64/libglib-2.0.so.0(+0x61398) [0x7f1aac739398]
/lib64/libglib-2.0.so.0(g_main_loop_run+0x77) [0x7f1aac739dc7]
gimp(gimp_plug_in_manager_call_run+0x6b1) [0x63e2a1]
gimp() [0x6323de]
gimp(gimp_procedure_execute+0x1da) [0x6271ba]
gimp(gimp_pdb_execute_procedure_by_name_args+0x159) [0x623cb9]
gimp(gimp_batch_run+0x1f5) [0x67b8c5]
gimp() [0x67757b]
/lib64/libgobject-2.0.so.0(g_closure_invoke+0x138) [0x7f1aac8458f8]
/lib64/libgobject-2.0.so.0(+0x2b5d3) [0x7f1aac8595d3]
/lib64/libgobject-2.0.so.0(+0x2cfe9) [0x7f1aac85afe9]
/lib64/libgobject-2.0.so.0(g_signal_emit_valist+0x32) [0x7f1aac860ad2]
/lib64/libgobject-2.0.so.0(g_signal_emit+0x8f) [0x7f1aac860b7f]
/lib64/libgio-2.0.so.0(+0xed0a0) [0x7f1aac4b00a0]
/lib64/libgio-2.0.so.0(g_application_run+0x107) [0x7f1aac4b0237]
gimp(app_run+0x1ea) [0x677aca]
gimp(main+0x365) [0x4bde55]
/lib64/libc.so.6(+0x2b12e) [0x7f1aab02b12e]
/lib64/libc.so.6(__libc_start_main+0x8b) [0x7f1aab02b1f9]
gimp(_start+0x25) [0x4bdfa5]

EEEEeEeek! 1 GeglBuffers leaked

Thanks in advance.

Print this item

  drawing cylinders and lines - and adding some shadows...
Posted by: saint_m - 04-13-2025, 12:09 PM - Forum: General questions - Replies (1)

are we able to draw such a image in GIMP


Well i guess that the cylinders will be placed on the drawing panel in GIMP so that we have them ( lets say we take the number of 10 cylinders ) - all over the drawing panel.

then - in a second step i try to draw the line - and thirdly




Well - i think that we can do this with the GIMP. This would be a somewhat difficult task because the shadow would be hard to achieve...

What do you say!? Smile


well unfortunatley i am not allowed to add any data.

everytime i add a image i  get this:


Request Entity Too Large
The requested resource does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.


so what can i do now!? shouold (/could) i add some images to imgur

Print this item

  GIMP 3.0.2 bug (?) - TIFF image
Posted by: dziadekles - 04-13-2025, 06:21 AM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (9)

The image: CR2 file. The system: Win 11. Display profile: none.
No processing was applied in any of the images listed below.

I compared the following:

-CR2 file opened in RawTherapee
-and subsequently opened in GIMP
-GIF export from GIMP, viewed in Photos & GIMP
-JPG export from GIMP, viewed in Photos & GIMP
-TIFF export from GIMP, viewed in GIMP

-CR2 file opened in DPP4, (Digital Photo Professional)
-TIFF created in DPP4, viewed in Photos & GIMP

CR2 file opened in PW8, (Picture Window 8)
-TIFF created in PW8 viewed, in Photos & GIMP

All these images match in terms of color and lightness (they are identical, at least to my eyes).

The TIFF files created in GIMP, DPP4 and PW6 all can be opened in GIMP and look the same.
The TIFF file created in GIMP can be opened in Photos, but the luminosity is off (the image is much lighter).
The TIFF file created in GIMP can't, however, be opened in DPP4 or in PW8. 


Conclusion: there is some problem with file conversion in GIMP3.0.2. The TIFF standard is not supported to the extent that it can be opened with different photo processing software. Neither DPP4 nor PW8 have this problem: their respective TIFF files are fully interchangeable, produce identical images using all processing software or image viewers - but can't be opened in GIMP...

This looks like a bug to me (unless there is some sensible explanation), but I am not sure how to report this...



Attached Files Thumbnail(s)
   
Print this item

  Welcome screen missing
Posted by: Ritergeek - 04-12-2025, 02:28 PM - Forum: Gimp 2.99 & Gimp 3.0 - Replies (1)

I just installed GIMP 3.0 on Windows 11 and am blown away by its new power. I don't recall turning off the Welcome Screen and would not know about it if I hadn't seen it in a YouTube video. I want to change the size of the text. How can I turn that Welcome Screen on again? Or is there another way to alter font size?

Print this item