Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 4,628
» Latest member: inemar
» Forum threads: 7,491
» Forum posts: 40,886
Full Statistics
|
Latest Threads |
text tool
Forum: General questions
Last Post: Ofnuts
1 hour ago
» Replies: 1
» Views: 30
|
edit_paste pastes at inco...
Forum: Scripting questions
Last Post: class43
Yesterday, 03:48 PM
» Replies: 2
» Views: 127
|
CMYK color mode Gimp 2.10
Forum: Extending the GIMP
Last Post: rich2005
Yesterday, 12:13 PM
» Replies: 20
» Views: 82,206
|
Open, save buttons on bot...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: GrumpyDeveloper
07-17-2025, 09:52 PM
» Replies: 8
» Views: 2,974
|
Clone size randomly chang...
Forum: General questions
Last Post: oldschool1@runbox.com
07-17-2025, 05:45 PM
» Replies: 2
» Views: 198
|
AI Gimp Plugins
Forum: Watercooler
Last Post: Zbyma72age
07-17-2025, 03:31 PM
» Replies: 20
» Views: 53,640
|
Gimp closes automatically
Forum: General questions
Last Post: sallyanne
07-17-2025, 05:50 AM
» Replies: 2
» Views: 224
|
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: vitforlinux
07-16-2025, 11:10 AM
» Replies: 12
» Views: 3,856
|
Is This Possible ? Print ...
Forum: General questions
Last Post: sallyanne
07-16-2025, 07:47 AM
» Replies: 4
» Views: 220
|
Gimp Crash
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
07-16-2025, 07:16 AM
» Replies: 1
» Views: 162
|
|
|
NOOB Question |
Posted by: DHHJ - 10-28-2021, 07:42 PM - Forum: General questions
- Replies (2)
|
 |
Whenever I activate a layer and click on it, a Filter window pops open automatically- the last Filter I had been using. Is there a "sticky" setting somewhere? Thanks.
|
|
|
Can't export VTF files |
Posted by: Octobyt3 - 10-27-2021, 05:47 PM - Forum: General questions
- No Replies
|
 |
I'm trying to make a custom texture for a model for Gmod, but it has a alpha mask layer that I need if I want it to work. Found a way to properly retexture it in GIMP, but when I try to export it an error message pops up with the error code: '# error_layergroup_wrapper'. I've looked evrywhere online, but there is no results for this error.
Why does this happen and how can I fix it?
|
|
|
Gmic Query |
Posted by: gazza - 10-27-2021, 04:28 AM - Forum: Extending the GIMP
- Replies (4)
|
 |
I am running GIMP 2.10 and 2.8 very sucessfully after following a Rich2005 video. I am trying to install GMIC into both of them but just going around in circles. I have seen many blogs on the subject, but find it all very hard to digest.
I have attached a copy of the address's to which I have tried for 2.8 (2.10 is simlar). I am not sure if I am even trying to install the correct version as I am coming up with heaps of .dll issues. I have read some of the help blogs from Rich, but when I try to follow any of the web addresses he suggests, none of them will open to the appropriate web page.
I have also found that the GIMP version I am using (2.10.28) has some issues with GMIC, but I can't seem to find the solution to install in either version.
Apologies if I treading over much discussed ground, but it is not through lack of trying and heaps of frustration that I have referred to the forum.
Regards
|
|
|
"rounding" grey scale image from the center |
Posted by: SkyLeopard - 10-26-2021, 09:10 PM - Forum: General questions
- Replies (2)
|
 |
Hi All,
I am trying to achieve a certain look on a greyscale/height map image for a cnc project I am working on.
Im new to gimp so Ill try to be explicit as Im not sure of exact terms.
I started with an image that only has two colors to my knowledge (or at least doesnt have a lot of colors so that if you looked at a height map of the image it would be mostly 0s and 1s. I switched to greyscale mode and played with contrast and brightness to get the greyscale sharper.
This is where I am.
I am trying to figure out how to basically apply a filter (or modify the values of the pixels in some way ) over that grey scale image I created so that it becomes a height map where the highest point is in the center and as we move towards the edges of the image it gradually falls off in height. so that you get a domed look but still retain details of the image. Is this even a thing that makes sense? Is gimp the right program for this sort of thing?
Appreciate it!
|
|
|
Questions about how to use API gimp_layer_new() |
Posted by: arya - 10-26-2021, 11:59 AM - Forum: Scripting questions
- Replies (3)
|
 |
When I read the API document of gimp_layer_new(), I'm curious about what are explicit procedure calls in the below quote.
Quote: Other attributes such as layer mask modes, and offsets should be set with explicit procedure calls.
So I looked into gimp source code for this API usage example and find they don't set the mask mode or offset before adding this layer to the image using gimp_image_insert_layer().
Code:
layer = gimp_layer_new (image, _("Background"),
img_a->columns, img_a->rows,
image_type,
100,
gimp_image_get_default_new_layer_mode (image));
gimp_image_insert_layer (image, layer, NULL, 0);
I have the same confusion for gimp_layer_group_new() but I find the code file above calls gimp_layer_set_mode(), gimp_layer_set_opacity() and other APIs as required in the quote below.
Quote:Attributes such as layer mode and opacity should be set with explicit procedure calls.
So the questions are: what is the explicit meaning of the two quotes? which APIs should we call and how? Must we call these APIs?
Thank you very much!
|
|
|
|