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


Re: [Gimp-user] Script-fu, SF-FILENAME and document index

2020-10-05 Thread Ofnuts

What is the "document index"?

On 04/10/2020 14:10, Gottfried Müller wrote:

Hello,

I wrote a script with a SF-FILENAME parameter. I opened the image in the
script with "gimp-file-load RUN-NONINTERACTIVE filename filename". The
name of the opened image file did not appear in the document index. It
does not matter using RUN-NONINTERACTIVE or RUN-INTERACTIVE. And I did
not find any procedure to add the filename in the document index. Is
there a way to do this? I am using version 2.10.20 in a Manjaro
distribution.

Gottfried


___
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] Orientations, Copyright Notices, metadata, and resized layers

2020-10-03 Thread Ofnuts

On 03/10/2020 02:14, Ruben Safir wrote:

I don't think it is coming from my Cannon Camera.

Either your camera or you have entered a default comment. Create an
image from scratch with Gimp and see if it contains your name...

Maybe I set this up in the GIMP?  Where?

It is not in the camera
[ruben@flatbush 105___10]$ strings IMG_4588.JPG |grep Ruben

nadah


You have an "Artist" EXIF tag that says "RUBEN SAFIR". It is present in
the "Before" image. That one if from the camera. If you T3 is like my
70D, somewhere in your "wrench icon" settings, there is a "Copyright
information" entry where this can be set.

The orientation problem is weird:

With my Gimp and my Canon Camera, just scaling a vertical image and
re-exporting:

Before:

 * Camera Orientation  : Rotate 270 CW
 * Orientation : Rotate 270 CW

After:

 * Camera Orientation  : Unknown (255)
 * Orientation : Horizontal (normal)

While on yours:

Before:

 * Camera Orientation  : Rotate 270 CW
 * Orientation : Rotate 270 CW

After

 * Camera Orientation  : Unknown (98)
 * Orientation : Rotate 270 CW

So 1) the "undefined" tag is different and 2) the second Orientation tag
is  not reset. Since you are using Linux it could be a problem with the
exif library (libgexiv2.so.2.0.0 and libexiv2.so.14.0.0 on my system)






___
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] Orientations, Copyright Notices, metadata, and resized layers

2020-10-02 Thread Ofnuts

On 02/10/2020 23:33, Ruben Safir wrote:

But AFAIK when Gimp edits an image, it removes the Exif Orientation
flag, so the image should be displayed with the default orientation,

Whatever it is doing it is doing it 100% wrong 100% of the time and I
have to go into the file with VIM and remove the exif.


No such problem for me, and again, there are free tools to remove EXIF
if necessary, for instance with ExifTool:

    exiftool -all= {file}


And somehow it is putting my name in there.  Is that really necessary as
if I don't have enough things tracking me the universe.

I don't think it is coming from my Cannon Camera.


Either your camera or you have entered a default comment. Create an
image from scratch with Gimp and see if it contains your name...


If you want, I can demonstrate this.  Remove the EXIF and it orients
correctly.


I just fixed
http://www.mrbrklyn.com/brooklyn/images/2020_09_fishing/bike.jpg

by MANUALLY removeing the EXIF data from near top of the file.
It was correct in the GIMP and sideway in most of the rest of the
world..most importantly in Firefox et al


You are not demonstrating anything, we need the before and after images.


Last, the exported image is what you see on the canvas, an dis the size
of the canvas. Out-of-canvas parts are automatically cropped on export,
there is no need to flatten the image first.


That is good.  But there is even less need for the crop to be broken
because someone doesn't know how to use CTL Z.



Crop is not broken... for most purposes (especially exporting the
result) it works as before. And if you set the "Delete cropped pixels"
option, just save your tool options to have it become a default for you.


___
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] Orientations, Copyright Notices, metadata, and resized layers

2020-10-02 Thread Ofnuts

On 30/09/2020 18:58, Ruben Safir wrote:

Hello

I've been using the GIMP for decades at this point.  It has been bothing
me that of late (and I am old so late can mean years :) ) that I rotate
the image 90% and it doesn't prent in the correct orientation on my
websites.  This is getting to be a real PIA.  With JPGs, you can't just
remove the EXIF data without reprocessing the entire image.  I have
resorted to trying to edit the files in VIM and removing the EXIF data.

But that has lead me another issue, and this is ration serious.  It is
easier to so than tell:



You can use ExifTool to change the Exif on a JPG (without
decompressing/recompressing).

But AFAIK when Gimp edits an image, it removes the Exif Orientation
flag, so the image should be displayed with the default orientation,
which is how Gimp itself displays the image. The Orientation flag is
indeed missing in the EXIF dump you attached. I strongly suggest that
you try to display the images with various images viewers (including
browsers showing the image "bare" without any HTML) before pointing
fingers, and check if the HTML of your site doesn't contain attributes
that rotate images.

Last, the exported image is what you see on the canvas, an dis the size
of the canvas. Out-of-canvas parts are automatically cropped on export,
there is no need to flatten the image first.




___
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] Issues with text along path

2020-09-04 Thread Ofnuts

On 04/09/2020 15:34, Techno wrote:

I've downloaded your ofn-text-along-path.py plug-in and I've put it in
my C:\Users\techno6\.gimp-2.8\plug-ins sub-directory. I've restarted
GIMP 2.8 twice, but I can't find the plug-in in GIMP.

Can you tell me where it should be in GIMP?


Depends where you look. The plugin comes with an extensive documentation
(HTML file with may images). The plugin is not accessed from the Image
window menu, but in the right-click menu of the "Paths" list.




I think I've used the previous version some years ago. I used it once
and no longer remember how to use it. Could you let me know where to
look for it and how to use it? Thanks.



As above, the ZIP contains an HTML file that explains most everything


This link gives me a page that says, "Sorry, the page you were looking
for in this blog does not exist. "


Try this one instead:
https://gimp-science-labs.blogspot.com/2019/09/new-version-of-ofn-text-along-path-v16.html


___
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] Issues with text along path

2020-08-29 Thread Ofnuts

On 28/08/2020 19:58, Rick Strong wrote:

Hi Akkana,

Since you got text on a path to work, would you be so good as to
outline the
steps doing it in point form?

Also, how can the text be placed (or moved to) any point on the
outside or
inside of a circle?



The built-in T-A-P starts the text on the beginning of the path. If you
have a circle you can open the circle at any point to redefine its
beginning, just add a point (Ctrl-Click) where you want it to start,
another point just before, and delete the segment between the two
(Ctrl-Shift-click). And if you need a closed circle you can reconnect
the two points, the circle will still be starting on one of these.

Otherwise, I have a quite popular plugin to layout text along a path,
with many options that make it somewhat easier to use:

https://gimp-science-labs.blogspot.com/2014/05/text-along-circular-path.html






___
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 run GIMP 2.8.10 and GIMP 2.10.20 simultaneously?

2020-08-15 Thread Ofnuts

On 15/08/2020 01:39, Techno wrote:

I'm on Windows 10 and have been running GIMP 2.8.10 for some time, but
I'd like to try GIMP 2.10.20.

I'm not really a graphics person. I have a book titled "The Book of
GIMP" that helps me a lot. It covers up to the version I'm using, but
it won't cover anything new in GIMP 2.10.20. I don't want to clobber
the older version because I will be lost without the advice from that
book.

If I can't install it so that I can run both versions simultaneously
could the newer version be installed and then have it so that I can
use one or the other version, but not both at once?

Thanks for any advice on this.



Yes, you can, but... if you have 2.8 and install 2.10, the 2.8 is
removed and the 2.8 profile is transformed into a 2.10 one. So have
bother versions, a technique is to

1. Make a backup of your Gimp 2.8 profile

2. Get hold of both Gimp 2.8 and 2.10 installers (you can also possibly
move your 2.8 installation where the 2.10 installer won't find it)

3. Install Gimp 2.10

4. Reinstall Gimp 2.8 (or restore the previous installation)

5. Reinstate your Gimp 2.8 profile.

Note that when you call Gimp, the first thing the executable does is
look for an already running instance and pass it the file you want to
open. So if you can have the two versions on the same system and start
one or the other when none is running, when there is an instance running
the executables of both versions will always end up calling the running
instance. You can run two separate instances by calling Gimp with the
"-n" parameter.

Recommendation:  create directories in your user space for your add-ons,
and use Preferences>Folders to add them to the configuration of each
version of Gimp. That way you can share the add-ons between both versions.

A completely different way is to use a "portable" build for at least one
of the versions.


___
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] click and drag issue

2020-08-15 Thread Ofnuts

On 15/08/2020 01:06, Stella Owen via gimp-user-list wrote:

Thank you so much. I had given up on GIMP and was at my wits end. This
explains everything.
I will give GIMP another try.


Also, Gimp uses the mouse to its full extent, so mouse problems that
aren't too visible in other apps (browser, file explore, word processor)
are much more visible in Gimp. I have seen many "Gimp bugs" be fixed by
getting a new mouse (or sometimes by merely putting fresh batteries in
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


Re: [Gimp-user] paintbrush issue

2020-07-02 Thread Ofnuts

On 02/07/2020 13:48, John Mackenzie via gimp-user-list wrote:

Sorry to bother anyone with such a simple question, but I can't get the
paintbrush  feature to work. I had it working before, but now I can't use
it. What could be the problem?



https://www.gimp-forum.net/Thread-When-suddenly-nothing-works-anymore

https://docs.gimp.org/en/gimp-getting-unstuck.html

___
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] In need of an older version

2020-06-30 Thread Ofnuts

On 29/06/2020 18:43, Jacques Le Fèvre via gimp-user-list wrote:

The Gimp is useful for me for two purposes:

- Repairing scanned photos (removing scratches and stains)
- Creating pictures to post on a web site I manage.

I have two versions of the Gimp: Gimp 2.4.0-rc3 on an old laptop
(ubuntu 7.10) and Gimp 2.8 on my desktop computer (Linuxmint 17).


Wondering why you stopped at 2.4.0-rc3, because 2.4.7 would likely have
a few bugs fixed.


When I have to do serious picture editing, I use the older version,
because of features that are lacking on the more recent one:


First make sure that you are using the "classic" multi-window UI:
un-check "Windows>Single window mode"


- The toolbox on the left of the screen, which is very useful to
switch tools quickly and easiliy.


It should be there by default. Otherwise: Windows>Dockable
dialogs>Toolbox. The visibility of the toolbox (and all auxiliary
windows) is toggled with [tab].


- The possibility of adjusting the size of text pasted on an image, as
long as it is not anchored.


You can still scale the "Floating selection" before anchoring it (you
can also make it a new layer and scale it later...)


- The automatic closure, as a straight line, of the freehand selection
tool.


Just double-click after your last anchor.


- The ease of editing foreground and background colours. I have not
found the way to even do it with the newer version.


If you mean changing the colors used by the tools, just click their
swashes in the toolbox (the toolbox includes the color swashes by default).


The need of continued use of the Gimp 2.4.0-rc3 prevents me from
updating the system on the laptop. It would also be more convenient to
use the older version of the Gimp on the desktop computer, along with
current versions of other software.


I don't see anything in Gimp 2.4 that I could not do in Gimp 2.8 or
2.10. You should really give them a try.


I would therefore be happy with a 32 bit i-386 Debian package (.deb
file, to install with the dpkg -i command) of the Gimp 2.4.0-rc3. Is
there any way to get it?


You can recompile Gimp from source. However you may have to do some
adaptations because the development toolchain has somewhat changed in 13
years.



___
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] Clone Tool Issue

2020-05-11 Thread Ofnuts

On 11/05/2020 07:57, Liam R E Quin wrote:

On Mon, 2020-05-11 at 12:09 +0800, SHAUN LORENZ TAN wrote:

Good afternoon sir/ma'am,

I would like to ask for help regarding the clone tool in the GIMP
app. I
observed that the clone tool does not seem to work anymore right
after i
used the text tool.

Note that the text tool creates a new kayer and makes it active. So you
will need to go to the layers dialogue and choose the layer you want to
clone from.


And the text layer is typically smaller than the canvas, so it is likely
that the OP is trying to clone outside of that layer's boundary.
___
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] Lineart blending

2020-05-01 Thread Ofnuts

On 30/04/2020 02:01, Veronica Ma via gimp-user-list wrote:

Hi there,

Personally, I draw with a mouse and use the path tool to create stable
lines. My lines are usually in solid black and they just sort of "frame" my
characters.

However, the more I look at other artists' artwork, the more I notice that
most of them have their lines blend smoothly with the color of the
surface, not just a harsh black line outlining the object. I have tried
searching up but the results misunderstood my question. I understand this
Gimp inquiry may not be answered for a while, so I'll just have to make my
black lines thinner for the time being. Of course, if any future replies
are helpful, I will appreciate them a lot in advance.


Did you try to blur the layer with the lines by a couple of pixels?

___
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] Fade option

2020-04-24 Thread Ofnuts

On 24/04/2020 03:03, Tony Huffaker via gimp-user-list wrote:

I recently loaded the latest version of GIMP 2.10.18. When working on a
photo I used the White Balance function from the Colors menu. The action
changed the image more than I wanted, so I went to the Edit menu to use the
Fade option to scale back the change made by the function - BUT there wasn't
a Fade option available. Why is it not there on the latest release? I've had
to uninstall the latest version and fall back to a prior version where the
Fade option was available.

Was this an oversight or am I missing the point entirely?


You can get a very similar result with:

- duplicate the layer

- apply the change to the top layer

- adjust the effect by reducing the opacity of the top layer


___
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] translucent background?

2020-04-21 Thread Ofnuts

On 22/04/2020 01:30, Dave Stevens wrote:

I want a rectangular text box with a translucent white background. I can
make it transparent but don't see a way to get, say, 30% transparency.
Can someone refer me? will RTFM.

TIA.

Dave


You do it with two layers:

- a plain text layer (letters at full opacity, on transparent background)

- a second layer under the text with a colored rectangle, adjust the
layer opacity to taste.

You can put both layers in a layer group so that you can handle them
together (move around on the cover, or move them up/down in the layer stack)

___
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: How to delete background using fuzzy select tool

2020-04-20 Thread Ofnuts

On 20/04/2020 15:11, alx@gmail.com wrote:

Thank you. I have tried to increase the threshold and this is what I get.

As soon as I pass the 46 mark, the selected area becomes the outline of the
earrings which isn't what I would like to delete. I am looking to keep the
earrings but delete the backround.

Any other suggestions  ?


For better suggestions we would need at least an real extract of the image.

PS: Proper mailing list etiquette is to reply to the list, and not to
some person who answered


___
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: How to delete background using fuzzy select tool

2020-04-15 Thread Ofnuts

On 14/04/2020 13:15, mr alexandre le blanc via gimp-user-list wrote:





From: alx@gmail.com   mailto:alx@gmail.com> >
Sent: 13 April 2020 19:08
To: gimp-user-list@gnome.org 
Subject: How to delete background using fuzzy select tool



I have selected the whole background which is all shaded leaving a neat
picture of the subject.

I am however not able to do anything with the selected area , not cut , not
insert a white plain colour.

An alfa channel was added.

I am a beginner with gimp and would be grateful if someone could advise what
I am doing wrong.


There is the screenshot of my pic after selecting the backround.

https://imgur.com/a/KdyJuq9


If your selection look like this you selection threshold is too low and
you are selecting plenty of small spots leaving out plenty of other
small spots. Increase the threshold until the selection is a line of
marching ants around the earrings.



___
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] Enhancing image after shrinking

2020-04-14 Thread Ofnuts

On 13/04/2020 15:36, Armyguy6902 wrote:


First off thank you for your feedback. I like what you recommended but was still
looking for something more sharp so I found a smaller logo and using the 'scale'
tool I was able to shrink the logo down to the dimensions I need. The logo looks
amazing! And then, I select any other tool and the entire logo blurs beyond
recognition. Is there any way to keep it from doing this? It's almost as though
GIMP knows how to shrink the image while preserving quality but doesn't want you
to keep the imagine in that form.


No reason for Gimp to behave like this, I would have to see your result
(and perhaps the XCF) to hazard an explanation.

___
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] Enhancing image after shrinking

2020-04-13 Thread Ofnuts

On 13/04/2020 06:52, Armyguy6902 wrote:

I am trying to make a very small banner (468x60) for a game that I play. I have
cropped out some objects from screenshots and saved them as PNG files so that I
can drop them onto the banner and eventually export as a jpeg. My issue is I
start with a really decent looking image and after I scale down the image it
looks so blurry and even on a small banner is very noticeable. This is also the
same with the text, but one problem at a time. I read about using some
filter/enhance tools to sharpen up the image and haven't been successful yet.
However when I open a few of these tools it has a preview window that has a
really nice looking "small" version of my original PNG file. Is there any way
that I can get that quality after shrinking my image down? I have taken a photo
and attached it to show the obvious difference between my image and the preview
before applying the enhance tools. Thank you so much for your time and please
try super simple explanations as I am very very new into the photo editing game.

PS: Text never scales well, the smooth sharp edges will be damaged by
scaling and this is very often noticeable. Either you use vector
graphics, or you produce the text at the intended size directly to avoid
rescaling.
___
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] Enhancing image after shrinking

2020-04-13 Thread Ofnuts

You photo shows something which is zoomed in, so it will always look
pixellated. Taking a photo doesn't help us, because it shows your screen
pixels. Make a screenshot instead.

There are case where shrinking an images leads to aliasing(*), the
non-obvious cure is to blur the image **before** scaling it down to
remove these periodic details that won't appear in the downscaled image
anyway.

Also, our eyes don't see small picture as we see big ones. On very small
pictures you may need to boost contrast and saturation.

Your logo:

* Slightly Gaussian blur (1.5)
* Downscaled 8X
* High-pass filter with contrast enhancement

https://imgur.com/C71bzTn
https://imgur.com/C71bzTn

(*) https://en.wikipedia.org/wiki/Aliasing

On 13/04/2020 06:52, Armyguy6902 wrote:

I am trying to make a very small banner (468x60) for a game that I play. I have
cropped out some objects from screenshots and saved them as PNG files so that I
can drop them onto the banner and eventually export as a jpeg. My issue is I
start with a really decent looking image and after I scale down the image it
looks so blurry and even on a small banner is very noticeable. This is also the
same with the text, but one problem at a time. I read about using some
filter/enhance tools to sharpen up the image and haven't been successful yet.
However when I open a few of these tools it has a preview window that has a
really nice looking "small" version of my original PNG file. Is there any way
that I can get that quality after shrinking my image down? I have taken a photo
and attached it to show the obvious difference between my image and the preview
before applying the enhance tools. Thank you so much for your time and please
try super simple explanations as I am very very new into the photo editing game.

Attachments:
* 
https://www.gimpusers.com/system/attachments/1393/original/92459278_246369436758146_9207918216242790400_n.jpg
* https://www.gimpusers.com/system/attachments/1394/original/Ark_Logo.jpg.png



___
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] Neophyte questions

2020-04-13 Thread Ofnuts

On 12/04/2020 23:01, Adobero wrote:

Attempting to migrate from PS to GIMP.


So you have to "unlearn" PS. Gimp is not a PS clone, it is a different
editor with its own ways.


In PS I learned > Cut to New Layer in ~10 seconds, used it in 2 seconds.  In
GIMP I'm wasting far too much time... Help!
I attempted about X00 times to Rectangular Select > Cut a historic photo image
from it's antique border and paste it onto a new layer.  After ~X00 attempts, I
was still unable to enjoy my selection surrounded by 'marching ants'.  After far
too many hours, I stumbled into an unrelated GIMP forum unrelated conversation
that included "Do a Select > None."   So after .5 lifetimes, I tried that and
somehow rectangular 'marching ants' appeared.  What does Select > None have to
do with anything?  How do I determine what is / is not on my clipboard?


You could have the Selection tool in a mode other than "Normal" (for
instance, "Intersect"), or you just didn't have the selection visible
(View>Show selection or Ctrl-T, you can also use Windows>Dockable
dialogs>Selection editor to see you current selection). Seeing a
"forbidden" icon near the pointer is also an indication.


Cut to New Layer was (if that's possible) much worse.  Of course I tried
creating a new layer and Cut > Paste to it.  I tried letting various flavors of
Paste create a new layer.  This, I guess sporadically produced a worthless
'Floating Layer'.  What does a Floating Layer have to do with anything?  I tried
anchoring everything to everything including my forehead.  Sometimes the Anchor
Button disappeared for a month.  What does anchoring have to do with anything?


This "Floating selection" is your copy... One reason it works that way
is to let you adjust the copied stuff before your merge it (in
particular, move/scale/rotate). After this you have two choices:

- Merge it (the term is "anchor") to your target layer: Layer>Anchor
layer, Ctr-H, or the Anchor button at the bottom of the Layers list

- Make it a layer of its own: Layer>To new layer, Ctrl-Shift-N, or the
"New layer" button at the bottom of the Layers list

You have to do either action before you can do other things (many menus
will be disabled while there is a floating selection).


But even more delightful (if that's possible), the Edit > Cut choice goes dark
for a month.  This, of course, allows zero cutting until I revert to an earlier
version of my work from a few months earlier.  What are advantages of Edit > Cut
going dark?  Did I breach my Edit > Cut limit?  Did I fail cutting too many
times?  Just curious.


There are case swhere you can't cut: no selection, no pixels in the
selection in the current layer...


And what else could I stumble into that could possibly make GIMP even more
unproductive than I describe above?  Well, after about 85,623 attempts to Select

Cut > Paste, I observe the following:

(1)  Zero pixels from my original Selection ever disappeared from my source
layer;  My source layer has no 'hole' in it, as I expect from a 'Cut'.


You get a hole if your layer can be transparent. If it is not you can
make it so using "Layer>Transparency>Add alpha channel". If you load and
image from a format that doesn't support transparency you won't get an
alpha channel by default. If there is no alpha channel, the cut is
filled with the background color (this is also how the erase
behaves...). Hint: the name of layers with no alpha channel is in
boldface in the Layers list.


(2)  Zero pixels from my original Selection ever appeared on my new target
layer;  My new target layer has zero pixels or material from my source layer via
'Cut > Paste'.


Yes, because it is all in the Floating Selection that you disregarded.


___
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] I have lost all my Gimp windows

2020-04-10 Thread Ofnuts

On 09/04/2020 16:09, Jean TAVENAS wrote:

Hello,

I have lost all my Gimp windows. I just have now one window with the entries
fichier edition selection affichage image calque couleurs outils filtres
fenetres aide.

I have de-installed the gimp application and re-install it as I thaught the
appli will be re-installed with a default configuration but unfortunately it
seems that the re-install keeps the previous setting.

I have been able to create a new tool box using a CTL B, but the window
created is not anchored to the main window.

Could you help ? how could/should I removed all Gimp files in order to do a
complete re-installation ?

Thanks for your help, I am on Win10.

Best regards


Edit>Preferences>Interface>Window management>Window positions>Reset
saved window positions to default values

Gimp keeps its configuration in the user profile:
. This profile is not erased
when you uninstall and reused by the next installation, so
reinstallation rarely fix things.



___
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] Scaling tool does not work - new laptop

2020-04-05 Thread Ofnuts

On 04/04/2020 14:59, Theokf wrote:

When I try to scale any layer on GIMP 2.10.18 it does  not work. The problem
seems to be with my new pc's installation. It's an HP omen whereas with my old
HP envy the scaling works.


"Doesn't work" is not very specific. Can you describe what you do more
in detail?


I did notice that some of the tools on the left doc don't show.


In the latest Gimp (2.10.18) tools are "grouped", there is a small arrow
in a corner of tool icons to unfold the group and pickup another tool.

___
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] A problem

2020-04-03 Thread Ofnuts

On 03/04/2020 17:32, Daniel Smith via gimp-user-list wrote:

Apple invented the desktop



And they didn't patent it?
___
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] Include external images by reference?

2020-04-03 Thread Ofnuts

On 03/04/2020 19:38, Joel Polowin via gimp-user-list wrote:

Possibly a silly question: is it possible to include external images
by reference, for example as layers?  That is, to "link" to external
images, rather than to import them directly into a GIMP image, so that
changing the external image would also change the GIMP image.

For example, I'd like to be able to have a "cards.xcf" which
incorporates "diamond.png", "spade.png", etc., by reference, so I
could experiment with various .png files and see how they affect the
final GIMP image.  The .xcf file would, in essence, define the overall
structure, but the components would be flexible.

Can't be done AFAIK.
___
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] Text pixelated

2020-04-03 Thread Ofnuts

On 02/04/2020 17:43, scotts wrote:

I have read several posts on this topic, yet I cannot find a solution. I cannot
get my text to look decent... it is totally pixelated. I've tried dozens of
different fonts, sizes, hinting, anti-aliasing, etc.

I've attached a screenshot I'm working on. The exported image is worse;
RGB-alpha, 300 dpi, zero compression.

Any suggestions?

Attachments:
* 
https://www.gimpusers.com/system/attachments/1384/original/gimp-text-pixelated.jpg


At 15px (which is really 10px high for uppercase, and even less for
lowercase) all text looks pixellated. On your display it can look
cleaner because they can use subpixel-rendering(*), but this only works
if the text is generated on the fly for the current display, in a bitmap
image you could make the text look a bit better for some but a lot worse
for others.

If you intend the image to be printed a 15px font is much too small anyway.

If your image is mostly text, Gimp is the wrong tool.

(*) https://en.wikipedia.org/wiki/Subpixel_rendering

___
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 to the Gradient tool

2020-04-01 Thread Ofnuts

On 01/04/2020 06:00, Liam R E Quin wrote:

On Wed, 2020-04-01 at 04:22 +0200, Sascha Zosgornik via gimp-user-list
wrote:

Is there any way to do this quickly without going the long way of
creating a layer mask?

The upper layer must have an alpha channel (transparency).

Use rectangle select, feather the selection a lot (e.g. 500 pixels),
cut.


You can so the same with a gradient on the Quickmask. But then t gets
pretty close to using a layer mask


But the layer mask way is better because you can go back and change it.

ankh




___
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] 2.10.18 from otto-kesselgulasch

2020-03-30 Thread Ofnuts

On 30/03/2020 17:56, Julien Hardelin wrote:

Under Ubuntu, another possibility is using the Flatpak GIMP version,
which is automatically updated.

But it has some weird usage limitations (not sharing "Recent files" with
the rest of the system, for instance) and adding plugins is complicated.
___
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] loss of quality importing PDF files

2020-03-29 Thread Ofnuts

On 15/03/2020 18:36, ducky wrote:

When importing the pdf into GIMP have you tried changing the
'Resolution'
setting from the default 100 pixels/in to 300 or even larger - say
600?



No. I dont know how to do it


This is an option in the PDF open dialog

___
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] Open PDF at the right width and height

2020-03-29 Thread Ofnuts

On 13/03/2020 00:47, YouNoOat wrote:

Surprising that on this subject Image Magic is better than Gimp. Lot of
Developpers told me that Gimp have killed Image Magic ...


IM is designed for batch processing, Gimp is designed for single-shot
WYSIWYG image editing. They aren't even on the same battlefield.

___
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] Sizes of an image - display v printing

2020-03-13 Thread Ofnuts

On 12/03/2020 19:44, chuckie wrote:

I am little confused ...

I have an image that is 828 pixels wide.

If I open it in Paint, and HyperSnap or GIMP and view it at 100% and use a
ruler, the width of the image is about 23cm.

If I drag the image into a Microsoft Outlook email (embed it) or go to the GIMP
Print Size window, they both report it to be 3.5cm wide!

So, the GIMP editor shows it at a nice size of 23cm visually, but to print, or
embed it in Microsoft Outlook email it is only 3.5cm width.

Why is it then that the display of it in the editor is 23cm? What changes need
to be applied so that the image will embed into Microsoft Outlook email at 23cm?
Certainly, I was expectign it to embed at the scale I see it in the GIMP viewer
and not the anticipate scale for printing.



When you look at your picture at 100% in Gimp, Paint and other
applications, it is displayed "dot for dot", one pixel of the picture is
one pixel on your screen, and therefore it is displayed using your
screen definition  (so given the size you report we can assume that the
resolution of your display is 828/(23/2.54)=91 pixels/inch).

On the other hand your  picture has an embedded "print definition" which
is used for printing, in your case 828/(3.5/2.54)=600 pixels/inch. This
sets a theoretical size for the picture, size at which the picture is
printed (as long as everything in the print stack abides to it).

Print definition (in Pixels/inch), print size (in inches) and size (in
pixels) are related by the formula:

print size = print definition * pixels

Note that this means that you can only pick two of these values, the
third is determined by the first two.

In Gimp you can un-tick "View>Dot for dot", in which case the picture
will be shown at the print size, if your screen resolution is properly
set  (see Edit>Preferences>Interface>Display).

When you create the image, you should set the size in pixels big enough
so that you can print it at the required size with a print definition of
at least 200 pixels/inch (photo) preferably 300 or more if there is
text/logos or other computer-generated graphics. The advanced options in
"File>New..." let you enter a print size and print definition, and
compute the required size in pixels.

___
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] Don't visualize Transparencies

2020-03-07 Thread Ofnuts

On 07/03/2020 11:54, bungle77 wrote:

Hi, i am newby with graphic program.
I am make a  photomontage with three layer, the second layer has alpha
channel
and i don't want to dispaly the little square.
I tried to follow these instructions
https://docs.gimp.org/2.10/it/gimp-layer-alpha-remove.html
I tryied to go to windows->channel and hide the alpha chanel, but i
still see
those little square.
Pls help me

Attachments:
*
https://www.gimpusers.com/system/attachments/1373/original/Immagine.png


Maybe i should be more detailed, i don't want to remove alpha channel, i just
don't wwant to see the square were there is the transparency


The squares indicate transparency, like the ants show the selection.
They are not part of the image and won't appear in the image that you
export.

You can use Edit>Preferences>Interface>Display>Transparency to replace
that indication with something else (uniform black/gray/white, for
instance).

___
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] I have a question about the Colors tabe

2020-02-21 Thread Ofnuts

On 2/21/20 11:09 PM, cinque8 wrote:

Hello,

I entered a photo into Gimp in both jpeg and png format. I then clicked on the
Colors tab, and was going to click on Color to Alpha, but it was not highlighted
for use. What do I need to do in order to use the Color to Alpha tab?

Thank you


In Gimp 2.10 you have to add an alpha-channel first:
Layer>Transparency>Add alpha channel.

___
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] Help with python-fu

2020-02-17 Thread Ofnuts

On 2/17/20 9:41 PM, Alussam wrote:

Hello! I need some help with writing simple plugin. I tryed to use ready to use
plugin code from https://www.gimp.org/docs/python/index.html. But when I used
it, seems nothing happens. So I made a simple script, which prints message. But
nothing works seems. Please,whatch video for details:
https://youtu.be/0vpPaIEUGGE

Thanks for help.

Attachments:
* https://www.gimpusers.com/system/attachments/1371/original/script


Your script registers (shows up in menus, listed in pluginrc), so you
have it basically right.

When you run it you get his message (may require to use Gimp-console if
you are on Windows):

Traceback (most recent call last):
  File "/app/lib/gimp/2.0/python/gimpfu.py", line 857, in _run
    res = apply(func, params[1:])
TypeError: crop_all_layers() takes exactly 1 argument (2 given)

This is because your function takes one single argument ("image"), and
since your plugin is using old-style registration, an image and a layer
are always implied as the first two arguments, so you need at least two
arguments in your function (and you can ignore the second).

A better approach is to use new-style registration. In this registration
model, the menu entry is split in two: the menu label as before, but
without any path, and a named "menu" argument with the path:

Old style:

register(
    "crop-all-layers","","","Alex","Alex","2020",
    "/Filters/Artistic/_croplayers...",
    "RGB*, GRAY*",
    [],
    [],
    crop_all_layers,
)

New style:

register(
    "crop-all-layers","","","Alex","Alex","2020",
    "_croplayers...",
    "RGB*, GRAY*",
    [],
    [],
    crop_all_layers,
    menu="/Filters/Artistic/"
)

However with the new style registration, there are no implicit
arguments, so you have to declare your image argument:

register(
    "crop-all-layers","","","Alex","Alex","2020",
    "_croplayers...",
    "RGB*, GRAY*",
    [(PF_IMAGE, "image", "Input image", None)],
    [],
    crop_all_layers,
    menu="/Filters/Artistic/"
)

And then of course use a function that takes a single argument, the image.

Some hints to debug your scripts, especially if you are on Windows:

https://www.gimp-forum.net/Thread-Debugging-python-fu-scripts-in-Windows

PS: Couldn't see anything useful in your video, it is too fuzzy to see
the labels. Best make static screenshots, and copy/paste any error
messages as text.







___
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 the positions(x, y) (width, depth) of selected rectangle or selected ellipse

2020-02-17 Thread Ofnuts

If you register your script properly, the Image will be in the function
arguments when the script is called from the menu,
no need to read it out from the title bar.

Also, you can avoid a lot of back-slashing by either:

- Using "raw" notation for string literals:

    file_name = r'c:\Users\YourName\Documents\Temp\SampleXcfCsv.txt'

- Using triple quoting:

file_name='''c:\Users\YourName\Documents\Temp\SampleXcfCsv.txt'''

- Using forward slashes, that work just as well (the Windows API
understands both types, it's just the command-prompt parser
that insists on backslashes):

file_name="c:/Users/YourName/Documents/Temp/SampleXcfCsv.txt"


On 2/17/20 2:31 AM, ShiroYuki Mot via gimp-user-list wrote:

Please learn the basic scripting of GIMP Python.
See as follows.
https://www.gimp.org/docs/python/index.html

If opened image by GIMP is one only at first and it has one layer and a
selection is existing.
Example on Windows OS - Python Console.

image = gimp._id2image(1)
# 1 is shown at GIMP Title-Bar as '[Name] (Status)- 1.0 (RGB ...'
image
import csv
file_name = "c:\\Users\\YourName\\Documents\\Temp\\SampleXcfCsv.txt"
file_name
non_empty, x1, y1, x2, y2 = pdb.gimp_selection_bounds(image)
x1
y1
x2
y2
with open(file_name, 'w') as f:
   writer = csv.writer(f)
   writer.writerow([x1, y1, x2, y2])



___
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] HELP! Exporting To PDF

2020-02-13 Thread Ofnuts

On 2/13/20 8:43 PM, joelandsonja wrote:

I am having a major issue whenever I export my image file to PDF.

I have to export the image to the exact same size for the PDF file, but whenever
I export the image it changes the size of the image in the PDF file (it makes it
larger).

Can someone please help me with this problem?


There is a known bug in 2.10.14 that makes Gimp  reset the print
definition to 72PPI on *import* (which makes the image larger in print).
YOu can reset the print definition using Image>Print size and these
values should be correctly exported. If that bothers you too much you
can get back to 2.10.12 until 2.10.16 is published.

___
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 the positions(x, y) (width, depth) of selected rectangle or selected ellipse

2020-02-13 Thread Ofnuts

Uh? You can write to a file from the script, using the regular I/O
functions.

For more structured data you can also use the built-in CSV module to
write CSV files, and it is also possible to add excel support to the
python runtime.

On 2/14/20 8:19 AM, ShiroYuki Mot via gimp-user-list wrote:

On Python console, this is what you want.
non_empty, x1, y1, x2, y2 = pdb.gimp_selection_bounds(image)
See, 'gimp-selection-bounds' at Procedure Browser.
But, handning values to external App is not so easy.
If you add external library 'pyperclip' you can write to clipboard.
But it is one value only... Yes, maybe, not suit for you.
One solution is that create text layer about that.
Then you can copy manually.



___
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 the positions(x, y) (width, depth) of selected rectangle or selected ellipse

2020-02-13 Thread Ofnuts

See:

non_empty, x1, y1, x2, y2 = pdb.gimp_selection_bounds(image)


On 2/14/20 7:14 AM, tamasakai wrote:

How to get the positions(x,y) (width, depth) of selected rectangle or selected
ellipse
I read such numbers  on GIMP and write them in Excel files but sometime human
error occurs.
I want to automate the process.
I read instructions of Python-Fu but there so many functions then I could not
find out how to do it.
Please help me.



___
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] cant move selection under layer

2020-02-12 Thread Ofnuts

On 2/11/20 9:22 PM, tjohansen wrote:

I can see its a bug.

When triyng with a new image with a layer on top, it works fine.

Then trying with an existing image with 20 layers it fails.
Maybe its because it was made in 2.8?


The "problem" is how the Move tool works. By default is picks the
topmost layer which isn't completely transparent where you click. This
cannot be used when one of your top layers spans the whole canvas and is
not completely transparent anywhere, but is otherwise very convenient in
most uses of the Move tool.

The other behavior is to move the active layer. You can then select the
layer to move in the layers list. You can temporarily switch to that
mode by depressing the shift key when you click, or set it permanently
in the Move tool 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


Re: [Gimp-user] How to…..

2020-02-10 Thread Ofnuts

On 2/8/20 12:06 AM, David Johnson via gimp-user-list wrote:

I am giving Gimp a try for the first time and would like to know if the 
following is intentional.
There appears to be no regular pointer for the mouse…. As in “ the black 
arrowhead” normally the selection tool.
As a result, I am unable to just select my object on the canvas without having 
to engage in an action from the overwhelming list of selection
tools at the top left.

Is this intentional or am I missing something?

Lamb Design.

This is standard behavior. There is no "object selector" tool, object
selection is a side effect of the Move tool, that will pick the topmost
non-transparent layer where you click. But since there are many cases
where one of the topmost layers covers the whole canvas and is at least
partially opaque, this method is not always usable. You can always
select objects by clicking on them in the Layers 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] Export archive

2020-02-08 Thread Ofnuts

IIRC on Windows 10 apps can be sandboxed and prevented to write outside
your home directory. There are

https://answers.microsoft.com/en-us/windows/forum/windows_10-files/unable-to-write-to-external-hard-drive-windows-10/8fa79627-984a-4b5f-8d7d-08bacd4f3516

On 2/7/20 1:17 PM, Juan Guillermo González-Meneses García-Valdecasas wrote:

I have updated mi Windows 7 to Windows 10. Before, I could export my
picture, after working in it with GIMP, from JPG to JPG, with the same
name, of course deleting the previous one when accepting to do that.

Now, since the first day using my new Windows 10, I get this message:

"Ha fallado el guardado de «E:\Allthings\2019\IMG_5912.JPG»

No se pudo abrir «E:\Allthings\2019\IMG_5912.JPG» para escritura:
Permission denied"

Any suggestion?

Thanks

JG




___
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] apply gradient to text, include & preserve alphs

2020-02-02 Thread Ofnuts

On 2/2/20 9:04 PM, ottenm wrote:

I've tried about 15 solutions that describe applying a gradient to text, and
can't figure out how to include the tiny alpha'ed outlines around the letters.
The results look great, but not impeccable.

I start with black text and I've tried selecting it with layer -> transparency
-> alpha-to-selection AND with select by color, but when you zoom, you can see
some of the pixel borders are left out of the selection.  I can get those
borders included by increasing the threshold on select-by-color, but when I
apply the gradient it doesn't preserve the alpha values and ends using a solid
color (worse/blockey result).

Any tips are welcome!


This is exactly what the alpha-lock is for. Set the alpha-lock on the
layer, and apply the gradient on the whole layer (without any
selection). The alpha-lock will take care of the pixels on the edges.

Alpha-lock is documented here:
https://docs.gimp.org/en/gimp-dialogs-structure.html#gimp-layer-dialog-lock-alpha-button

___
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] approches used for language detection on images ...

2020-01-29 Thread Ofnuts

On 1/29/20 1:52 PM, JWein wrote:

You need (1) feature extraction, finding the writing, (2) OCR of some
sort, to turn pictures of letters into letters, and then (3) the
linguistic Analysis.

  Hey Liam:

Thank you, and yes, I could guess the way to go would be through the steps you
outline, but I am pretty sure some other gimp developers have trodden those
paths before and may have some tips to share.



Gimp is not really about OCR.

You would also have to define the range of languages you are interested
in. For instance you can't OCR Cyrillic without knowing it's cyrillic,
because many glyphs are undistinguishable from similar latin glyphs but
have a different Unicode point, and can be unrelated  characters.


___
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] Project Question

2020-01-26 Thread Ofnuts

On 1/27/20 12:36 AM, Doug & Kathy Davies via gimp-user-list wrote:

Good Day,

New here and have a question.  I want to create a photo backdrop for my
model railway.  It is an urban scene and I have taken a series of photos
laterally across the potential area.  I now need to 'stitch' them together
to form a continuous photo I can get printed and use as the backdrop.  My
question...can I use GIMP to get this done?

Looking forward to hearing from  some replies.


The best tool for this is Hugin: http://hugin.sourceforge.net/

___
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] PCB Editing

2020-01-17 Thread Ofnuts

On 1/17/20 9:32 AM, Sorceress99 wrote:

I am trying to separate the 2 sides of a printed circuit board photo and can't
remember how to do it.  The circuit diagram is in blue and the parts layout is
in black. Wiring placement is in red is irrevelant and can be deleted.  The PCB
pattern, in blue, is printed on glossy photo paper on a laser printer, in black.
The print is set on 'high quality' so needs to be sharp and clear. The image is
then positioned, face down on a blank copper clad PCB then transfered to the
board by various means such as heat lamination or chemically. Once completed,
the parts layout is printed on the laser as before, positioned in alignment with
the circuit side, then transfer to the opposite side of the board as before. Any
help with separating the 2 images would be appreciated.

Attachments:
* https://www.gimpusers.com/system/attachments/1338/original/HP-23_PCBFull.jpg



In the monochrome channel mixer

* pushing red to 100% makes the red channel disappear

* You can substract a bit of green from blue or vice-versa to make the
printted circuit grey


Duplicate the resulting layer

Color>Invert on the top layer

Put the top layer in "difference" mode: the grey bits are about the same
in both image, so they becomes 0 (black) while the black and white parts
are changed to their opposite and the difference ins close to 255 (white).

Still some cleaning left to do, and painting where the red tracks have
left white lines in the circuits.

Personally for such a small circuit, I would redraw it, you need a
couple of brushes for the solder points, a brush to draw straight lines,
and wider areas can be filled with the polygon selection.







___
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] Display id's for gimp-display-delete in Script-Fu

2020-01-15 Thread Ofnuts

On 1/15/20 2:56 AM, Taliesin thePenguinSlayer via gimp-user-list wrote:

The Procedure Browser lists one parameter for gimp-display-delete, the ID of 
the display you wish to delete, but the vague notes in the Browser offer no 
help beyond suggesting that display ID's exist. I haven't been able to find any 
information on how display iD's are assigned, how they are formatted, or how to 
determine what a display's ID is if you don't already know it. Can anyone shed 
some light on this issue?


The general philosophy of Gimp scripts/plugins is that they cannot
interfere with the UI. A consequence is that you cannot delete a display
that you didn't create (when you create one, you get its ID, so you can
delete it later).

As far as I can tell, display IDs are generated in sequence like image
IDs. So for simple cases, displayID==imageID but this falls apart when
you have more than one display for an image (View>New view) because this
offsets the display ID from the image ID for some of the displays (and
you cannot really tell which).


___
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] High precision color picker

2020-01-08 Thread Ofnuts

In Gimp the color selector can be use with a 0-255 integer range or as
percent (3 digits: 12.3%) that give a bit more precision.

In scripts there is not limit to the precision of the color you enter as
floating point (but widgets that will display the values will round it).
For instance in Python:

import gimpcolor
pdb.gimp_context_set_foreground(gimpcolor.RGB(.51256,.51257,.51258))

Of course this is only useful in high-precision image, and there is no
guarantee that the underlying computations use all the precision, but
also no good reason to not do so.


On 1/9/20 1:11 AM, Elliott Balsley wrote:

Hello.  I am trying to create technical test patterns, so I would like to
specify colors by entering 16-bit RGB values.  Is this possible in Gimp?  I
just installed it for the first time and it looks like the color picker is
limited to 8-bit values 0-255.  Photoshop is also limited in this way,
which is why I am trying other apps.
___
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] I have no idea what is happening

2019-12-29 Thread Ofnuts

On 12/3/19 11:21 AM, Toriningen wrote:

So I am lost here, I have no idea what is happening when I select stuff and do
cuts or pastes it seems to feather the edges instead of doing a hard cut.

Also when I select an area to paint in, it lets me paint OVER the selection,
again in a feather manner. I cannot for the life of me find the option to stop
this.

Attached to this post is an image of what is happening

Attachments:
* 
https://www.gimpusers.com/system/attachments/1308/original/Why_is_this_happening_with_gimp.png


As said by others, likely due to a "feathered" selection.

Note that the "marching ants" are not the absolute limit of the
selection. They indicate the 50% selection point, so if you have a
feathering, the feathering extends on both sides (but in your case it is
much mess visible on the blue side, especially of you did two strokes or
more).


___
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 write plug-in or python to automate a filter?

2019-12-20 Thread Ofnuts

On 12/20/19 4:27 AM, 欢_John via gimp-user-list wrote:

Who could give an example please



For filters invoked from the GUI, plenty of examples here:
http://sourceforge.net/projects/gimp-tools/files/scripts/

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



___
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] Blending two different color texts

2019-12-12 Thread Ofnuts

On 12/12/19 6:05 PM, --Tuomas wrote:

Hey,

What is the easiest way to do this kind of color blending of two text layers in
gimp? I'm trying to do some Swiss style posters.

https://youtu.be/9PdFXCJnKqQ?t=179

Thanks. :)



Create each letter on its own layer, and then move the layers and reduce
their opacity.

___
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] Disable check for new plugins at startup

2019-12-12 Thread Ofnuts

On 12/12/19 2:08 AM, Øyvind Kolås wrote:

On Wed, Dec 11, 2019 at 3:00 PM Bantha  wrote:

we want to run GIMP in an isolated environment, without access to external
systems. So, when GIMP checks for newer versions of the installed modules and
plugins, it takes several minutes to wait for the timeout-

Can I Speed up the startup in any way? GIMP won't be able to check anything
outside of our company LAN.

GIMP is not going online looking for new versions of plug-ins, it is
scanning the file system(s) for previously unknown plug-ins, in user
and system paths. One reason this might be slow is if GIMP is
installed on a slow network file system.
___


AFAIK is doesn't even scan whole filesystems, it just checks the
directories listed in Edit>Preferences>Folders>Plugins (two by default),
and perhaps their child directories.

However, to answer the OPs problem, I once had an executable
unexpectedly copied to one of these directories ("wget", for that
matter) that Gimp would then try to run on each startup and which took
time to exit, delaying the startup by that much.

___
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] numbers

2019-12-11 Thread Ofnuts

On 12/11/19 5:53 PM, Epick wrote:

Hello guys, I have made tickets for our party, but I'm having troubles with one
thing. I need to print 360 of those tickets and each should have its number
starting from 1 to 360. How can I efficiently number those tickets?
Epick

Attachments:
* https://www.gimpusers.com/system/attachments/1313/original/ticBlank.png


You can use the ImageMagick toolbox to overlay any text over an image in
a shell script. Then you just have to write a script hat loops over 360
numbers. See https://www.imagemagick.org/Usage/annotating/

___
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] Restrict/confine pointer movement in a straight direction

2019-11-13 Thread Ofnuts

On 11/13/19 3:48 AM, 3d1l wrote:

Hello,

I'm using the warp tool with:
move pixels
hardness 0
strenght 100
step 10
loop

And I want to move the pointer across the image one side to the other
but in a
straight line in the X axis. Is there a way to restrict/confine the
pointer
movement so it keeps moving in a straight line, even if the mouse
moves a little
bit up and down in the Y axis?

Also,

Imstead of one pointer that will allow me to ise the warp tool in ome
line. Is
it possible to have several pointers so multiple "deformations " are
created at
the same time?

Ok I found out that mouse movement is a function of the OS, so Gimp just react
to the mouse movement provided by the OS from where it is running. In my case
Windows. There is no direct way for Gimp to restrict the mouse movement so
another alternative have to be use. Then I found Mouse Keys wish is a function
of Windows from the Easy of Access tools. With that you use your arrow keys to
move the mouse pointer. Since the pointer will move only in the direction of the
arrow key that is being presses the pointer will move in a straight direction
until another arrow key is pressed. To avoid any problems you can detach or turn
off your mouse during movement.


You can use guides: https://docs.gimp.org/en/gimp-concepts-image-guides.html

___
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] Cannot use function file-pdf-save-multi

2019-10-28 Thread Ofnuts

On 10/28/19 10:59 AM, renzofilini wrote:

pdf_filename = "/tmp/multipage_output.pdf"
pdb.file_pdf_save_multi(len(images), images_ids, False, True, False,
pdf_filename, pdf_filename)


Works for me (Ubuntu 16.04).

In more recent release of Ubuntu, Gimp installed as a snap package is
restricted by default to your Home tree. You have to tweak things to
make it write elsewhere.

Otherwise, Gimp and OS versions?


___
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] Need SVG Path Export

2019-10-28 Thread Ofnuts

On 10/28/19 5:41 AM, gimppimp wrote:

Hello,

I have created an svg from a png using Adobe Illustrator and the svg shows up in
firefox, I then load the SVG up in Gimp and then:

Select >> All
Select >> To Path

Then I right click Path Selection and export Path and when I place the path into
javascript the image shows up as a black square and not the original png image
as created in as svg, how do I get the svg path to show up as the full image not
just a black square?


"Select>All" selects the whole image (a 99x107px image?)

"Select>To path" then generates a rectangle path that encompasses the
whole image

___
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 optimize this workflow

2019-10-18 Thread Ofnuts

On 10/17/19 6:29 PM, Helmut Jarausch via gimp-user-list wrote:

I copy paste my image into this new image, move the floating selection
exactly to the left (which is quite tedious to do exactly)


Use "File>Open as layers" to load the image over the grey background
image. This will likely be faster (and the image will be aligned to the
left).

Or when you have loaded your square image, use "Image>Canvas size", and
increase the width (you can just add "*7/5" at the end of the width,
Gimp will compute the value). Then you add a background layer.

"View>Snap to canvas edges" is also useful to align layers with the
image sides.



___
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 Brush - No Hardedge - Solution

2019-09-27 Thread Ofnuts

If you want a non-feathered edge use the Pencil and not the Paintbrush.

You solution is only valid f you paint near the edges of the selection,
it won't prevent the feathering for
brush strokes in the middle of the selection.

You can also remove the feathering on an existing selection using
Select>Sharpen.

You can ask Gimp to save your preferred settings: Edit>Preferences>Tool
ptions>Save tool options now


On 9/27/19 5:40 AM, GimpCrazy wrote:

Hi folks

Just thought I would share the solution to a long term problem I have been
having with Gimp brushes since 2.10.

The problem: I select an object and attempt to paint it but the brush wont do a
non feathered edge.

This is a problem with the settings on  the selection tool not the brush.

To test: open another blank template and try out your brush on that.  If it is
anti-aliasing (tiny little blocks on the end) or very choppy looking blocks then
the problem is the selection tool settings.

Fix: Re-select whatever it is you want to re-paint.  Go to the tool settings and
simply unselect the "anti-aliasing" selection.  Instant hard edge.  Duh. Easy
once you know how.

I think it is possible that  later versions of Gimp have the box checked as a
default.



___
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] Gif issue

2019-09-26 Thread Ofnuts

On 9/24/19 12:09 PM, Sam Brazza via gimp-user-list wrote:

Hello Sir/Madam

I am contact you about a layer issue. Indeed when I export an animation in
gif type the color of the layers change and have some kind of yellow/warm
tone.
This problem appears when I was trying to put some filters on the layer but
I do not remember which one I used or how I processed.
I attach you an animation to illustrate what I mean.
Thank you.

Ps: I already reset all the values to his default



There are several of restrictions in the GIF format: 256 colors max
(image is color-indexed), and binary opacity.

When you export a regular image (RGB type) to GIF, Gimp tries to find an
optimum palette. If you don't like it, you can convert the image to
color-indexed (Image>Mode>Color indexed). There are several options when
you do it that way, such as the color palette used.

___
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] about the size of circle path text

2019-09-09 Thread Ofnuts

On 9/6/19 4:45 AM,  via gimp-user-list wrote:

How to change the color and size of path text??
How   align text in a circular path, like a signet.
when  I  enter text and align it to the path??Although it can align to a 
circular path??Then  the troubles that troubled me ,How change the path text 
size and color ,and It is as convenient as editing text.
such as  photoshop,If want to make a circular path text,Only a circular path 
needs to be drawn.Then the cursor follows the path,The next thing  need is??do 
it like edit  text,

thaks




Not in Gimp. You can bend the text to follow a path, but to change the
text you have to redo it all (bending, stroking/painting).

AFAIK if you are just doing text, things may be a lot easier/cleaner
with Inkscape.


___
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] LOCK alpha

2019-08-30 Thread Ofnuts

On 8/30/19 9:03 PM, ̵tImposterMO̵ t̵ wrote:

Is there a way to view the object/property or debug names of GUI
objects in GIMP for use with scripting or customization(s)? I would
like to know how to edit elements in the colormap dialog
procedure-ally to make scripts like Art To Paint by Number; To Stain'd
Glass; To lighting effect for shader This is more difficult because
its not select by number but by pixel color glob contiguous group.


See the gimp_image_{get|set}_colormap() functions in the API (Scheme or
Python).

Scripts and plugins cannot interact with the Gimp UI directly.





___
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] LOCK alpha

2019-08-30 Thread Ofnuts

On 8/30/19 2:28 AM, ̵tImposterMO̵ t̵ wrote:

- In a color-indexed image, this is just editing the colormap. You are
restricted to 256 colors, but I don't think you would want to handle 24M
color that way.

Yes if I use a color pallete do you know any references to Python or
Perl? for plugins to manipulate color selections like replace color
with white and text for color pallete index number. IE a paint by
number script


No, but is is needed?

You can edit the color map (Windows>Dockable dialogs>Color map), and in
the colormap dialog, you can select a color by number and change it to
change the corresponding pixels. Looks a lot like your "paint by number"...

___
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] LOCK alpha

2019-08-29 Thread Ofnuts

On 8/30/19 2:06 AM, ̵tImposterMO̵ t̵ wrote:

Is there a hotkey for this layer lock?


No but you can define one.


I only see a visibility icon checkbox and sometimes I have a problem
selecting overlapping layers. Is there a method to "tab" thru layers
at selected point?


PgUp/PgDn?



Also any one know how to batch all colors using select by color. Ie
FOR command with all HEX color codes to create a PAINT BY NUMBER
plugin or perhaps lighting effect shader. Later can I improve with
threshold tolerance to group colors or use a pallete and cycle thru
colors for selected areas. This would be great in video games as
alternative to pixel sprite mapping. IE every bitmap pixel color is a
Sprite_gamestate withX overlapping images represented as unique
colors.


In a color-indexed image, this is just editing the colormap. You are
restricted to 256 colors, but I don't think you would want to handle 24M
color that way.


___
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] LOCK alpha

2019-08-29 Thread Ofnuts

On 8/29/19 9:01 PM, Lordgil wrote:

I'am new
I am on windows 10Gimp 2.10

I often very often use the eraser tool, and each time thpixel  and alpha channel
are locked
I don,t need this to do
I   tried   Edit / Preference   toolbox reset to  default   save and this
don't work
on a next  restart   I did it  several  times  and nothing
Is there another trick  to avoid this  lock  alltime
Thank You


Locks (pixel, move and alpha) are a property of the image/layer. If you
save an image with these locks set, next time you load the image the
same layers will be locked. To reset them permanently, remove them and
save the image.

___
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] Brightness/Contrast to Selected Area Only

2019-08-23 Thread Ofnuts

On 8/21/19 3:03 AM, Starr Co via gimp-user-list wrote:

Dear Gimp Users List:

I would like to apply Brightness/Contrast adjustments to only a selected
area. It seems the adjustments are global despite having something
selected. Is there a way to do this?



Brightness/Contrast applies only to the selected pixels. Your problem
could be elsewhere. How do you produce the selection? How so you check
that the selection is still there?

Remember that on 2.10, you often have to "commit" the selection (strike
[enter] or double-click).

___
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


  1   2   3   4   5   6   >