Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,984
» Latest member: doiphoto
» Forum threads: 7,395
» Forum posts: 40,283
Full Statistics
|
Latest Threads |
crop and straighten photo...
Forum: General questions
Last Post: denzjos
Yesterday, 10:51 AM
» Replies: 6
» Views: 156
|
Color fill into pasted la...
Forum: General questions
Last Post: sallyanne
Yesterday, 06:39 AM
» Replies: 1
» Views: 114
|
Arrow Script
Forum: Extending the GIMP
Last Post: Chris Thompson
05-08-2025, 07:48 PM
» Replies: 133
» Views: 168,914
|
ofn3-layer-tiles
Forum: Extending the GIMP
Last Post: karaxus
05-08-2025, 10:53 AM
» Replies: 7
» Views: 1,052
|
Slowing down
Forum: General questions
Last Post: rich2005
05-08-2025, 10:33 AM
» Replies: 2
» Views: 218
|
Script-Fu in GIMP 3 websi...
Forum: Extending the GIMP
Last Post: pixelmixer
05-08-2025, 10:22 AM
» Replies: 13
» Views: 1,315
|
AppImage for 2.10.38
Forum: Alternate Gimp packagings
Last Post: Tas_mania
05-07-2025, 11:10 PM
» Replies: 4
» Views: 320
|
I can' show the two layer...
Forum: General questions
Last Post: blogsofwardotme
05-07-2025, 09:10 PM
» Replies: 2
» Views: 168
|
Map to cylinder adding ra...
Forum: General questions
Last Post: n4mwd
05-07-2025, 06:46 PM
» Replies: 2
» Views: 152
|
Forced to operate Gimp 3....
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
05-07-2025, 03:22 PM
» Replies: 1
» Views: 123
|
|
|
Ghostscript integration |
Posted by: Leon - 02-08-2025, 08:12 PM - Forum: Extending the GIMP
- Replies (9)
|
 |
Hi, I'm trying to integrate Ghostscript with GIMP in order to open .eps files. I'm not a coder and very much a beginner. I recently upgraded to Mac OS Sequoia 15.3. I installed GIMP 2.10.38. I'm pretty sure I successfully installed ghostscript using Homebrew. However, when I try to open an eps file. I get the following errors. Opening '/true' failed: Error opening file /true: No such file or directory.
Also I get: Opening 'file...' failed: could not interpret PostScript file '/file'.
It's my understanding that ghostscript should be able to allow gimp to open the file. Would someone know what's the missing step to integrate ghostscript with gimp?
|
|
|
Open, save buttons on bottom of the dialog? |
Posted by: phoebus - 02-07-2025, 09:57 AM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (5)
|
 |
Hi all,
I'm using Gimp 3 RC2 on KDE Plasma.
All my programs (including Tb, FF which are not QT) have Save, Open, Cancel buttons at the bottom of the file dialog.
But gimp has them on top, which is super nonintuitive for me.
I know this is GTK and not Gimp thing.
I tried setting
Code:
gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/DialogsUseHeader':<0>}"
but it didn't work:
Code:
No such schema “org.gnome.settings-daemon.plugins.xsettings”
Does anyone have an idea how to move the buttons to the bottom of the dialogs?
|
|
|
Recovering a logo |
Posted by: Ofnuts - 02-06-2025, 12:44 PM - Forum: Gallery
- Replies (1)
|
 |
Hispano-Suiza was a constructor of luxury cars and airplane engines. A bit like a French version of Rolls-Royce. Came across this poster in a car show, wondered if I could recover a proper logo...
|
|
|
python plug-in drop shadow |
Posted by: marekGP - 02-05-2025, 12:55 PM - Forum: Scripting questions
- Replies (2)
|
 |
Hello, I am trying to create plugin with drop shadow functionality.
The shadow layer is created, but it behaves as invisible - I can copy the content and put it in other layer, but everything in the shadow layer stays invisible - here is the code:
Code:
#!/usr/bin/env python
from gimpfu import *
def gp_shadow(image, drawable):
offsetx = 5
offsety = 5
blurradius = 8
opacity = 1.0
color = gimpcolor.RGB(255,0,0)
allowresizing = FALSE
pdb.script_fu_drop_shadow(image, drawable, offsetx, offsety, blurradius, color, opacity, allowresizing)
register(
"python-fu-gp_shadow",
"Drop multipe shadows for GP artwork titles",
"Drop multipe shadows for GP artwork titles",
"MK", "MK", "2025",
"GP shadow",
"", # type of image it works on (*, RGB, RGB*, RGBA, GRAY etc...)
[
# basic parameters are: (UI_ELEMENT, "variable", "label", Default)
(PF_IMAGE, "image", "takes current image", None),
(PF_DRAWABLE, "drawable", "Input layer", None)
# PF_SLIDER, SPINNER have an extra tuple (min, max, step)
# PF_RADIO has an extra tuples within a tuple:
# eg. (("radio_label", "radio_value), ...) for as many radio buttons
# PF_OPTION has an extra tuple containing options in drop-down list
# eg. ("opt1", "opt2", ...) for as many options
# see ui_examples_1.py and ui_examples_2.py for live examples
],
[],
gp_shadow, menu="<Image>/Filters/Light and Shadow") # second item is menu location
main()
Can you find a problem?
(GIMP 2.10.36, Win10)
|
|
|
Gimp 3.0 AppImage and G'Mic |
Posted by: CtrlAltDel - 02-05-2025, 04:08 AM - Forum: Extending the GIMP
- Replies (12)
|
 |
Hello everyone.
I hope I haven't overlooked a thread on this and am making a redundant post.
On discuss.pixls.us, there is a thread with David Tschumperle commenting that he had G'MIC ready for Windows users on Gimp 3.0 but had not got around to modifying it for Linux users of Gimp 3.0.
Discussion on Gimp 3.0 and G'MIC
This is my go to place for hard to find information about Gimp and its plugins and would like to ask if anyone here has information on how to use G'MIC with Gimp 3.0 RC2 AppImage(Ivan-HC) using Linux Mint 22.1.
And on a side note, to not have to create another thread, will plugins and scripts that work on Gimp 3.0 RC2 work on the regular Gimp 3.0 when it is eventually released or will they have to be reworked in some fashion?
|
|
|
|