Welcome, Guest |
You have to register before you can post on our site.
|
|
|
We eat spammers for breakfast |
Posted by: Ofnuts - 01-15-2019, 10:28 AM - Forum: Gimp-Forum.net
- Replies (4)
|
|
A quick tally of the (CET: Paris/Berlin) times at which spammers register on G-F.n:
Code:
00: 1
01: 2
02: 3
03: 9 **
04: 12 ***
05: 14 ****
06: 31 *********
07: 86 **************************
08: 160 **************************************************
09: 119 *************************************
10: 44 *************
11: 56 *****************
12: 50 ***************
13: 39 ************
14: 19 *****
15: 6 *
16: 15 ****
17: 18 *****
18: 23 *******
19: 10 ***
20: 4 *
21: 1
22: 0
23: 1
|
|
|
V poor colour ptints |
Posted by: Nighteyes - 01-15-2019, 10:14 AM - Forum: General questions
- Replies (3)
|
|
Hello, I am new to Linux and Gimp.
I am trying to print photos and although they seem ok in the program they come out with
poor contrast and de-saturated red, in fact rubbish.
I have printed the same pictures in windows using photoshop pro with no problem.
The printer is an epson P50 with epson premium glossy paper. All inks full.
Has anyone any ideas?
Thanks
David
|
|
|
Ubuntu - how do I update "gimptool-2.0"? |
Posted by: romansbookreport - 01-13-2019, 07:30 PM - Forum: Linux and other Unixen
- Replies (2)
|
|
Ubuntu 18.04.
I'm trying to Install BIMP. I managed in 16.04, but in 18.04 I've had a cascade of problems.
First I had errors. Then I read in the BIMP github repository that you now need Gimp version 2.10 or greater.
I did an apt-get remove with a --purge flag of my Gimp version 2.8.22, and installed Gimp 2.10 from the software center.
But the errors persisted.
It seems that my gimptool-2.0 is still on version 2.8.22, but I can't figure out how to upgrade it. I've searched for a while. Any help?
https://github.com/alessandrofrancesconi...issues/200
|
|
|
gimp-image-insert-layer: Item 'Background' (2) has already been added to an image |
Posted by: Skippy - 01-12-2019, 11:08 PM - Forum: Scripting questions
- Replies (4)
|
|
Hi,
I am trying to write a script which would insert an image as a layer within layers of another image. Here is what I got so far :
Code:
(define (foobar filename)
(let* (
; open image to add
(inputfile (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))
(picture (car (gimp-image-get-active-layer inputfile)))
; open file to insert image into
(template (car (gimp-file-load RUN-NONINTERACTIVE "template.xcf" "template.xcf")))
)
; add picture to template
(gimp-image-insert-layer template picture 0 -1)
; flatten image
(gimp-image-flatten template)
; couldn't get this line to work outside the next one, probably have to investigate "let" syntax
; (drawable (car (gimp-image-get-active-drawable template)))
(file-jpeg-save RUN-NONINTERACTIVE template (car (gimp-image-get-active-drawable template)) "outfile.jpg" "outfile.jpg" 0.95 0.95 1 1 "" 2 1 0 2)
)
)
I call the script with gimp -i -b '(foobar "picture.jpg")' -b '(gimp-quit 0)'.
However it fails on gimp-image-insert-layer :
Quote:GIMP-Error: Calling error for procedure 'gimp-image-insert-layer':
Item 'Background' (2) has already been added to an image
batch command experienced an execution error:
Error: ( : 1) Procedure execution of gimp-image-insert-layer failed on invalid input arguments: Item 'Background' (2) has already been added to an image
I am struggling to understand this, the only results I get are two old threads on GF.c from which the useful replies have been removed…
What's wrong with my script ?
|
|
|
ofn-layer-tiles |
Posted by: Ofnuts - 01-12-2019, 09:32 PM - Forum: Extending the GIMP
- Replies (3)
|
|
New baby. Its purpose is to make it easy to coalesce many layers into a single image (for instance, to simultaneously edit the colors of all frames in an animation) or to split a single layer into many tiles (for instance to restore the animation).
As a side effect, it can also be used to arrange layers of identical size in a gird.
ofn-layer-tiles is here.
As usual, the ZIP contains an HTML doc.
|
|
|
|