Re: [Gimp-user] Announcement: this mailing list will be retired by the end of Oct 2022 (Dan Hitt)

2022-10-24 Thread Ofnuts via gimp-user-list

In Discourse  use "tags" (like on SO...) and you can of course
search/display using tags, and even put them in a URL. So try:

https://discourse.gnome.org/tag/gimp

On 21/10/2022 17:05, Micah Salb wrote:

But where is that forum?  I signed up but all I see is stuff about 
Gnome--nothing about Gimp!  Where do I find the Gimp forum?

Micah Salb



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


[Gimp-user] You can follow the Discourse server in Thunderbird using RSS

2022-10-24 Thread Ofnuts via gimp-user-list

If you don't want to login regularly on Discourse, you can ask
Thunderbird (or some other RSS client) to set up a RSS feed:

- Right-click "Blogs and News feed" and click "Subscribe"

- Set the feed URL to "https://discourse.gnome.org/tag/gimp.rss;
(actually, about any Discourse URL works, you just add ".rss" at the end

- Set the rest at your convenience.

I would post screenshots of the result, but this mailing list doesn't
support them (which is fairly ironic considering it is mostly about
pictures).
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] The system of levels, badges and presents of Discourse

2022-10-24 Thread Ofnuts via gimp-user-list

On 23/10/2022 08:59, Ralf Mardorf via gimp-user-list wrote:

By closing individual mailman mailing lists and replacing it with a
single forum, everything is under control of a single authority.There
even isn't the need to moderate or ban users with unwanted opinions,
since the users are educated by levels, badges and presents. IOW all
users are under general suspicion to express unwanted opinions, hence
everybody is moderated by a credit system. This Chinese alike approach
has nothing to do with the "libre" in FLOSS.


Please curb your paranoia. The Gimp mailing list is already a central
authority (you can be banned...) and uses a server from another
authority, from which it could hypothetically be kicked.


There are valid reasons to moderate or ban a user, but usually such a
user is barred by an individual part of a project, not by the whole
universe and before it happens a user must have expressed something that
is unwanted.


People gets banned because of their obnoxious behavior, not because of
their opinion on such and such project. In which case it is likely that
their behavior is pervasive.


A credit system to stop individual opinions in the first place stops all
individual opinions completely. At the worst a "misbehaving" user gets
not only banned from one or the other part of the project, but from the
whole universe of the superior project.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Script-Fu: remove Exif, thumbnail, color profile when saving PNG

2022-08-24 Thread Ofnuts via gimp-user-list

Why do you use Gimp for this... You script would run faster using
ImageMagick (for the conversion) and ExifTool (to remove the Exif data):

convert in.png PNG8:out.png
exiftool all= out.png



On 24/08/2022 15:52, Sam Lee via gimp-user-list wrote:

Hello, I have written a Script-Fu batch program that is intended to
reduce the file size of a PNG image ("in.png") by converting it into
"indexed" mode with a color palette of 16 colors, and saving the output
("out.png"):


#!/bin/sh
gimp-console --batch '
(let* ((image (car (gimp-file-load RUN-NONINTERACTIVE "in.png" "in.png")))
(drawable (car (gimp-image-flatten image)))
(outfile "out.png"))
   (gimp-image-convert-indexed image
   CONVERT-DITHER-NONE
   CONVERT-PALETTE-GENERATE
   16 FALSE FALSE "")
   (file-png-save2 RUN-NONINTERACTIVE image drawable outfile outfile FALSE 9
   FALSE FALSE FALSE FALSE FALSE FALSE FALSE))
(gimp-quit 0)'


This script works. However, it always includes Exif data, thumbnail, and
the color profile when I save the PNG, which I do not want because they
make the saved image larger. I know that if I change `(file-png-save2
RUN-NONINTERACTIVE ...)` to `(file-png-save2 RUN-INTERACTIVE ...)`, a
dialog will pop up where I can uncheck the "Save Exif data", "Save
thumbnail", and "Save color profile" checkboxes. I want to disable the
"Save Exif data", "Save thumbnail", and "Save color profile" in a
non-interactive way (i.e. without requiring the interactive dialog box)
when saving a PNG. How can I do that?
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Cut tool doesn't remove unvantet aera.

2022-08-22 Thread Ofnuts via gimp-user-list

If you export to JPEG, you can't have transparency (format doesn't
support it), so you get the backrground color instead.

But what is the "cut tool"?  By default the "crop tool" crops the image
(all layers) so there is no transparency left.

On 21/08/2022 22:20, Kolbjørn Stuestøl via gimp-user-list wrote:

When using the cut tool it cuts the image as aspected. The area outside the cutting line 
is made transparent. But when exporting and importing the image it has the original size 
with the "removed" area colored with the background color used when the image 
was exported. The image original is showing fine inside the cut area.

Tried to save the cut image and reloading it again and then exporting it, but 
with the same result.

Tried to reinstall GIMP, but it didn't help anything.

A way around is to copy the wanted area as a new image and then export the copy.

Running GIMP 2.10.32 on Windows 11. (Downloaded from gimp.org/downloads/).

Hoping someone has a solution on this problem.

Kolbjørn
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Is it possible to set the pointer to a particular position in GIMP?

2022-08-06 Thread Ofnuts via gimp-user-list

This is what "snapping" is about. Use "View  > Snap to canvas edges",
and clicking on 0,0 just requires to click near it. For arbitrary
coordinates, set up "guides".


On 06/08/2022 02:44, Andrea Foster via gimp-user-list wrote:

Good morning.
Is it possible to set the pointer in GIMP to a particular "coordinate" on
the image? I find I often want to set the pointer to 0,0 on the image, and
it's often fiddly to do that by just moving the mouse.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] gimp-user-list Digest, Vol 130, Issue 6

2022-08-03 Thread Ofnuts via gimp-user-list

The "Raw image data" import type in "File > Open" is just that (it is
not camera sensor data). But of course you have to specify how the date
is decoded (width, height, color channels, etc...)

On 03/08/2022 02:44, Carl Johnson via gimp-user-list wrote:

The concept of storage in Linux is a flat file space meaning a single
sequence of 1's and 0's which may be organized any which way for a defined
type standard. I was wondering how to open up any file as a binary so I
could 'visualize' it in GIMP or Audacity to help aid analysis of things
like heuristics or segmentations. I tried storing a different file as a
bitmap and opening it but it failed, any ideas?

Thank you for any help you can provide,

Carl


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Question about scripting

2022-07-30 Thread Ofnuts via gimp-user-list

Ok, so some "clever" reformatting of my answer happened, so let's try
again. If this is still garbled, here is a screenshot of what I mean:
https://imgur.com/vBKHf1g

A problem you have is the multiple layers looking at your double quotes:
the shell interpreter that calls Gimp, and
the script-fu interpreter. Quotes are processed and not seen by Gimp and
script-fu.

Since you are on a Unix shell, try this:

    printf "%s\n" gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE
"/home/user/ev.jpg" "/home/user/ev.jpg")" -b "(gimp-quit 0)"

This will print a line per "token" passed to the actual command:

    * gimp
    * -i
    * -b
    * (file-jpeg-load RUN-NONINTERACTIVE /home/user/ev.jpg
/home/user/ev.jpg)
    * -b
    * (gimp-quit 0)

As you can see, the quotes around the file names have been removed. You
have to either escape them:

    printf "%s\n" gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE
\"/home/user/ev.jpg\" \"/home/user/ev.jpg\")" -b "(gimp-quit 0)"

    * gimp
    * -i
    * -b
    * (file-jpeg-load RUN-NONINTERACTIVE "/home/user/ev.jpg"
"/home/user/ev.jpg")
    * -b
    * (gimp-quit 0)

Or use outer single quotes (but this makes variable substitution in the
shell a bit contrived:

    printf "%s\n" gimp -i -b '(file-jpeg-load RUN-NONINTERACTIVE
"/home/user/ev.jpg" "/home/user/ev.jpg")' -b '(gimp-quit 0)'

    * gimp
    * -i
    * -b
    * (file-jpeg-load RUN-NONINTERACTIVE "/home/user/ev.jpg"
"/home/user/ev.jpg")
    * -b
    * (gimp-quit 0)

Or, if script-fu supports it (that's what I do for pythin-fu), outer
double qoutes and inner single quotes for the scrpit-fu strings

    printf "%s\n" gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE
'/home/user/ev.jpg' '/home/user/ev.jpg')" -b "(gimp-quit 0)"

    * gimp
    * -i
    * -b
    * (file-jpeg-load RUN-NONINTERACTIVE '/home/user/ev.jpg'
'/home/user/ev.jpg')
    * -b
    * (gimp-quit 0)


On 29/07/2022 05:00, Jean-Pierre HOARAU wrote:

I'm trying to write a script shell and use a procedure. I don't understand
how to give the parameters to the script. I do not have the good number or
parameters. Can someone write to me the command line that I have to enter
to use the procedures, for example, file-jpeg-load and file-jpeg-save? I
tried this and it doesn't work:

gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE "/home/user/ev.jpg"
"/home/user/ev.jpg")" -b "(gimp-quit 0)"

Thank you in advance.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Question about scripting

2022-07-30 Thread Ofnuts via gimp-user-list

A problem you have is the multiple layers looking at your double quotes:
the shell interpreter that calls Gimp, and
the script-fu interpreter. Quotes are processed and not seen by Gimp and
script-fu.

Since you are on a Unix shell, try this:

printf "%s\n" gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE "/home/user/ev.jpg" 
"/home/user/ev.jpg")" -b "(gimp-quit 0)"

This will print a line per "token" passed to the actual command:

gimp -i -b (file-jpeg-load RUN-NONINTERACTIVE /home/user/ev.jpg
/home/user/ev.jpg) -b (gimp-quit 0) As you can see, the quotes around the file 
names have been removed. You have to either escape them:

printf "%s\n" gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE
\"/home/user/ev.jpg\" \"/home/user/ev.jpg\")" -b "(gim p-quit 0)" gimp
-i -b (file-jpeg-load RUN-NONINTERACTIVE "/home/user/ev.jpg"
"/home/user/ev.jpg") -b (gimp-quit 0) Or use outer single quotes (but this 
makes variable substitution in the shell a bit contrived:

printf "%s\n" gimp -i -b '(file-jpeg-load RUN-NONINTERACTIVE
"/home/user/ev.jpg" "/home/user/ev.jpg")' -b '(gimp-qu it 0)' gimp -i -b
(file-jpeg-load RUN-NONINTERACTIVE "/home/user/ev.jpg"
"/home/user/ev.jpg") -b (gimp-quit 0)
Or, if script-fu supports it (that's what I do for pythin-fu), outer double 
qoutes and single quotes for the scrpit-fu strin

printf "%s\n" gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE
'/home/user/ev.jpg' '/home/user/ev.jpg')" -b "(gimp-qu it 0)" gimp -i -b
(file-jpeg-load RUN-NONINTERACTIVE '/home/user/ev.jpg'
'/home/user/ev.jpg') -b (gimp-quit 0)



On 29/07/2022 05:00, Jean-Pierre HOARAU wrote:

I'm trying to write a script shell and use a procedure. I don't understand
how to give the parameters to the script. I do not have the good number or
parameters. Can someone write to me the command line that I have to enter
to use the procedures, for example, file-jpeg-load and file-jpeg-save? I
tried this and it doesn't work:

gimp -i -b "(file-jpeg-load RUN-NONINTERACTIVE "/home/user/ev.jpg"
"/home/user/ev.jpg")" -b "(gimp-quit 0)"

Thank you in advance.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Slow startup time and possible problem with DBus instance lock on Linux

2022-06-24 Thread Ofnuts via gimp-user-list

Seems a bit violent from what I read, it breaks many things and I could
just as well reboot.

On 24/06/2022 05:21, Cliff Pratt via gimp-user-list wrote:

Did you stop/start the DBus daemon?

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


[Gimp-user] Slow startup time and possible problem with DBus instance lock on Linux

2022-06-23 Thread Ofnuts via gimp-user-list

I run several Gimp versions (currently 2.10.24 and 2.10.30). Each
version has its own user profile. I had a couple of crashes of the
2.10.30 version recently.

Recently both versions started to have very long startup times (around
30 seconds). I started investigating a rogue plugin, but even after
removing all directories from the plugin path the startup time persisted.

Starting Gimp with "--verbose" didn't help much, except for two loader
error messages that I have seen earlier when Gimp was working OK there
was nothing to see until the end of the 30s delay.

Then I noticed that if I started Gimp from a command line, it always
started a new instance, as if "--new-instance" was specified.

While checking if I had a hidden running/zombie instance, I came across
an orphan script-fu process, but killing it didn't fix the problem.

Looking at the code, it appears that Gimp uses DBus to check for
existing running instances and transfer them CLI parameters, so I
assumed that something was amiss with DBus. Logoff/logon didn't fix
anything, but rebooting the system did.

So, my question is: if this happens again,  are there DBus commands that
I can use to check the problem, and if possible, fix it?

--

ofnuts



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] how to use gimp

2022-03-05 Thread Ofnuts via gimp-user-list

Yes, Gimp is free open-source software, with no strings attached. You
can do whatever you want with it, including resell it.


On 26/02/2022 08:25, 大下 郁斗 via gimp-user-list wrote:

You can see a lot of sites that take a screenshot of gimp's screen, put it up 
on the web and explain how to use gimp, but do the gimp official allow these 
things?

Windows の メール  から送信

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Rotating the entire frame of reference

2022-03-05 Thread Ofnuts via gimp-user-list

1: Yes: https://docs.gimp.org/en/gimp-view-flip-rotate.html
2: The same that you would tilt a piece of paper when drawing. Not very
useful if you edit  photos with your mouse, but a lot more if you pain
using a tablet.
3: Yes, just hit '!' (exclamation mark)
4: Not as far as I know. Note that in the same vein Crtl-MB is the zoom.

On 05/02/2022 20:15, Jeffery Small wrote:

GIMP 2.10.30 on Xubuntu 20.04

While performing other operations, I have found that the entire frame of
reference for gimp (image, guides, etc.) is rotated by holding Shift-B2
(middle mouse button) and dragging the mouse.  This always happens
accidentally and I have found no way to reset the view back to normal.
Here are my questions:

1: Is this type of rotation documented in the manual?
2: Why would you want to do this?  When you save the "rotated" image it
seems to be the same as "non-rotated".
3: Is there any way to reset the view back to the normal exactly orthogonal
position?
4: Is there a way to disable the Shift-B2 assignment so that this doesn't
happen?

Thanks.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership:https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:https://mail.gnome.org/archives/gimp-user-list


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Gimp 2.8.22 Interleave Layers

2022-01-13 Thread Ofnuts via gimp-user-list

"interleave-layers" is now "ofn-interleave-layers" and works with 2.8
and 2.10 (and supports the 2.10 blend modes).

Download the ZIP from
http://sourceforge.net/projects/gimp-tools/files/scripts/

See instructions at bottom of page for installation.

The ZIP contains a HTML documentation.

On 13/01/2022 20:30, Paula Koval via gimp-user-list wrote:

Good day, all!

My partner has been using version 2.8.22 for some time.  At least that's
what it says when I check it on her laptop.

She has a new laptop so I went to the Gimp download site and I downloaded
and installed version 2.8.22 and found that in the Images menu it does not
include Interleave Layers.

Before posting this I have tried the following:  I looked for it in Python
Console by browsing the list but I don't know enough Linux to know the
command if I had seen it.  I tried to copy the program from her old laptop
but Windows 10 has done a great job of burying it.  I know it's in there
and I will keep looking for it to put on a flash drive and install on her
new laptop.

I want to be covered in any case.  Is there another way to install
Interleave Layers in 2.8.22, please?

Many thanks for your help.

Paula



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Difficulties with image rotation

2021-12-12 Thread Ofnuts via gimp-user-list

The Rotate tool is meant to rotate layers (or parts of layer).

What you want is Image > Transform > Rotate 90° (Clockwise or
Counter-clockwise)

On 27/11/2021 11:12, sylvain.min via gimp-user-list wrote:

Good evening,
I am sorry to disturb you but I cannot seem to get the image to display as I 
expect after rotating it.

This is the original image, a raw image from a Nikon DSLR.
[image.png]

I want to rotate it 90 degrees clockwise, but I get the following result.
[image.png]
As can be seen, I am missing part of the picture. I would like to know how to 
see the whole picture once rotated to allow me to do the changes as I want.

The rotation was done using the rotate tool. Clicking on the image and setting 
the rotation angle to 90 degrees.

How can I see the whole image once rotated?
Thank you very much for your help.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Map key through Script-Fu

2021-11-09 Thread Ofnuts via gimp-user-list

AFAIK you can't do that in a Script-Fu.

But do you know about "Edit > Keyboard shortcuts"?


On 09/11/2021 23:14, Rodrigo Morales via gimp-user-list wrote:

Hello everyone!

My question is: How to map a key through the Script-Fu console? Is there
any built-in function for doing that?

I know that I can bind keys by writing proper commands in menurc, but
AFAIK these commands are only read at startup and I sometimes want to
bind a key while GIMP is running. For this reason, I'm posting this
question.

Just for the record, I've managed to map a key in menurc by using the
following command in menurc

```
(gtk_accel_path "/select/select-stroke" "F3")
```

I've tried to execute that in the console, but that yields

```

(gtk_accel_path "/select/select-stroke" "F3")

Error: eval: unbound variable: gtk_accel_path
```
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Why is interface black and white

2021-11-08 Thread Ofnuts via gimp-user-list

1) Yes, Gimp can be sold (see the licence), but mostly to people that
don't know they can also get it for free.

2) See "Edit > Preferences > Interface > Themes" and  "Edit >
Preferences > Interface > Icon  Themes"? You can also find other themes
on the net and add them to your available themes.


On 06/11/2021 15:31, Neil Asher via gimp-user-list wrote:

Hi,
There are 2 things i would like to bring to your attention:-

Firstly, did you know some people are selling this freeware software on ebay.
They say they have full authority to sell this product but I’m not certain they 
do.
I’ve attached a screenshot of the DVD (there is nothing to say it is Gimp 
software) and a screenshot of the seller incase you want to take action
against them.
If I had known it was freeware I wouldn’t have bought it off ebay.

Secondly.
I loaded the DVD I had bought and when I opened the interface it is in black 
and white – see screen shot and not nicely coloured as in your manual – see 
screenshot.
When I noticed it was freeware I uninstalled the product.

I then downloaded the GIMP software from your website but the interface is 
still black and white.
I’m not sure if everything is working but I just can’t work with an interface 
that is so dull and boring.
Can you tell me how to get a nice coloured interface to work with please.

Regards,
Neil Asher



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Canvas Size on Crop

2021-10-30 Thread Ofnuts via gimp-user-list

Things have gotten a bit more complex in 2.10 because IIRC some of the
tool options are really under the control of the "Input device" tab of
the preference, where you also find "Save now", "Reset to defaults"
buttons and a "Save on exit" checkbox. This would be coherent with tools
being associated to input devices.


On 30/10/2021 23:15, Akkana Peck wrote:

Well, sort of. But that setting doesn't work the way it used to,
and in some cases it doesn't work at all.

First, "Save Tool Options Now" used to save the active tool, as well
as the options for all the tools. Now it (both 2.10 and 2.99) always
saves the active tool at exit, even if you have "save tool options
at exit" un-checked and you've explicitly done a "save now" to set
the tool you want selected whenever you start gimp.

To see that, start with a fresh profile (rename your current one), then:

Start gimp.
Click on the Crop tool.
Edit-Preferences
   Tool Options
 Click Save Tool Options now.
 Un-check "Save tool options on exit" (in 2.99 it's un-checked
 by default, in 2.10 it's checked by default).
 Dismiss Preferences
Click on the Paintbrush tool.
Exit gimp.

Start gimp.
The active tool is now Paintbrush, not Crop.

With the gimp 2.10.22 from the Ubuntu repos, that I use for everyday
gimping, I've had worse problems, where actual tool options, like
the brush for Paintbrush and Fixed size or aspect for Crop, are also
saved on exit even when the preference isn't checked. But I haven't
been able to reproduce that with a fresh profile, or on 2.99, so
I suspect some some strange interaction it's having with my existing
configuration. That's why I never filed a bug on this even though
it's been annoying me for at least a year.

But the bit about not saving the active tool is reproducible with
both 2.10 and 2.99, so I should probably file a bug on that part.
In 2.8 and earlier 2.10 versions, the active tool was reliably saved
when you clicked "save tool options now", and was never saved at
exit if you un-checked the "save on exit" preference, and it's
hard to imagine that anyone who would un-check that preference
would want the active tool saved at exit.

 ...Akkana
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Please take my name of the list

2021-10-19 Thread Ofnuts via gimp-user-list

See at the bottom this post the URL of the list subscription management
page (List Membership), then see the bottom of the page.

On 19/10/2021 19:21, Fons de Wit wrote:

Please, t as let my name of the list

Envoyé par moi!
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Canvas Size on Crop

2021-10-19 Thread Ofnuts via gimp-user-list

On 19/10/2021 07:36, Ruben Safir wrote:

It has been described on the mailing list about ten times, and it keeps
falling on deaf ear.  Try using it and see for yourself how it keeps
defaulting to size 64 fonts and you can't force it to change accept by
luck and seridipity.



Uh? To change the default font size, you change it in the tool options,
and then have the tool options saved in Preferences (for which there are
basically two strategies, saved options each time when you exit, or save
options once for all). You can also use tool presets...

Otherwise, "described in the mailing list" isn't the same as "reported
in the bug tracker".


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Canvas Size on Crop

2021-10-17 Thread Ofnuts via gimp-user-list

On 17/10/2021 10:24, Alexandre Prokoudine via gimp-user-list wrote:

On Sun, Oct 17, 2021 at 5:21 AM Ruben Safir wrote:

Hello

I thought I asked this before, but I can't find any reference to the
previous email on any search engines... so here we go..

Why is it that now when I crop the image that the canvas sticks out.
Why did you break this?

We did not break anything :)


Only dozens of tutorials, and maybe  a few scripts...


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Any automatic way to use the Measure Tool for angles of 0 and 90 degrees?

2021-10-03 Thread Ofnuts via gimp-user-list

You can depress the Control key while moving the mouse for the second
point, this constrains the measure angle to multiples of 15°.

On 03/10/2021 11:39, A GIMP user wrote:

When I use the Measure Tool I often want to measure a distance that's
either vertically eight above, right below or on the same horizontal
level as the starting point.

Sometimes wiggling the mouse back and forth takes quite a while before
the line that's measuring the distance is at 0° or 90°. I'm wondering
if there's any way to have the Measure Tool just automatically set the
measurement at one of those angles from the starting point?  I'm using
GIMP 2.8.22.


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Print Size Issues

2021-08-11 Thread Ofnuts via gimp-user-list

See https://www.gimp-forum.net/Thread-Image-size-in-Gimp

On 11/08/2021 16:36, Reece Shave wrote:

Good afternoon,

I recently downloaded GIMP, am new to image manipulation as a whole, and am 
slowly coming to terms with it...so far it's great, I love the amount of 
options you guys have put on there!

Now, I seem to be having an issue whereby the images do not print in the scale 
I set them to and am finding I have to compensate for this...i.e, when I'd like 
for a font to print at 10mm, I'm having to increase the size in the software to 
something like 25mm.

I change from pixels to mm each time I open the software (is there a way to set 
mm as the default setting here?), and would like to be able to print the sizes 
I enter.

Forgive me if this is just my ignorance, but my marketing guys couldn't figure 
this out either!

Thanks for providing a free comprehensive manipulation software, and kudos to 
the team of volunteers that dedicate their time - including those who read this 
email!

Reece Shave


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


[Gimp-user] Fwd: Re: Trouble with warp sharp plug-in

2021-08-04 Thread Ofnuts via gimp-user-list

Oh my, nearly 15 years old code, updated for Gimp 2.2 (we are now at
Gimp 2.10)

Not good enough at Scheme to fix it, but from what I understand you
shouldn't get the problem if there is no selection when you start the
script.

On 02/08/2021 00:37, Judy wrote:

Before I recently got a new GIMP installed, I used to have a gimp
warp-sharp plug-in that I really liked.  It was not on the new one I
got, GIMP 2.10. I know we had to install it previously.

I found it at gimp.org/tutorials/Smart_Sharpening/warp-sharp.html.

I asked my husband to install it for me (I'm just a simple-minded GIMP
user, 78 year old woman who just does a few things on GIMP, which I
love), he's the nerd, and he did. I tried to use it and I got these
two messages:

1. Warp Sharp Message  Error while executing script-fu-warp-sharp
Error: Procedure of execution of gimp-selection-load failed on invalid
input arguments: Item 'Selection Mask copy' (24) cannot be used
because it has not been added to an image.

GIMP Message 2 Plug-in 'Warp sharp' left image undo in inconsistent
state, closing open undo group.

Can anyone help me (well, my husband) with what we need to do so I can
use the warp-sharp plug in?

Judy Wilson


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Script-fu in GIMP - and batch processing.

2021-05-30 Thread Ofnuts via gimp-user-list

You can write your scripts in Python, this can be simpler to master:

https://stackoverflow.com/questions/44430081/how-to-run-python-scripts-using-gimpfu-from-windows-command-line/44435560#44435560


On 30/05/2021 10:14, ludo0565 wrote:

Hello Robbie,

First of all I present my excuses to you:
My mail box placed your mail in spam - and I only saw it yesterday.

So thanks a lot for your answer. It's not so easy to find someone interested in a 
question about scheme & script-fu ...
;-)

I'll try this as soon as I get time - which is pretty scarce at the moment... 
unfortunately.
And I I'll let you know as soon as I do.

Thanks again.

ludo

Le 26 mai 2021 00:26:56 GMT+02:00, Robbie Huffman  
a écrit :

On Sat, May 15, 2021 at 05:45:47PM +0200, ludo0...@dbmail.com wrote:

Then I tried with this:

(define (batch-unsharp-mask pattern radius amount threshold

filenamenew)

   (let* ((filelist (cadr (file-glob pattern 1
     (while (not (null? filelist))
    (let* ((filename (car filelist))
          (filenamenew (+ "(car filelist)" "-new"))
   (image (car (gimp-file-load RUN-NONINTERACTIVE

filename filename)))

   (drawable (car (gimp-image-get-active-layer

image

  (plug-in-unsharp-mask RUN-NONINTERACTIVE image drawable

radius amount threshold)

  (gimp-file-save RUN-NONINTERACTIVE image drawable

filenamenew filenamenew)

  (gimp-image-delete image))
    (set! filelist (cdr filelist)

But that didn't work either, because the argument to " + " (sum) must

be a number.

I think you could (string-append filename "-new") to get something that
works OK.



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Fw: scan-mirrage-effect-Problem with postcard

2021-05-12 Thread Ofnuts via gimp-user-list

If the moiré isn't the same when you do several scans (after moving the
card a bit), then you can eliminate the moiré by making several scans
and averaging them after making them overlap exactly.

To average images you can stack them and set the opacity to 100/N where
N is the order of the layer in the stack starting from the bottom: 100%
at the bottom, then 50%, then 33%, 25%, 20%, 17%... There is also a
average filter in the GMIC plugin (but the median filter it contains may
be even better).


On 11/05/2021 02:56, Rick Strong wrote:

I didn't see my reply show up on the Gimp user list.
RS
-Original Message- From: Rick Strong
Sent: Monday, May 10, 2021 11:33 AM
To: Tim (from Hamburg) ; gimp-user-list@gnome.org
Subject: Re: [Gimp-user] scan-mirrage-effect-Problem with postcard

Well, it's not moiré from the glass.

It seems to be a scanning artefact introduced by the scanner. But you
say it
doesn't happen with scans of images on plain or matte paper.
try putting a black card over the postcard before you lower the lid. Also
check your scanner settings.

If that doesn't work, you could try photographing the glossy postcard
with a
camera. With some fridge magnets you could stick it vertically to the
side
of something metallic in good light, like your refrigerator or your car.
Then crop out or clone out the magnets from the photograph.

Rick S.
___
gimp-user-list mailing list
List address:    gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Google Chrome OS

2021-05-12 Thread Ofnuts via gimp-user-list

Caveat: the fundamental principle of Chromebooks is that they are built
to run ChromeOS, and in ChromeOS a lot of the heavy-processing is
off-loaded to Google servers. This allows to make Chromebooks with small
CPUs and RAM to keep their price low.  An application like Gimp can
require a lot of CPU and RAM to process some images, so you may find
your Chromebook to be struggling when you process decent-sized images.


On 10/05/2021 21:25, Partha Bagchi via gimp-user-list wrote:

Disclaimer - I haven't tested out linux on Chrome OS, though I've played
with Chrome OS on a spare laptop. so you'll have to do the heavy lifting.

Chrome OS has had the ability to run  linux apps for quite a while. So,
first enable linux apps on your Chromebook. This should help:
https://opensource.com/article/20/9/linux-chromebook

Then once you've done that, it "should" be as simple as "sudo apt-get
install gimp".

Hope this helps. If not, please let me know.

Thanks,
Partha



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] (no subject)

2021-03-30 Thread Ofnuts via gimp-user-list

Answer: not by scaling. If you don't scale horizontally and vertically
by the same factor, the image will be distorted. To giver you image a
4:3 ratio; you either have to cut one dimension or to add space in the
other.

A Crop tool option lets you constrain the aspect-ratio of what you crop,
and another will also let you extend the image by cropping (call it
reverse-crop). This latter action will create empty space that you have
to fill somehow.


On 30/03/2021 15:13, ryan lague via gimp-user-list wrote:

Hey
How do I set the aspect ratio or image ratio
Say to 4:3

Sent from Mail for Windows 10

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Mixing type fonts or sizes on the same layer

2021-03-30 Thread Ofnuts via gimp-user-list

To add a second text layer you start the Text tool and click anywhere
outside an existing text layer.

Since Gimp 2.8 you can have mixed font text in a single text layer. The
text you create gets the defaults set by the Tool options, but you can
select text like you would do in a word processor and change its font,
size, and spacing using the on-canvas font widget.

On 26/03/2021 15:18, Paula Koval via gimp-user-list wrote:

Greetings!

I hope that I have sent this inquiry to the right place.

I am using Gimp 2.8.10  I being in a GIF, open it, add a layer of text in
the font and size I want, add drop shadow.  After the layers are all made
to be of the same size and interlaced I have a GIF with a message on its
top layer, all in the same font and point size.

I want to be able to have at least two point sizes of the same font
appearing "on top" of a GIF or JPG.  I suspect that it will take the
creation of another layer as I have learned that a layer will accept but
one text box at a time.  I have attempted to use the Add Layer but I am
missing something or doing something wrong.

May I please have some help to get me going in the right direction?

Many thanks!

Old Crow Paula



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] How to get a lighter neutral tone with gimp

2021-02-21 Thread Ofnuts via gimp-user-list

There are some lighter themes provided, that can be chnaged with
Edit>Preferences>Interface>Themes

Did you try them?

On 21/02/2021 22:06, M.R.P. zensky via gimp-user-list wrote:

Hello I am wanting to change the gimp default background to a lighter color 
that is more natural. I did not care for the default themes. What are my 
options?
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Problem with text

2021-02-08 Thread Ofnuts via gimp-user-list

My solution is "Layer>text to path" and then bucket-fill a selection
from that path. I assume that the path is directly obtained from the
font at that point and and so is more accurate than the Gimp/Pango
rendering.

This said it would be nice if the SPR were disabled for these uses.

On 07/02/2021 18:07, akovia via gimp-user-list wrote:

If it's the same issue, it's been happening to me for quite some time now.

https://imgur.com/SYDKSAH.png

The only solution I've found that works every time is to discard the text 
information, lock the alpha channel, and fill with the color you want. 
Depending on the mode, desaturating still leaves some remnants behind for me.


On Sat, Feb 6, 2021, at 7:36 PM, Liam R E Quin wrote:

On Sat, 2021-02-06 at 17:47 -0600, Judy wrote:

I am having a problem with some pixels being a different color when I
use text in the GIMP.


You may find desaturating the layer afterwards helps; it's usually to
do with sub-pixel positioning on LCD screens.


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Problem

2021-02-05 Thread Ofnuts via gimp-user-list

In Gimp you can select the pixels areas that are subject to editing
(painting, but also geometry transform). This is done using a selection
mask (often called "the selection") that covers the whole image. Your
editing is constrained by two things: it applies to the "active/current"
layer, and within that layer, to the pixels covered by the selection
mask. So there should be some overlap between the layer and the
selection mask for something to happen.

In your case, you likely have some tiny selection somewhere that falls
outside your active layer. You can remove it using "Select>None". When
there is no selection, the transform tools apply to the whole of the
active layer.

On 03/02/2021 14:31, Antonio Zoder via gimp-user-list wrote:

Hi!

I have the problem that when I want to use the transform tool that I get the 
message The selection does not intersect with the layer.
What does that mean? How can I solve this problem?

Best regards,
Antonio

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] setting DPI for Gimp

2021-01-20 Thread Ofnuts via gimp-user-list

By default, Gimp uses "dot-for-dot" displays (one pixels of image on one
pixel of screen). So the image is displayed with the screen resolution.

You can toggle this ("View>Dot for dot"), in which case Gimp will
display the image as indicated by the image's print resolution (see
"Image>Print size"). This assume that the screen resolution is set
correctly (see "Edit>Preferences>Interface>Display>Monitor resolution").

For more info: https://www.gimp-forum.net/Thread-Image-size-in-Gimp

On 20/01/2021 20:49, Helmut Jarausch via gimp-user-list wrote:


Hi, since a short time I have a 27inch 4K Monitor which results in 
162 DPI.

xdpyinfo reports
  dimensions:    3840x2160 pixels (602x338 millimeters)
  resolution:    162x162 dots per inch

rr
But when Gimp displays something, e.g. a rectangle, reading the
(displayed) rulers one can read the height and width of the rectangle,
but using an (external) ruler the displayed image (at 100%) is much
larger, probably scaled by 162/96.
Thus, it looks like Gimp still uses 96DPI for displaying something.
How can I fix this?

Many thanks for a hint,
Helmut
___
gimp-user-list mailing list
List address:    gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Download of Registry

2021-01-12 Thread Ofnuts via gimp-user-list

On 06/01/2021 06:24, Liam R E Quin wrote:

On Tue, 2021-01-05 at 22:32 -0500, Robert Hogg via gimp-user-list
wrote:

Hello folks: Tried to download the following but was unsuccessful:

https://www.gimp.org/registry/node/186

You'll have to look elsewhere, or see if the page is archived on
archive.org's wayback machine.

The gimp registry is no more.



Its carcass is here: https://github.com/pixlsus/registry.gimp.org_static


The OP can likely find the file in the "files" section. This said, there
could be a more recent version elsewhere.

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] [Animations] How to merge down multiple layers?

2020-12-25 Thread Ofnuts via gimp-user-list

You have to create one copy of your layer per frame, and merge it in the
frame layer. There are several scripts around for this, see for instance
my own ofn-interleave-layers that you will find here:
http://sourceforge.net/projects/gimp-tools/files/scripts/

Installation instructions on the web page

The .ZIP contains a HTML doc.


On 24/12/2020 20:26, R45XvezA via gimp-user-list wrote:

Sample: I have a GIF sticker and i want to add some texts to it Once wrote text using 
"text tool" then it create a new layer and we can right click on that layer 
then select 'merge down' but it apply to one layer bottom to it. How to apply for all 
layers at once? (the GIF has 20 layers as frames including background image)

Use cases
For animations (create or edit gifs)

Sent with [ProtonMail](https://protonmail.com) Secure Email.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Procedure Plug-in

2020-12-25 Thread Ofnuts via gimp-user-list

You just need to remove the executable from Gimp's reach (delete or move
elsewhere). You can find where the executable is by

1. locating your Gimp profile as explained here:
   http://www.gimp.org/tutorials/GIMPProfile/
2. Exit Gimp
3. Navigate to that directory with your file explorer
4. Edit the "pluginrc" file with a text editor
5. Search for the text of the menu entry for your unwanted plugin
6. The name of the file will appear in the "plug-in-def" line that
   precedes that menu text
7. Remove the file using your file explorer
8. Close the "pluginrc" file
9. Restart Gimp. The plugin should be gone


On 24/12/2020 20:15, David Appleyard via gimp-user-list wrote:

Hi there,

I am writing to enquire regarding the process of removing unwanted
plug-ins. I recently installed a batch cropping plug-in from GitHub,
uploaded by khalim19.

*please find the screenshots of my procedure browser attached.

I no longer wish to use this plug in and would like to delete it from the
GIMP application but I simply don't know how to do this. I've tried
uninstalling the app, and deleting the batch cropping plug-in folder from
my downloads but neither have worked. I was wondering if you could advise.

Kind regards,

David Appleyard.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list



___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


Re: [Gimp-user] Gaussian blur confusion

2020-12-22 Thread Ofnuts via gimp-user-list

On 21/12/2020 20:31, Joshua Oxley via gimp-user-list wrote:

  anything online towards the subject and even
when I click help in Gimp it clearly s


The problem is that the blur "units" have changed with Gimp 2.10, IIRC
you have to divide by about 6 the blur amounts for previous versions of
Gimp.

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list