| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 5,001
» Latest member: Lebatron
» Forum threads: 7,739
» Forum posts: 42,062
Full Statistics
|
|
|
| GMIC preview... again! |
|
Posted by: mrkid - 08-01-2025, 04:20 PM - Forum: Extending the GIMP
- Replies (2)
|
 |
Hi! Is supposed that the applyied fx to a layer are processed by GMIC?
I have a desaturated image, and exposure tweaked, grayscaled, but when open GMIC it shows the original color image...
is this right or something is going bad?
|
|
|
| "Select all" selects all of the image, not all of the active layer |
|
Posted by: gyepi - 07-31-2025, 08:51 AM - Forum: OSX
- Replies (4)
|
 |
"Select all" used to select all of the active layer, and not all of the image. Now when I use "select all", GIMP 3.04 (on MacOS 15.5) selects all of the image, instead of all of the content of the layer. If I then press "shrink selection", the selection is getting shrinked from the entire image, and not only from the entire layer.
Is this the new normal behavior? How could I revert back to the old behavior (of "select all" selecting all of the active layer)?
Thanks!
|
|
|
| GMIC zoom, less than 100% |
|
Posted by: mrkid - 07-29-2025, 04:13 PM - Forum: Extending the GIMP
- Replies (2)
|
 |
Hi! I have been using GMIC to enhance some old scannings... Great!
But i noted that when working with big images, or not sooo big, the preview of most GMIC filters is fixed in 100%. You can use more zoom BUT NOT LESS. That is annoying since you cant see what will result unless you apply it and shut the GMIC window.
Is there something im missing about this? Thanks.
|
|
|
| B&W prints more brown |
|
Posted by: gryan8888 - 07-28-2025, 09:52 PM - Forum: General questions
- Replies (1)
|
 |
Gimp 3.0 i edit a b&w using colors, shadows and highlights, the photo still looked b&w after but when i export as jpeg and print the blacks are browns. Any help? Thanks
|
|
|
| Artbox Autosave |
|
Posted by: pixelmixer - 07-28-2025, 01:35 PM - Forum: Alternate Gimp packagings
- No Replies
|
 |
New in Artbox!
Artbox now includes an experimental Commands Dockable system, allowing you to trigger scripted commands automatically or manually.
See a demonstration video on YouTube
You can use this to start Autosave automatically when an image is opened or edited.
|
|
|
| "Simple" python script in gimp 3 |
|
Posted by: IgnisVeneficus - 07-28-2025, 06:08 AM - Forum: Scripting questions
- Replies (6)
|
 |
Hello!
For a game I'd like to create tiles for tileset. The task is simple: get a image with 3+ layers (colors, and heightmap), for each layer create 3 copy, rotate it 60, 180 ,270 degree and offset it 1*,2*,3* width.
After get the heightmap layer duplicate it, add noise and call the normal map filter. (there are some masking, etc). Get the color layers, add some nose. Flattering down each group of layers.
Because I'd like to use it many times, i created (or try to create) a plugin for it.
Looks like easy.
The problems: because its a python, you need to test is, for the typos too. so each iteration need to restart gimp load the image test the script.
There are no usable documentation. I already found the https://lazka.github.io/pgi-docs/#Gimp-3.0, helped a lot, but lack of examples. all examples for the gimp 2.x
For example, how can I do filter->generic->normal map?
There are some undocumented "features": If you rename a layer, in the gimp UI the name stay the old one (its not a big problem) but after you cant export it into .ora and gimp went some unstable state. If remove a layer from image cant add it again to it, because already had.
Now I have 300+ line of code for that "simple" task, about quarter are dead code ("maybe that work") and not working well:
- after I call <layer>.transform_rotate_simple(rotate_angle,True,0,0) its stay is "floating selection transform" state and somehow need to anchor it how?
- how can I proper call the filters->generic->normal map filter with preset or how set the values?
- how can I proper call the filters->noise->hsv filter with preset or how set the values?
- how can I invert selection?
- how can I proper generate greyscale noise between color rgb(123,123,123) and rgb (133,133,133), I tried the buffer.set(rect, "RGBA u8", bytes(pixels)) with pixels.extend([gray, gray, gray, 255]) it's worked, but not get the right color (I get lighter about rgb(180,180,180), now I use set_pixel but its slow for 64x64 images
- from where can I get some useful examples for gimp 3 python scripting?
Thanx
|
|
|
|