Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
Is there any version wher...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: rich2005
39 minutes ago
» Replies: 1
» Views: 196
|
How do I uninstall GIMP 3...
Forum: Linux and other Unixen
Last Post: Ofnuts
1 hour ago
» Replies: 1
» Views: 45
|
AI Gimp Plugins
Forum: Watercooler
Last Post: merlilderman
Yesterday, 04:16 PM
» Replies: 21
» Views: 68,156
|
How to make a watermark o...
Forum: General questions
Last Post: kyolim
09-13-2025, 10:05 PM
» Replies: 5
» Views: 14,155
|
Linux command that does e...
Forum: Other graphics software
Last Post: rich2005
09-13-2025, 06:06 PM
» Replies: 1
» Views: 467
|
reliable Gimp 2.10.38 dow...
Forum: Older Gimp versions (2.8, 2.6....)
Last Post: denzjos
09-13-2025, 05:20 PM
» Replies: 2
» Views: 369
|
Batch Color Saturation
Forum: Extending the GIMP
Last Post: rich2005
09-13-2025, 07:53 AM
» Replies: 15
» Views: 12,050
|
Photo play-time
Forum: Gallery
Last Post: Ofnuts
09-13-2025, 07:32 AM
» Replies: 24
» Views: 21,886
|
BIMP plugin for GIMP 3.10
Forum: Extending the GIMP
Last Post: firefly
09-12-2025, 11:53 PM
» Replies: 2
» Views: 721
|
pl_stroke_arrows GIMP 3.0...
Forum: Extending the GIMP
Last Post: Scallact
09-12-2025, 04:03 PM
» Replies: 0
» Views: 370
|
|
|
Crashes on first launch |
Posted by: promisem - 06-07-2023, 03:48 PM - Forum: Installation and usage
- Replies (1)
|
 |
I reinstalled 2.10.34 after an earlier version started having plugin crashes. The new install freezes when loading tile.exe. I have tried reinstalling it and confirming that the directory was deleted before trying again. Windows 10.
EDIT: The program launched after 3 or 4 tries.
|
|
|
Python Fu |
Posted by: DoggoOfSpeed - 06-07-2023, 12:03 PM - Forum: Scripting questions
- Replies (3)
|
 |
Tried to create my first script to save all open files and while it works, I've encountered a strange issue.
Code:
#!/usr/bin/env python
# Author: DoggoOfSpeed
from gimpfu import *
import os
def save(image, path):
for layer in image.layers:
image_name_clean = os.path.splitext(
os.path.basename(image.filename))[0]
full_path = os.path.join(path, image_name_clean + '.xcf')
pdb.gimp_xcf_save(0, image, layer, full_path, full_path)
def save_all(path_type, custom_path, x, y):
open_images = gimp.image_list()
for single_image in open_images:
location = os.path.dirname(single_image.filename)
location_parent = os.path.dirname(location)
if x == 0:
save(single_image, location)
elif x == 1:
if not os.path.exists(location + "/Saved"):
os.mkdir(location + "/Saved")
save(single_image, location + "/Saved")
elif x == 2:
if not os.path.exists(location_parent + "/Saved"):
os.mkdir(location_parent + "/Saved")
save(single_image, location_parent + "/Saved")
elif x == 3:
save(single_image, y)
single_image.clean_all()
register(
"save_all",
"Save All",
"Saves all opened images",
"DoggoOfSpeed",
"DoggoOfSpeed",
"2023",
"<Image>/Save All Images",
"RGB*, GRAY*",
[
(PF_OPTION, "path_type", "Save Path", 0, ("Next to Original",
"In Sibling Folder", "In Parent", "In Custom Folder")),
(PF_DIRNAME, "custom_path", "Custom Path", os.getcwd())
],
[],
save_all)
main()
For some reason, the function save_all() receives 4 arguments instead of the 2 requires (I added the variables x and y to accommodate that). Not only that, those variables actually contain the data from the PF_Option (in y) and PF_Dirname (in x) when I'd expect them to be in path_type and custom_path respectively. So my question is why and how do the 2 unwanted parameters appear there?
|
|
|
Why don’t my custom palettes persist? |
Posted by: tomory - 06-06-2023, 07:05 PM - Forum: General questions
- Replies (6)
|
 |
Hi, everyone,
I created a custom palette for a design I’m creating but when I quit and reopen The Gimp, it’s not in the list. This has happened twice in a row now. Do I need to do something special to make Gimp save my custom palette?
It’s not a huge deal because my design has only five colors in it. Still, it’s inconvenient to have to keep recreating it.
(I’m using Gimp 2.10.34 revision 1 on Mac OS Ventura.)
Thanks.
|
|
|
How can I overwrite .blp files in GIMP? |
Posted by: jpcmg5t - 06-02-2023, 07:33 PM - Forum: General questions
- Replies (3)
|
 |
Hello, I like to play this game called Speedy Eggbert.
I wanted to mod this game using GIMP, but the files are all in .blp format instead of .png. GIMP allows me to open the files and edit them, but it doesn't let me overwrite them. I have another program called XNView which allows me to overwrite the files. but I much prefer using GIMP than XNView as I'm familiar, know how to use all the editing tools and find it easy. And copying the files from GIMP to XNview is too time consuming.
So if XNView can overwite .blp files, then why can't GIMP do it? And is there an extension that can allow me to do this?
|
|
|
Part of image cut off |
Posted by: sl60 - 06-02-2023, 01:24 AM - Forum: General questions
- Replies (3)
|
 |
I was just working on a large image (site plan ), saved it, and when I opened it again Gimp had cut off the left side of the image and doubled a portion of the right side. Is there any way to restore this? I can't show it because of copyright issues.
|
|
|
Layers missing |
Posted by: sl60 - 06-02-2023, 12:52 AM - Forum: General questions
- Replies (4)
|
 |
The layers panel is there but as I work on various layers the layers are not displaying in the panel--itt just show the base layer and the copy of it that I made.
How to fix?
|
|
|
|