Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
Macroglossum stellatarum
Forum: Watercooler
Last Post: Tas_mania
6 hours ago
» Replies: 1
» Views: 55
|
Missing script-fu "refres...
Forum: Gimp 2.99 & Gimp 3.0
Last Post: rich2005
9 hours ago
» Replies: 10
» Views: 315
|
processes in Whitelist
Forum: OSX
Last Post: rich2005
Yesterday, 09:45 AM
» Replies: 5
» Views: 184
|
Digikam: photo management...
Forum: Other graphics software
Last Post: denzjos
Yesterday, 06:53 AM
» Replies: 7
» Views: 4,590
|
GIMP 3.04 opens with wind...
Forum: Windows
Last Post: SteveH
07-01-2025, 11:47 PM
» Replies: 0
» Views: 77
|
AIGoR - Artificial Image ...
Forum: Other graphics software
Last Post: rich2005
07-01-2025, 12:12 PM
» Replies: 10
» Views: 3,123
|
Can't see GIMP windows
Forum: Gimp 2.99 & Gimp 3.0
Last Post: Tankred
07-01-2025, 11:48 AM
» Replies: 3
» Views: 258
|
Windows save
Forum: General questions
Last Post: sallyanne
07-01-2025, 06:27 AM
» Replies: 3
» Views: 343
|
Trying to append part of ...
Forum: General questions
Last Post: Denarius
06-30-2025, 12:26 PM
» Replies: 5
» Views: 344
|
clone tool
Forum: General questions
Last Post: sallyanne
06-30-2025, 12:38 AM
» Replies: 6
» Views: 413
|
|
|
Controlling Hue Chroma ? |
Posted by: Alpha504 - 11-14-2024, 07:45 AM - Forum: Scripting questions
- Replies (6)
|
 |
Hi,
I would like to modify the hue-chroma of some images.
I tried the following function:
Code:
(gimp-drawable-hue-chroma drawable MODE-REPLACE -60 20 0 100.0)
But it gives me an error:
Code:
Error: eval: unbound variable: gimp-drawable-hue-chroma
If someone knows which command to use and what are the parameters ?
|
|
|
Resize and convert a SVG image using a gimp script ? |
Posted by: Alpha504 - 11-12-2024, 04:24 PM - Forum: Scripting questions
- Replies (9)
|
 |
I'm using gimp 2.10 on a Debian 12 system.
My gimp script successfully convert the SVG to PNG, but it doesn't resize it.
Here is my script ~/.config/GIMP/2.10/scripts/convertresize.scm:
Code:
(define (convertresize in_filename out_filename width height)
(let* (
(image (car (gimp-file-load RUN-NONINTERACTIVE in_filename "")))
(drawable (car (gimp-image-get-active-layer image)))
(gimp-image-scale-full image width height INTERPOLATION-CUBIC)
(gimp-layer-resize-to-image-size drawable)
)
(gimp-file-save RUN-NONINTERACTIVE image drawable out_filename out_filename)
(gimp-image-delete image)
)
)
I launch it with the following command:
Code:
gimp -i -b '(convertresize "./image.svg" "./image.png" 24 24)' -b '(gimp-quit 0)'
So, if someone knows what I'm doing wrong ?
|
|
|
Is it possible to edit a Photoshop mockup file in Gimp on a Macbook? |
Posted by: Lognill - 11-11-2024, 09:09 PM - Forum: General questions
- Replies (2)
|
 |
I'm new to Gimp. Is it possible to edit a Photoshop mockup file in Gimp on a Macbook? In Photoshop, I was able to just double click the "Edit Me" section/thumbnail and a new tab would open where I can place my design, but I can't do the same in Gimp. I want to attach a screenshot to give an example, but I couldn't due to the file being too large. Watching videos to help me reduce the screenshot file was no help either.
|
|
|
Printing problems |
Posted by: Thunderace7 - 11-11-2024, 05:43 PM - Forum: Windows
- Replies (7)
|
 |
Hi.
I'm using Gimp 2.10.38 on a Windows 11 PC and I am having trouble printing photos. I load the photo and edit it but the colour changes I make are not reflected in the printed photo. I am using a Canon Pixma TS8350 printer and have updated the drivers.
The photo I am trying to print is coming out a little pale and with a slight blue hue. I used the Curves tool to increase green and red and these changes are shown in the screen image. When I print the picture the printed image is no different from the original. I am probably doing something wrong but I can't see what it is.
Thanks.
Chris.
|
|
|
What is the api way not pdb |
Posted by: trandoductin - 11-11-2024, 11:33 AM - Forum: Scripting questions
- Replies (10)
|
 |
to get bounds
or check to see if there is a selection present?
as pdb. is slow for me when i do repeated operations.
I tried looking at the api documentation but I don't know the syntax to call gimp_selection_is_empty?
image.selection.width is always width of image it's so weird.
I need this in order to speed up this knitted look 2.10 plugin
|
|
|
Can you shift click multiple layers in gimp 2.99/3.0 ? |
Posted by: Newman - 11-11-2024, 03:41 AM - Forum: Gimp 2.99 & Gimp 3.0
- Replies (3)
|
 |
Hi,
I've been using Gimp 2.99/3.0 for a while now. I know you can:
- shift click multiple layers in the layers panel (very nice)
- and you can set the move tool to be able to click and select a single layer in the canvas
Just wondering if you can shift click multiple layers directly in the canvas yet? I haven't been able to do that.
|
|
|
|