Re: [Gimp-user] Question about scripting

2022-07-30 Thread Kevin Cozens

On 2022-07-28 23:00, Jean-Pierre HOARAU wrote:

 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)"


On 2022-07-30 11:14, Ofnuts via gimp-user-list wrote:
> A problem you have is the multiple layers looking at your double quotes:

Ofnuts is correct that the problem is with the nested double quotes. The 
inner ones that are before and after the file name need to be escaped.


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

--
Cheers!

Kevin.

http://www.ve3syb.ca/   | "Nerds make the shiny things that
https://www.patreon.com/KevinCozens | distract the mouth-breathers, and
| that's why we're powerful"
Owner of Elecraft K2 #2172  |
#include  | --Chris Hardwick
___
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] Question about scripting

2022-07-30 Thread Adrian Midgley via gimp-user-list
I'd also find an example interesting.

Adrian Midgley (Retired(Mostly))

On Sat, 30 Jul 2022, 05:21 Jean-Pierre HOARAU, 
wrote:

> Thank you very much for the link. It is very useful. But my problem is not
> bash but the parameters to give in command line to run gimp procedures. I
> don't understand very well what I must give for args in a gimp procedure.
> This is why I asked for an example with a file-jpeg-load or file-jpeg-save
> procedure. I get some error messages that I don't understand. So my
> question remains, what are parameters to give to these procedures? Could
> someone write me this command line? So I will have an example that I can't
> find on the net. Thank you.
>
> Le sam. 30 juil. 2022 à 02:25, Shlomi Fish  a
> écrit :
>
> > hi ,
> >
> > On Fri, 29 Jul 2022 05:00:39 +0200
> > 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)"
> > >
> >
> > Please read about bash/zsh/ksh/etc. quoting/escaping:
> >
> > https://mywiki.wooledge.org/BashFAQ
> >
> > [also note https://www.shlomifish.org/open-source/anti/csh/ ]
> >
> > > 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
> >
> >
> >
> > --
> >
> > Shlomi Fish   https://www.shlomifish.org/
> > https://www.shlomifish.org/open-source/resources/tech-tips/
> >
> > If a million Shakespeares had to write together, they would write like a
> > monkey.
> > — based on Stephen Wright, via Nadav Har’El.
> >
> > Please reply to list if it's a mailing list post -
> https://shlom.in/reply
> > .
> >
> ___
> 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-29 Thread Jean-Pierre HOARAU
Thank you very much for the link. It is very useful. But my problem is not
bash but the parameters to give in command line to run gimp procedures. I
don't understand very well what I must give for args in a gimp procedure.
This is why I asked for an example with a file-jpeg-load or file-jpeg-save
procedure. I get some error messages that I don't understand. So my
question remains, what are parameters to give to these procedures? Could
someone write me this command line? So I will have an example that I can't
find on the net. Thank you.

Le sam. 30 juil. 2022 à 02:25, Shlomi Fish  a
écrit :

> hi ,
>
> On Fri, 29 Jul 2022 05:00:39 +0200
> 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)"
> >
>
> Please read about bash/zsh/ksh/etc. quoting/escaping:
>
> https://mywiki.wooledge.org/BashFAQ
>
> [also note https://www.shlomifish.org/open-source/anti/csh/ ]
>
> > 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
>
>
>
> --
>
> Shlomi Fish   https://www.shlomifish.org/
> https://www.shlomifish.org/open-source/resources/tech-tips/
>
> If a million Shakespeares had to write together, they would write like a
> monkey.
> — based on Stephen Wright, via Nadav Har’El.
>
> Please reply to list if it's a mailing list post - https://shlom.in/reply
> .
>
___
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-29 Thread Shlomi Fish
hi ,

On Fri, 29 Jul 2022 05:00:39 +0200
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)"
> 

Please read about bash/zsh/ksh/etc. quoting/escaping:

https://mywiki.wooledge.org/BashFAQ

[also note https://www.shlomifish.org/open-source/anti/csh/ ] 

> 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



-- 

Shlomi Fish   https://www.shlomifish.org/
https://www.shlomifish.org/open-source/resources/tech-tips/

If a million Shakespeares had to write together, they would write like a monkey.
— based on Stephen Wright, via Nadav Har’El.

Please reply to list if it's a mailing list post - https://shlom.in/reply .
___
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] Question about scripting

2022-07-28 Thread Jean-Pierre HOARAU
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] Question About The Program

2022-07-08 Thread Andre Batts via gimp-user-list
Are these steps able to be replicated in the program?

  *   Create a new layer group called "CMYK" in the file and place all your 
artwork objects for print into this group.

  *   Then, hide all the Printer’s Studio information layers so that only your 
artwork is visible in the file.

  *   Convert all the text to outlines.

  *   Save your files in CS2 version or below in the following naming format: 
1.pdf, 2.pdf, 3.pdf and so on.


___
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 instaling

2022-05-29 Thread Joseph A Nagy Jr via gimp-user-list
As far as I know GIMP won't run on mobile devices

On Sun, May 29, 2022, 10:18 Varmavinden via gimp-user-list <
gimp-user-list@gnome.org> wrote:

> Hello, I have a ipad pro second gen and I have downloaded the Gimp
> installation file, but how do I get the downloaded file to open,so the
> program/Gimp begins to work?
>
> I find the file, but can not get it opened
>
> I am very thankful for any help.
>
> Wilhelm
> ___
> 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


[Gimp-user] Question about instaling

2022-05-29 Thread Varmavinden via gimp-user-list
Hello, I have a ipad pro second gen and I have downloaded the Gimp
installation file, but how do I get the downloaded file to open,so the
program/Gimp begins to work?

I find the file, but can not get it opened

I am very thankful for any help.

Wilhelm
___
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 if VPAT accessibility-related documentation is available for GIMP please?

2021-11-24 Thread Shlomi Fish
Hi Alexandre!

On Wed, 24 Nov 2021 18:13:35 +0300
Alexandre Prokoudine via gimp-user-list  wrote:

> Hi Jay,
> 
> Please see here: https://www.gimp.org/about/ITI-VPAT.pdf
> 
> Alex

Perhaps we should add this info to the FAQ:
https://www.gimp.org/docs/userfaq.html . I recall being asked about it
previously.

> 
> On Wed, Nov 24, 2021 at 6:08 PM Little, Jay via gimp-user-list
>  wrote:
> >
> > Hello and greetings,
> >
> > I was wondering if there is any VPAT accessibility-related documentation
> > available for the GIMP software product please, and if so, can you please
> > e-mail me a PDF copy of the documentation, or alternatively, provide a link
> > to said documentation?  Our organization is interested in downloading GIMP,
> > but as part of our internal documentation and requirements process, we are
> > required to create a VPAT or a GPAT document, for disability accessibility
> > purposes, before we are able to download and install any licenses for new
> > software.
> >
> > Please advise, thanks,
> >
> > Jay Little
> > jay.lit...@bep.gov
> >
> > ___
> > 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



-- 

Shlomi Fish   https://www.shlomifish.org/
Chuck Norris/etc. Facts - https://www.shlomifish.org/humour/bits/facts/

The first phrase that needs to be taught when teaching a new language is how to
say “Do you speak English?”. The first thing that needs to be taught when
teaching a new computer tool is how to exit it.
— https://www.shlomifish.org/humour.html

Please reply to list if it's a mailing list post - https://shlom.in/reply .
___
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 if VPAT accessibility-related documentation is available for GIMP please?

2021-11-24 Thread Alexandre Prokoudine via gimp-user-list
Hi Jay,

Please see here: https://www.gimp.org/about/ITI-VPAT.pdf

Alex

On Wed, Nov 24, 2021 at 6:08 PM Little, Jay via gimp-user-list
 wrote:
>
> Hello and greetings,
>
> I was wondering if there is any VPAT accessibility-related documentation 
> available for the GIMP software product please, and if so, can you please 
> e-mail me a PDF copy of the documentation, or alternatively, provide a link 
> to said documentation?  Our organization is interested in downloading GIMP, 
> but as part of our internal documentation and requirements process, we are 
> required to create a VPAT or a GPAT document, for disability accessibility 
> purposes, before we are able to download and install any licenses for new 
> software.
>
> Please advise, thanks,
>
> Jay Little
> jay.lit...@bep.gov
>
> ___
> 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


[Gimp-user] Question about if VPAT accessibility-related documentation is available for GIMP please?

2021-11-24 Thread Little, Jay via gimp-user-list
Hello and greetings,

I was wondering if there is any VPAT accessibility-related documentation 
available for the GIMP software product please, and if so, can you please 
e-mail me a PDF copy of the documentation, or alternatively, provide a link to 
said documentation?  Our organization is interested in downloading GIMP, but as 
part of our internal documentation and requirements process, we are required to 
create a VPAT or a GPAT document, for disability accessibility purposes, before 
we are able to download and install any licenses for new software.

Please advise, thanks,

Jay Little
jay.lit...@bep.gov

___
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] Question on Outlines

2020-05-28 Thread Ryan Williamson via gimp-user-list
Hey guys, was wondering if anyone can help me with an outline question.
I've used gimp for over a year or so now, more so the last few months.
Everything works great, but I was wondering, is there a way to change the
outline you create of your images so that way it matches more image?
Currently I've noticed that whether the logo is more rounded off, or having
sharp edges, it always makes the outline rounded off regardless. Is there a
way to change that so it's not always rounded off?
___
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 on unlocking features

2020-04-10 Thread Alexandre Prokoudine via gimp-user-list
On Fri, Apr 10, 2020 at 7:25 AM Elbert Carmona via gimp-user-list wrote:
>
> hello, so I downloaded a template online and put it in gimp, but I cannot
> erase or paint in it because those features are locked. It says something
> along the lines of, cannot paint in group layers, on the bottom, something
> like that. Wondering if there is a solution for this?

Yes. Don't try painting on a layer group :) Select a regular layer.

https://docs.gimp.org/en/gimp-layer-groups.html

Alex
___
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] question on unlocking features

2020-04-09 Thread Elbert Carmona via gimp-user-list
hello, so I downloaded a template online and put it in gimp, but I cannot
erase or paint in it because those features are locked. It says something
along the lines of, cannot paint in group layers, on the bottom, something
like that. Wondering if there is a solution for this?
___
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 Sascha Zosgornik via gimp-user-list
It would of course be nice, to have an "Alpha to Transparent" option
directly inside the gradient tool. But quick-mask should seems to be
the best solution without this.
___
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] Question to the Gradient tool

2020-03-31 Thread Liam R E Quin
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.

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

ankh


-- 
Liam Quin - web slave for https://www.fromoldbooks.org/

Full-time slave in voluntary servitude.

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

2020-03-31 Thread Sascha Zosgornik via gimp-user-list
Hello Gimp fellows,
a few days ago I was working on an simple image of just two layers. I
wanted an overblend effect so one layer fades into the other.
I thought the gradient tool would be the perfect solution for this
task but all I did found was the "FG to Transparent" gradient.
Is there any way to do this quickly without going the long way of
creating a layer mask?
Best wishes,Sascha Zosgornik
___
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] question about resolution

2019-09-22 Thread Sharon Hudson via gimp-user-list
Hello.  I created files in Microsoft Word, then loaded them up to GIMP to
get a 300  print size resolution.  It seems to hold for most, but when I
did spot checking some of the files I had changed to 300, changed back to
119 when I put them back in GIMP.  Why is this?

If I save a file at 300, then upload it into a drawing mechanism, can the
file change back to 300?

Thanks,

Sharon
___
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 re. color handling

2019-08-29 Thread dep
said ̵tImposterMO̵ t̵:

| Any of these search results help you? I cant understand what you want.
| If you find a helpful link let me know it thank you.
| https://www.google.com/search?client=ubuntu=fs=gimp+color+prof
|ile=utf-8=utf-8

these don't utterly answer my question, but they are on the right topic, 
which isn't how to calibrate a monitor:

https://www.gimpusers.com/forums/gimp-user/21188-gimp-2-10-embedded-color-profiles

https://pixovert.com/index.php/gimp/62-gimp-2-10/227-gimp-color-profiles-keep-or-convert-to-gimp-srgb.html

i'm specifically trying to determine the parameters of the gimp color 
profile and how when one brings in a picture that already has the embedded 
gimp color profile it wan't to change to the gimp color profile, which 
alters the picture even though it shouldn't.
-- 
dep

Some pictures:
http://www.ipernity.com/doc/depscribe/album

___
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] question re. color handling

2019-08-29 Thread dep
greetings, everyone . . .

since the release of gimp 2.10, i've dealt with an issue whenever i open a 
file -- it asks me whether i wish to preserve the existing srgb or to 
convert to gimp's -- even when the image was previously saved in gimp's 
profile. if in fact i allow it to convert, the result is about a whole 
stop darker when it is saved, and darker still in thumbnails (gthumb, 
geeqie). this is a little bit alarming, and i'm not sure what is best to 
do. surely it serves some function or else it wouldn't be part of the 
program, but making pictures unusably dark probably isn't what they had in 
mind.

so would someone be so good as to talk me through the rationale here such 
that i might intelligently deal with it?

thanks!
-- 
dep

Some pictures:
http://www.ipernity.com/doc/depscribe/album

___
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 displayed values on Histogram window

2019-05-19 Thread 北嶋 凌
Thank you for answering.
I had 24bit image, so converted into 8bit and read.
But values are still from 0-1.

Is that a correct way I did?

Best regards,

Ryo Kitashima

>Hello,
>
>if you have an 8bit image it's from 0-255, if you have 16, or 32bit images
>you get the values from 0-1.
>
>Regards,
>Tobias
>
>Am Mo., 13. Mai 2019 um 11:45 Uhr schrieb 北嶋 凌 :
>
>> Hello.
>> I use GIMP ver.2.10.10.0 on Windows 7.
>>
>> I have a question about Histogram window.
>> (Windows > Dockable Dialogs > Histogram)
>>
>> There are "Mean","Std dev", "Median" values displayed,
>> but the values are between 0 and 1.
>> As far as I can remember, they used to be between 0 and 255.
>>
>> e.g.
>> expect value:Red=0, Green=160,   Blue=233
>> displayed value: Red=0, Green=0.627, Blue=0.914
>>
>> Is this because specification has changed,
>> or because I have changed some settings?
>>
>> If this can be fixed by the settings, would you tell me how to set?
>>
>> Best regards,
>>
>> Ryo Kitashima
>> ___
>> 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
>>
>
>
>html-part included links---
>mailto:kitash...@webtec.co.jp
>mailto:gimp-user-list@gnome.org

___
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 displayed values on Histogram window

2019-05-17 Thread 北嶋 凌
Thank you for answering.

I had 24bit image, so converted into 8bit and read.
But values are still from 0-1.

Is that a correct way I did?

Best regards,

Ryo Kitashima

>Hello,
>
>if you have an 8bit image it's from 0-255, if you have 16, or 32bit images
>you get the values from 0-1.
>
>Regards,
>Tobias
>
>Am Mo., 13. Mai 2019 um 11:45 Uhr schrieb 北嶋 凌 :
>
>> Hello.
>> I use GIMP ver.2.10.10.0 on Windows 7.
>>
>> I have a question about Histogram window.
>> (Windows > Dockable Dialogs > Histogram)
>>
>> There are "Mean","Std dev", "Median" values displayed,
>> but the values are between 0 and 1.
>> As far as I can remember, they used to be between 0 and 255.
>>
>> e.g.
>> expect value:Red=0, Green=160,   Blue=233
>> displayed value: Red=0, Green=0.627, Blue=0.914
>>
>> Is this because specification has changed,
>> or because I have changed some settings?
>>
>> If this can be fixed by the settings, would you tell me how to set?
>>
>> Best regards,
>>
>> Ryo Kitashima
>> ___
>> 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
>>
>
>
>html-part included links---
>mailto:kitash...@webtec.co.jp
>mailto:gimp-user-list@gnome.org

___
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 displayed values on Histogram window

2019-05-13 Thread Tobias Jakobs via gimp-user-list
Hello,

if you have an 8bit image it's from 0-255, if you have 16, or 32bit images
you get the values from 0-1.

Regards,
Tobias

Am Mo., 13. Mai 2019 um 11:45 Uhr schrieb 北嶋 凌 :

> Hello.
> I use GIMP ver.2.10.10.0 on Windows 7.
>
> I have a question about Histogram window.
> (Windows > Dockable Dialogs > Histogram)
>
> There are "Mean","Std dev", "Median" values displayed,
> but the values are between 0 and 1.
> As far as I can remember, they used to be between 0 and 255.
>
> e.g.
> expect value:Red=0, Green=160,   Blue=233
> displayed value: Red=0, Green=0.627, Blue=0.914
>
> Is this because specification has changed,
> or because I have changed some settings?
>
> If this can be fixed by the settings, would you tell me how to set?
>
> Best regards,
>
> Ryo Kitashima
> ___
> 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

[Gimp-user] Question about displayed values on Histogram window

2019-05-13 Thread 北嶋 凌
Hello.
I use GIMP ver.2.10.10.0 on Windows 7.

I have a question about Histogram window.
(Windows > Dockable Dialogs > Histogram)

There are "Mean","Std dev", "Median" values displayed,
but the values are between 0 and 1.
As far as I can remember, they used to be between 0 and 255.

e.g.
expect value:Red=0, Green=160,   Blue=233
displayed value: Red=0, Green=0.627, Blue=0.914

Is this because specification has changed, 
or because I have changed some settings?

If this can be fixed by the settings, would you tell me how to set?

Best regards,

Ryo Kitashima
___
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] Question: printing metadata TITLE / CAPTION under the image as attached photos

2018-05-03 Thread Gunnar - Swede
Hi,

I am looking for a photo editor, that can help me *creating digitized
photos with documentation.*

Descriptive text on old, digitized photos, shown below the photo.
I'm currently working with old photos, which I want to document in a
good way.

1. I want to be able to enter a caption, to be displayed together with
 the image, and stored in metadata, see attached image.
2. I want to be able to create many searchable tags.

Will GIMP do it for me ??

The attached photos show what I mean, print metadata TITLE/CAPTION etc,
is that possible.??

Regards

"Gunnar - Swede" 


 


 



--
Sent from: http://gimp.1065349.n5.nabble.com/Users-f3.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] Question about fonts and XCF files

2018-02-24 Thread Tom Williams
On 02/24/2018 01:34 PM, Ofnuts wrote:
> On 02/24/18 17:20, Tom Williams wrote:
>>> The fonts aren't embedded in the XCF. That won't prevent your friend
>>> to see your text as you designed it, but if she wants to change the
>>> text she will ned to install the fonts on her system.
>> Really?  Even though the fonts aren't installed, the font face will
>> still appear in the file when opened?
>>
>
> Yes, because the text is rendered to a bitmap. In the XCF linked
> below, the text is in "Humor Sans".
> Check that this font isn't installed on your system, and open the XCF.
> Do you see the text?
>
> https://www.dropbox.com/s/gasfrn9qh91in4u/SampleText.xcf?dl=0

Thanks for the sample.  The 'Humor Sans' text appeared, just as you
described.

Thanks to everyone for the responses!   What I'll do is send her the XCF
file I have now, so she can experiment with moving some parts of the
image around AND I'll help her get the fonts used installed so she can
make actual text changes.

Peace...

Tom

-- 
/When I leave, I don't know what I'm hoping to find,
And when I leave, I don't know what I'm leaving behind.../
___
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 fonts and XCF files

2018-02-24 Thread Ofnuts

On 02/24/18 17:20, Tom Williams wrote:

The fonts aren't embedded in the XCF. That won't prevent your friend
to see your text as you designed it, but if she wants to change the
text she will ned to install the fonts on her system.

Really?  Even though the fonts aren't installed, the font face will
still appear in the file when opened?



Yes, because the text is rendered to a bitmap. In the XCF linked below, 
the text is in "Humor Sans".
Check that this font isn't installed on your system, and open the XCF. 
Do you see the text?


https://www.dropbox.com/s/gasfrn9qh91in4u/SampleText.xcf?dl=0
___
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 fonts and XCF files

2018-02-24 Thread Kevin Cozens

On 02/23/18 03:55, Tom Williams wrote:

I created some logo samples for a friend using various Google and
other free fonts.  I saved all of the samples in an XCF file.  If I send
her the XCF file, will the fonts be embedded in it, such that she won't
have to have the fonts actually installed on her system or will the XCF
contain references to the font, requiring her to have them installed on
her system?


If you are sending only an xcf file your friend won't see the fonts as you 
do unless they also have those fonts installed. If you want to send font 
samples you should create an image, or PDF file, using the fonts.


--
Cheers!

Kevin.

http://www.ve3syb.ca/   |"Nerds make the shiny things that distract
Owner of Elecraft K2 #2172  | the mouth-breathers, and that's why we're
| powerful!"
#include  | --Chris Hardwick
___
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 fonts and XCF files

2018-02-24 Thread Tom Williams
On 02/23/2018 05:36 PM, Ofnuts wrote:
> On 02/23/18 03:55, Tom Williams wrote:
>> Hi!  I created some logo samples for a friend using various Google and
>> other free fonts.  I saved all of the samples in an XCF file.  If I send
>> her the XCF file, will the fonts be embedded in it, such that she won't
>> have to have the fonts actually installed on her system or will the XCF
>> contain references to the font, requiring her to have them installed on
>> her system?
>>
>> Thanks in advance!
>>
>> Peace...
>>
>> Tom
>>
> The fonts aren't embedded in the XCF. That won't prevent your friend
> to see your text as you designed it, but if she wants to change the
> text she will ned to install the fonts on her system.

Really?  Even though the fonts aren't installed, the font face will
still appear in the file when opened?

Thanks!

Peace...

Tom

-- 
/When I leave, I don't know what I'm hoping to find,
And when I leave, I don't know what I'm leaving behind.../
___
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 fonts and XCF files

2018-02-23 Thread Ofnuts

On 02/23/18 03:55, Tom Williams wrote:

Hi!  I created some logo samples for a friend using various Google and
other free fonts.  I saved all of the samples in an XCF file.  If I send
her the XCF file, will the fonts be embedded in it, such that she won't
have to have the fonts actually installed on her system or will the XCF
contain references to the font, requiring her to have them installed on
her system?

Thanks in advance!

Peace...

Tom

The fonts aren't embedded in the XCF. That won't prevent your friend to 
see your text as you designed it, but if she wants to change the text 
she will ned to install the fonts on her 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] Question about fonts and XCF files

2018-02-22 Thread Tom
On 02/22/2018 08:50 PM, Liam R. E. Quin wrote:
> On Thu, 2018-02-22 at 18:55 -0800, Tom Williams wrote:
>> If I send her the XCF file, will the fonts be embedded in it,
> No.
>
>>  such that she
>> won't
>> have to have the fonts actually installed on her system or will the
>> XCF
>> contain references to the font, requiring her to have them installed
>> on
>> her system?
> Yes, she will need the fonts.
>
> To avoid this, export as an image (e.g. JPEG or PNG).
>
>

Thanks for the info!

Peace...

Tom
___
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] Question about fonts and XCF files

2018-02-22 Thread Tom Williams
Hi!  I created some logo samples for a friend using various Google and
other free fonts.  I saved all of the samples in an XCF file.  If I send
her the XCF file, will the fonts be embedded in it, such that she won't
have to have the fonts actually installed on her system or will the XCF
contain references to the font, requiring her to have them installed on
her system?

Thanks in advance!

Peace...

Tom

-- 
/When I leave, I don't know what I'm hoping to find,
And when I leave, I don't know what I'm leaving behind.../
___
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 Recreating a Drop Shadow

2017-05-12 Thread Steve Kinney


On 05/09/2017 05:16 PM, Amber Sunder wrote:
> My apologies - I should have included a photo in my initial inquiry!
> Thank you for your response! Below is what I'm trying to edit. It is
> currently 'TheMusician' with the drop shadow you see there. I need to
> reproduce that exact drop shadow when we change the title of this
> particular document to 'TheArtist.' There are several pages in the
> document this is a part of, and every page's title has this exact drop
> shadow, so when I change it to 'TheArtist,' it needs to be exactly the
> same. I just wish there was a way to see the settings she used to create
> it so I can input those same values to the drop shadow I need to apply
> to 'TheArtist' so it's exactly the same. Layer Group #2 is what contains
> this title and drop shadow.

Aha!

I see a black text layer, and under that, the same text layer in white
(light gray actually), and under that, a thin but normal "shadow" layer
made as described in my previous post, with the lower two layers offset
to produce the effect.

See attached:  A low resolution approximation of the same drop shadow
effect.  If you have the original font, this example and my post re
making drop shadows by hand should be all you need to get as close to
"exact" as you need.

As this is a "logo" I suggest making a large high resolution "master"
that can be used in lots of applications (after scaling and tweaking).
Ideally it might be duplicated in Inkscape or another vector edior;
then, it could be scaled to any size and exported in any common image
format as required, quickly and easily.

:o)






___
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 Recreating a Drop Shadow

2017-05-12 Thread Rick Strong
Hi Amber,

Your logo looks like it has three layers:
- Text Black, sharp.
- Shadow 1 light light grey, blurred
- Shadow 2 dark grey on the bottom, blurred more.

I attach a GIMP file with layers. Adjust everything to suit your purposes.

Cheers,
Rick S.

From: Amber Sunder 
Sent: Tuesday, May 09, 2017 3:25 PM
To: Rick Strong ; gimp-user-list@gnome.org 
Subject: RE: [Gimp-user] Question About Recreating a Drop Shadow

Hey Rick!

 

Sorry for the confusion! I guess I was a bit vague in my initial inquiry. I was 
just hoping there was a way to find one drop shadow’s settings to apply them to 
another drop shadow that I was unaware of. It's the drop shadow on 'The 
Musician' - I need to change that title to 'The Artist,' but unlike Photoshop, 
it doesn't just adjust the drop shadow when you edit text since the drop shadow 
is a layer in itself. If you have any idea how I can recreate this drop shadow, 
I would GREATLY appreciate your help!

 

Thanks!

 



 

 

-Original Message-
From: Rick Strong [mailto:rnstr...@primus.ca] 
Sent: Tuesday, May 09, 2017 2:14 PM
To: Amber Sunder <asun...@modmgmt.com>; gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Question About Recreating a Drop Shadow

 

Which drop shadow are you referring to? There isn't one on your corporate page.

 

Rick S.

 

-Original Message-

From: Amber Sunder

Sent: Tuesday, May 09, 2017 2:40 PM

To: gimp-user-list@gnome.org

Subject: [Gimp-user] Question About Recreating a Drop Shadow

 

Hello!

 

I'm new to using GIMP and am trying to edit the work of the person in my 
position previous to me. She used a drop shadow on the title of the page "The 
Musician," but the title is being changed to "The Artist." This isn't your 
normal drop shadow, so I'm not sure how she created it! My question is - is 
there a way to recreate a drop shadow using existing settings? And where can I 
find the settings for the initial drop shadow to duplicate it on "The Artist"? 
In Photoshop, this wouldn't be an issue for me at all, but this particular 
document was created using GIMP, which I'm not very familiar with, so I would 
appreciate any suggestions or assistance!

 

Thanks so 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 

 
___
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 Recreating a Drop Shadow

2017-05-09 Thread Rick Kline
Kevin,

I took a close look at the file, and the drop shadow has a 4 pixel wide cutout 
in it. A bit non-standard. I was able to recreate the appearance of the 
original text/drop shadow with the following workflow:

Make a copy of the file. Work with the copy.

1. Select your text layer, edit text to say “THEARTIST” (this is the step I 
can’t easily do without knowing what the font is)
2. Filters menu, Light and Shadow >, Drop Shadow…   (creates a new, 
editable Drop Shadow layer)
Offset x = 8
Offset y = 8
Blur radius = 15
Color = Black
Opacity = 60
Note: I zoomed way in to determine that the blank area in the drop shadow is 4 
pixels, so:
2a. Make sure the text layer is still selected.
3. Choose the Fuzzy Select (magic wand) tool
Hold Shift and click on each letter in turn until all are selected
4. Select menu, Grow, Grow selection by: 2 px
5. Move tool
Click in selected area
alt (or option) right arrow twice (should move selection two pixels to 
the right
alt (or option) down arrow twice (should move selection two pixels down
6. Select new drop shadow layer
7. Edit menu, Cut (or CTRL (or command) x)
8. Select menu, None
9. Turn off old Drop Shadow layer

That should do it. 

I’m working on an iMac with GIMP 2.8.20

Rick K

 * * ** *** *  * * 
It’s better to wave at a stranger than to ignore a friend
 * * ** *** *  * * 

> On May 9, 2017, at 4:10 PM, Kevin Cozens  wrote:
> 
> On 2017-05-09 02:40 PM, Amber Sunder wrote:
>> I'm new to using GIMP and am trying to edit the work of the person in my
>> position previous to me. She used a drop shadow on the title of the page
> [snip]
>> This isn't your normal drop shadow, so I'm not sure how she created it!
> [snip]
>> this particular document was created using GIMP
> 
> GIMP includes a filter to add drop shadow to an item. There are (or were) 
> some filters let you create text with a drop shadow.
> 
> You said the drop shadow on the image you are dealing with is not "normal". 
> What is different about it? If the image was created by GIMP it may be 
> slightly different than a drop shadow created by Photoshop (or some other 
> editing program) but it was most likely created using the built-in drop 
> shadow features of GIMP.
> 
> -- 
> Cheers!
> 
> Kevin.
> 
> http://www.ve3syb.ca/   |"Nerds make the shiny things that distract
> Owner of Elecraft K2 #2172  | the mouth-breathers, and that's why we're
>| powerful!"
> #include  | --Chris Hardwick
> ___
> 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 Recreating a Drop Shadow

2017-05-09 Thread Steve Kinney


On 05/09/2017 04:10 PM, Kevin Cozens wrote:
> On 2017-05-09 02:40 PM, Amber Sunder wrote:
>> I'm new to using GIMP and am trying to edit the work of the person in my
>> position previous to me. She used a drop shadow on the title of the page
> [snip]
>> This isn't your normal drop shadow, so I'm not sure how she created it!
> [snip]
>> this particular document was created using GIMP
> 
> GIMP includes a filter to add drop shadow to an item. There are (or
> were) some filters let you create text with a drop shadow.

With your text layer selected, do Filters > Light and shadow > Drop
shadow.  Tweak the settings, try it, undo, adjust again, etc. until you
get what you are after or determine that this filter won't do it.

You might also want to try some of the effects at Filters > Alpha to
logo.  Note that the results come out as layers, and you can remove,
change opacity, or otherwise edit the individual layers to tweak the
result.  If the strange drop shadow was originally made with one of
these scripts, you should be able to get an exact duplicate without too
much trial and error.

An "abnormal" drop shadow may or may not be reproducible with a filter
or script; but it's not hard to do these things by hand.

Basic drop shadow:

* Create your text with the Text tool; size and position it as required.
 Note that you can alter letter spacing, line spacing, alignment inside
the text box (left, center, right or justified) with a tool in the Tool
Options dock when the Text tool is active and a text layer is selected.

* In the Layers dock, make a copy of your text layer.  Change the color
of the original (lower) text layer to black by drag-and-drop from the
color tool while that layer is selected.  Or, use the shadow color of
your choice.

* Next, with the lower (shadow) layer selected, right click that layer's
icon in the Layers dialog and do "Discard text information."  It is now
a normal image layer that you can do awful things to.

* Still with the shadow layer selected in the Layers dialog, turn on the
Move tool, click on the image canvas window to make it active, and use
your keyboard arrow keys to offset the shadow layer from the text layer,
positioning it to function as a drop shadow.

* Do Filters > Blur > Gaussian Blur to give your shadow a soft edge.
Play with different blur values, move the layer around a bit, etc. until
it starts to look right (Ctrl+z is your friend - instant easy undo).
You may also want to adjust the shadow layer's opacity via the slider at
the top of the Layers dock.

I don't know what's unusual about the drop shadow you are duplicating,
but variations on the method presented above should allow you to
duplicate most anything that can be called a drop shadow.

> You said the drop shadow on the image you are dealing with is not
> "normal". What is different about it? If the image was created by GIMP
> it may be slightly different than a drop shadow created by Photoshop (or
> some other editing program) but it was most likely created using the
> built-in drop shadow features of GIMP.

Verily:  If we could see the original you are trying to duplicate, the
method used might be obvious.  Or at least a way to do the same thing
should not be hard for the gang here to come up with.

:o)

___
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 Recreating a Drop Shadow

2017-05-09 Thread Rick Kline
Ah, there we go.

Besides the wood background, it looks like three layers to me: The black text 
front layer, a light drop shadow the average color of the wood, and a darker 
drop shadow behind that.

Do you have a layered copy of the image? i.e. the original GIMP FILE? I (or 
someone else) could probably edit the file and get it back to you reasonably 
quickly.

I highly recommend making a copy of the file, and work on the copy. If there’s 
only one drop shadow(s) layer behind the text, try turning off the text by 
clicking the eye next to its layer thumbnail, and see if the shadow is, indeed, 
two shadows. If so, and you have AT LEAST the editable text layer and the wood 
background, then I’d suggest making two copies of the text layer, and move them 
to slightly right and down, with the lowest layer moved the farthest, to 
recreate the spacing of the original shadow(s). Then use the eyedropper tool to 
select the light grey for the middle text layer and change the text to that 
color, and do the same for the bottom layer, using the darker grey.  That 
should get you pretty close. May want to apply some blur to the shadow layers, 
but that’s up to you.

Anyhoo, that would be my initial approach, given a file with at least the wood 
and text layers.

Once you’re happy with the result using “THE MUSICIAN” you can easily edit the 
text layers to become “THE ARTIST” and you should be good to go.

Hope that helps.  If you want to shoot me the layered GIMP file, or a link to 
it, I’d be glad to give it a shot, or at least take a look at the layers to see 
what you have going on.

Rick K

 * * ** *** *  * * 
It’s better to wave at a stranger than to ignore a friend
 * * ** *** *  * * 

> On May 9, 2017, at 4:01 PM, Amber Sunder <asun...@modmgmt.com> wrote:
> 
> My apologies! That link wasn’t intended to direct you to the page, it’s 
> merely a part of my email signature. See below for ‘The Musician’ title that 
> needs to be changed. If you have any idea how to recreate that, or how I can 
> find the settings for that particular drop shadow within GIMP so I can copy 
> and recreate them, I would greatly appreciate your help!
>  
> Thank you!
>  
> 
>  
>  
> AMBER SUNDER
> OFFICE MANAGER/EXECUTIVE ASSISTANT
>  
>  <http://modmgmt.com/>
>  
> P. (615) 742-0099
> A. The Orbison Building
>  1625 Broadway, STE 600
>  Nashville, TN 37203
>  
> 
>  
> JOSH TURNER <http://joshturner.com/> I DIAMOND RIO <http://diamondrio.com/> I 
> ASHLEY CLEVELAND <http://ashleycleveland.com/>
> MEGAN DAVIES <https://www.megandaviesmusic.com/> I RAQUEL COLE 
> <http://www.raquelcole.com/>
>  
>  
> From: Rick Kline [mailto:r...@kline.ms] 
> Sent: Tuesday, May 09, 2017 2:59 PM
> To: Amber Sunder <asun...@modmgmt.com>
> Cc: Rick Strong <rnstr...@primus.ca>; gimp-user-list@gnome.org
> Subject: Re: [Gimp-user] Question About Recreating a Drop Shadow
>  
> Like Rick Strong, I don’t see a drop shadow. The only web page you’ve listed 
> is <http://modmgmt.com/ <http://modmgmt.com/>>, and I don’t see “The 
> Musician” link anywhere on the page. Can you point us in the right direction, 
> please?
>  
> Rick Kline
>  
>  * * ** *** *  * * 
> It’s better to wave at a stranger than to ignore a friend
>  * * ** *** *  * * 
>  
> On May 9, 2017, at 3:25 PM, Amber Sunder <asun...@modmgmt.com 
> <mailto:asun...@modmgmt.com>> wrote:
>  
> Hey Rick!
> 
> 
> 
> Sorry for the confusion! I guess I was a bit vague in my initial inquiry. I 
> was just hoping there was a way to find one drop shadow's settings to apply 
> them to another drop shadow that I was unaware of. It's the drop shadow on 
> 'The Musician' - I need to change that title to 'The Artist,' but unlike 
> Photoshop, it doesn't just adjust the drop shadow when you edit text since 
> the drop shadow is a layer in itself. If you have any idea how I can recreate 
> this drop shadow, I would GREATLY appreciate your help!
> 
> 
> 
> Thanks!
> 
> 
> 
> [cid:image002.jpg@01D2C8D0.2788B870 <cid:image002.jpg@01D2C8D0.2788B870>]
> 
> 
> 
> 
> 
> -Original Message-
> From: Rick Strong [mailto:rnstr...@primus.ca <mailto:rnstr...@primus.ca>]
> Sent: Tuesday, May 09, 2017 2:14 PM
> To: Amber Sunder <asun...@modmgmt.com <mailto:asun...@modmgmt.com>>; 
> gimp-user-list@gnome.org <mailto:gimp-user-list@gnome.org>
> Subject: Re: [Gimp-user] Question About Recreating a Drop Shadow
> 
> 
> 
> Which drop shadow are you referring to? There isn't one on your c

Re: [Gimp-user] Question About Recreating a Drop Shadow

2017-05-09 Thread Kevin Cozens

On 2017-05-09 02:40 PM, Amber Sunder wrote:

I'm new to using GIMP and am trying to edit the work of the person in my
position previous to me. She used a drop shadow on the title of the page

[snip]

This isn't your normal drop shadow, so I'm not sure how she created it!

[snip]

this particular document was created using GIMP


GIMP includes a filter to add drop shadow to an item. There are (or were) 
some filters let you create text with a drop shadow.


You said the drop shadow on the image you are dealing with is not "normal". 
What is different about it? If the image was created by GIMP it may be 
slightly different than a drop shadow created by Photoshop (or some other 
editing program) but it was most likely created using the built-in drop 
shadow features of GIMP.


--
Cheers!

Kevin.

http://www.ve3syb.ca/   |"Nerds make the shiny things that distract
Owner of Elecraft K2 #2172  | the mouth-breathers, and that's why we're
| powerful!"
#include  | --Chris Hardwick
___
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 Recreating a Drop Shadow

2017-05-09 Thread Rick Kline
Like Rick Strong, I don’t see a drop shadow. The only web page you’ve listed is 
<http://modmgmt.com/ <http://modmgmt.com/>>, and I don’t see “The Musician” 
link anywhere on the page. Can you point us in the right direction, please?

Rick Kline

 * * ** *** *  * * 
It’s better to wave at a stranger than to ignore a friend
 * * ** *** *  * * 

> On May 9, 2017, at 3:25 PM, Amber Sunder <asun...@modmgmt.com> wrote:
> 
> Hey Rick!
> 
> 
> 
> Sorry for the confusion! I guess I was a bit vague in my initial inquiry. I 
> was just hoping there was a way to find one drop shadow's settings to apply 
> them to another drop shadow that I was unaware of. It's the drop shadow on 
> 'The Musician' - I need to change that title to 'The Artist,' but unlike 
> Photoshop, it doesn't just adjust the drop shadow when you edit text since 
> the drop shadow is a layer in itself. If you have any idea how I can recreate 
> this drop shadow, I would GREATLY appreciate your help!
> 
> 
> 
> Thanks!
> 
> 
> 
> [cid:image002.jpg@01D2C8D0.2788B870]
> 
> 
> 
> 
> 
> -Original Message-
> From: Rick Strong [mailto:rnstr...@primus.ca]
> Sent: Tuesday, May 09, 2017 2:14 PM
> To: Amber Sunder <asun...@modmgmt.com>; gimp-user-list@gnome.org
> Subject: Re: [Gimp-user] Question About Recreating a Drop Shadow
> 
> 
> 
> Which drop shadow are you referring to? There isn't one on your corporate 
> page.
> 
> 
> 
> Rick S.
> 
> 
> 
> -Original Message-----
> 
> From: Amber Sunder
> 
> Sent: Tuesday, May 09, 2017 2:40 PM
> 
> To: gimp-user-list@gnome.org<mailto:gimp-user-list@gnome.org>
> 
> Subject: [Gimp-user] Question About Recreating a Drop Shadow
> 
> 
> 
> Hello!
> 
> 
> 
> I'm new to using GIMP and am trying to edit the work of the person in my 
> position previous to me. She used a drop shadow on the title of the page "The 
> Musician," but the title is being changed to "The Artist." This isn't your 
> normal drop shadow, so I'm not sure how she created it! My question is - is 
> there a way to recreate a drop shadow using existing settings? And where can 
> I find the settings for the initial drop shadow to duplicate it on "The 
> Artist"? In Photoshop, this wouldn't be an issue for me at all, but this 
> particular document was created using GIMP, which I'm not very familiar with, 
> so I would appreciate any suggestions or assistance!
> 
> 
> 
> Thanks so much!
> 
> 
> 
> 
> 
> ___
> 
> gimp-user-list mailing list
> 
> List address:gimp-user-list@gnome.org<mailto: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

___
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 Recreating a Drop Shadow

2017-05-09 Thread Amber Sunder
Hey Rick!



Sorry for the confusion! I guess I was a bit vague in my initial inquiry. I was 
just hoping there was a way to find one drop shadow's settings to apply them to 
another drop shadow that I was unaware of. It's the drop shadow on 'The 
Musician' - I need to change that title to 'The Artist,' but unlike Photoshop, 
it doesn't just adjust the drop shadow when you edit text since the drop shadow 
is a layer in itself. If you have any idea how I can recreate this drop shadow, 
I would GREATLY appreciate your help!



Thanks!



[cid:image002.jpg@01D2C8D0.2788B870]





-Original Message-
From: Rick Strong [mailto:rnstr...@primus.ca]
Sent: Tuesday, May 09, 2017 2:14 PM
To: Amber Sunder <asun...@modmgmt.com>; gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Question About Recreating a Drop Shadow



Which drop shadow are you referring to? There isn't one on your corporate page.



Rick S.



-Original Message-

From: Amber Sunder

Sent: Tuesday, May 09, 2017 2:40 PM

To: gimp-user-list@gnome.org<mailto:gimp-user-list@gnome.org>

Subject: [Gimp-user] Question About Recreating a Drop Shadow



Hello!



I'm new to using GIMP and am trying to edit the work of the person in my 
position previous to me. She used a drop shadow on the title of the page "The 
Musician," but the title is being changed to "The Artist." This isn't your 
normal drop shadow, so I'm not sure how she created it! My question is - is 
there a way to recreate a drop shadow using existing settings? And where can I 
find the settings for the initial drop shadow to duplicate it on "The Artist"? 
In Photoshop, this wouldn't be an issue for me at all, but this particular 
document was created using GIMP, which I'm not very familiar with, so I would 
appreciate any suggestions or assistance!



Thanks so much!





___

gimp-user-list mailing list

List address:gimp-user-list@gnome.org<mailto: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 Recreating a Drop Shadow

2017-05-09 Thread Rick Strong
Which drop shadow are you referring to? There isn't one on your corporate 
page.


Rick S.

-Original Message- 
From: Amber Sunder

Sent: Tuesday, May 09, 2017 2:40 PM
To: gimp-user-list@gnome.org
Subject: [Gimp-user] Question About Recreating a Drop Shadow

Hello!

I'm new to using GIMP and am trying to edit the work of the person in my 
position previous to me. She used a drop shadow on the title of the page 
"The Musician," but the title is being changed to "The Artist." This isn't 
your normal drop shadow, so I'm not sure how she created it! My question 
is - is there a way to recreate a drop shadow using existing settings? And 
where can I find the settings for the initial drop shadow to duplicate it on 
"The Artist"? In Photoshop, this wouldn't be an issue for me at all, but 
this particular document was created using GIMP, which I'm not very familiar 
with, so I would appreciate any suggestions or assistance!


Thanks so much!

AMBER SUNDER
OFFICE MANAGER/EXECUTIVE ASSISTANT

[mod logo (color)]<http://modmgmt.com/>

P. (615) 742-0099
A. The Orbison Building
1625 Broadway, STE 600
Nashville, TN 37203

[DOTTED LINE FOR EMAIL SIGNATURE 2]

JOSH TURNER<http://joshturner.com/> I DIAMOND RIO<http://diamondrio.com/> I 
ASHLEY CLEVELAND<http://ashleycleveland.com/>
MEGAN DAVIES<https://www.megandaviesmusic.com/> I RAQUEL 
COLE<http://www.raquelcole.com/>



___
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


[Gimp-user] Question About Recreating a Drop Shadow

2017-05-09 Thread Amber Sunder
Hello!

I'm new to using GIMP and am trying to edit the work of the person in my 
position previous to me. She used a drop shadow on the title of the page "The 
Musician," but the title is being changed to "The Artist." This isn't your 
normal drop shadow, so I'm not sure how she created it! My question is - is 
there a way to recreate a drop shadow using existing settings? And where can I 
find the settings for the initial drop shadow to duplicate it on "The Artist"? 
In Photoshop, this wouldn't be an issue for me at all, but this particular 
document was created using GIMP, which I'm not very familiar with, so I would 
appreciate any suggestions or assistance!

Thanks so much!

AMBER SUNDER
OFFICE MANAGER/EXECUTIVE ASSISTANT

[mod logo (color)]

P. (615) 742-0099
A. The Orbison Building
 1625 Broadway, STE 600
 Nashville, TN 37203

[DOTTED LINE FOR EMAIL SIGNATURE 2]

JOSH TURNER I DIAMOND RIO I 
ASHLEY CLEVELAND
MEGAN DAVIES I RAQUEL 
COLE


___
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] Question Regarding Transparent Layers

2016-12-14 Thread Experimentalist
Thanks Rich!  

This helps because yesterday was the first day I used GIMP.  I normally do
things in PhotoShop  but when someone doesn't have PhotoShop, I direct them to
GIMP.

So I know virtually nothing about using it.

It's good for me to learn as much as I can.  I find your response extremely
helpful.

Cheers!

-- 
Experimentalist (via www.gimpusers.com/forums)
___
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] Question Regarding Transparent Layers

2016-12-14 Thread rich2005
Unless you are standing behind the user, never certain what is going on...

>she clicks out of the logo (clicks somewhere on the jewelry image in
>order to remove the selection tool from around the logo) the formerly
>transparent background appears.
>
>Any ideas?
>
However, that bit is not correct. Which tool is active? Gimp does not have a
neutral tool, there is always one in use, although some such as the measure tool
are harmless.

Assuming a straight copy - paste, either via  menu or ctrl-c, ctrl-v, there is a
Floating Selection, to remove the 'crawling ants' anchor that. Layer -> Anchor
Layer, ctrl-h, or the layer dock. see: attachment. While it is still 'floating'
it can be moved with the move tool.

A better way is copy, then paste-as-a-new-layer, Edit -> Paste-as -> New Layer.
Initially top left corner of the canvas, use the move tool any-time to move into
position. see: attachment Make sure you click on a solid part of layer or enable
move active layer.

rich: www.gimp-forum.net

Attachments:
* http://www.gimpusers.com/system/attachments/365/original/anchor.jpg
* http://www.gimpusers.com/system/attachments/366/original/layer.jpg

-- 
rich2005 (via www.gimpusers.com/forums)
___
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 RGB to CMYK conversion and print work

2016-11-30 Thread Rick Strong

Hey, another win for the home team, however you did it!

Rick S.

-Original Message- 
From: Tom Williams

Sent: Wednesday, November 30, 2016 10:30 AM
To: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Question about RGB to CMYK conversion and print 
work


...
Well, the business cards have been printed and they look
fan-flippin-tastic   They actually came out much, much better than I
expected and my friend *loves* them!   Thanks again for the help and
Thanks to the GIMP developers for producing such awesome software!  :)

Peace...

Tom

--
/When we dance, you have a way with me,
Stay with me... Sway with 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 


___
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 RGB to CMYK conversion and print work

2016-11-30 Thread Tom Williams
On 11/18/2016 08:27 PM, Tom Williams wrote:
> On 11/16/2016 12:44 AM, Simon Budig wrote:
>> Tom Williams (tomd...@comcast.net) wrote:
>>> I'm helping a friend of mine create a business card for a new business. 
>>> I created the card in GIMP and it looks great!  The plan is to order
>>> cards through VistaPrint.   Anyway, according to the VistaPrint website,
>>> they recommend uploading designs in a CMYK mode.   Since I created my
>>> card in GIMP, it's in RGB mode.
>> I'd recommend to not fiddle with it now. Vistaprint will do their own
>> conversion, which is likely to be better than your conversion, since
>> they do know their own processes.
>>
>> In fact I had lots of "fun" some time ago, where I absolutely sent them
>> a CMYK PDF file and they still fiddled with it, adding a little bit of
>> black to my vibrant yellow, resulting in quite dull colors...
>>
>> Bye,
>> Simon
> Thanks to both you, Simon, and Rick Strong for your comments.  I opted
> to "roll the bones" with the RGB PNG I created, using the VistaPrint
> template, and the site seemed happy with the resolution of the image. 
> The previews on the site looked good so I'm keeping my fingers crossed
> that the image prints well.
>
> Thanks again!
>
> Tom
>
Well, the business cards have been printed and they look
fan-flippin-tastic   They actually came out much, much better than I
expected and my friend *loves* them!   Thanks again for the help and
Thanks to the GIMP developers for producing such awesome software!  :)

Peace...

Tom

-- 
/When we dance, you have a way with me,
Stay with me... Sway with 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] Question about RGB to CMYK conversion and print work

2016-11-19 Thread Rick Strong

Let us know how it works out, Tom.
Good luck,
Rick S.

-Original Message- 
From: Tom Williams

Sent: Friday, November 18, 2016 11:27 PM
To: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Question about RGB to CMYK conversion and print 
work


...
Thanks to both you, Simon, and Rick Strong for your comments.  I opted
to "roll the bones" with the RGB PNG I created, using the VistaPrint
template, and the site seemed happy with the resolution of the image.
The previews on the site looked good so I'm keeping my fingers crossed
that the image prints well.

Thanks again!

Tom

--
/When we dance, you have a way with me,
Stay with me... Sway with 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 


___
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 RGB to CMYK conversion and print work

2016-11-18 Thread Tom Williams
On 11/16/2016 12:44 AM, Simon Budig wrote:
> Tom Williams (tomd...@comcast.net) wrote:
>> I'm helping a friend of mine create a business card for a new business. 
>> I created the card in GIMP and it looks great!  The plan is to order
>> cards through VistaPrint.   Anyway, according to the VistaPrint website,
>> they recommend uploading designs in a CMYK mode.   Since I created my
>> card in GIMP, it's in RGB mode.
> I'd recommend to not fiddle with it now. Vistaprint will do their own
> conversion, which is likely to be better than your conversion, since
> they do know their own processes.
>
> In fact I had lots of "fun" some time ago, where I absolutely sent them
> a CMYK PDF file and they still fiddled with it, adding a little bit of
> black to my vibrant yellow, resulting in quite dull colors...
>
> Bye,
> Simon
Thanks to both you, Simon, and Rick Strong for your comments.  I opted
to "roll the bones" with the RGB PNG I created, using the VistaPrint
template, and the site seemed happy with the resolution of the image. 
The previews on the site looked good so I'm keeping my fingers crossed
that the image prints well.

Thanks again!

Tom

-- 
/When we dance, you have a way with me,
Stay with me... Sway with 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] Question about RGB to CMYK conversion and print work

2016-11-16 Thread Rick Strong

Good-Fast-Cheap
Pick any two.

Rick S.

-Original Message- 
From: Simon Budig

Sent: Wednesday, November 16, 2016 3:44 AM
To: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Question about RGB to CMYK conversion and print 
work


Tom Williams (tomd...@comcast.net) wrote:

I'm helping a friend of mine create a business card for a new business.
I created the card in GIMP and it looks great!  The plan is to order
cards through VistaPrint.   Anyway, according to the VistaPrint website,
they recommend uploading designs in a CMYK mode.   Since I created my
card in GIMP, it's in RGB mode.


I'd recommend to not fiddle with it now. Vistaprint will do their own
conversion, which is likely to be better than your conversion, since
they do know their own processes.

In fact I had lots of "fun" some time ago, where I absolutely sent them
a CMYK PDF file and they still fiddled with it, adding a little bit of
black to my vibrant yellow, resulting in quite dull colors...

Bye,
   Simon
--
 si...@budig.de  http://simon.budig.de/
___
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 RGB to CMYK conversion and print work

2016-11-16 Thread Simon Budig
Tom Williams (tomd...@comcast.net) wrote:
> I'm helping a friend of mine create a business card for a new business. 
> I created the card in GIMP and it looks great!  The plan is to order
> cards through VistaPrint.   Anyway, according to the VistaPrint website,
> they recommend uploading designs in a CMYK mode.   Since I created my
> card in GIMP, it's in RGB mode.

I'd recommend to not fiddle with it now. Vistaprint will do their own
conversion, which is likely to be better than your conversion, since
they do know their own processes.

In fact I had lots of "fun" some time ago, where I absolutely sent them
a CMYK PDF file and they still fiddled with it, adding a little bit of
black to my vibrant yellow, resulting in quite dull colors...

Bye,
Simon
-- 
  si...@budig.de  http://simon.budig.de/
___
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 RGB to CMYK conversion and print work

2016-11-15 Thread Rick Strong
I don’t know.
But RGB2CMYK is a hell of a lot easier to use and for that reason it will 
probably work better. Just upload your file and it’s done.

I’m a graphic designer/photographer not a geek (not any more, anyway). I like 
things that work right out of the box and this online conversion worked for me.


Rick S.



From: Tom Williams 
Sent: Tuesday, November 15, 2016 6:48 PM
To: Rick Strong ; gimp-user-list@gnome.org 
Subject: Re: [Gimp-user] Question about RGB to CMYK conversion and print work

On 11/15/2016 03:19 PM, Rick Strong wrote:

  Try the free online converter: 
  RGB2CMYK.org 

  http://www.rgb2cmyk.org/ 

  Rick S. 


Thanks for the link.  Would this service do a better conversion than 
ImageMagick?

Thanks!

Peace...

Tom



  -Original Message- From: Tom Williams 
  Sent: Tuesday, November 15, 2016 5:43 PM 
  To: gimp-user-list@gnome.org 
  Subject: [Gimp-user] Question about RGB to CMYK conversion and print work 

  I'm helping a friend of mine create a business card for a new business. 
  I created the card in GIMP and it looks great!  The plan is to order 
  cards through VistaPrint.   Anyway, according to the VistaPrint website, 
  they recommend uploading designs in a CMYK mode.   Since I created my 
  card in GIMP, it's in RGB mode. 

  Would it be safe to convert my image from RGB to CMYK, using ImageMagick 
  for example, or should I recreate it using a different tool, like 
  Scribus?  I'm a Linux user.   Alternatively, I could send the image to a 
  friend who has PhotoShop and have her convert the image to CYMK mode for me. 

  Any thoughts or suggestions? 

  Thanks! 

  Peace... 

  Tom 





-- 
When we dance, you have a way with me,
Stay with me... Sway with 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] Question about RGB to CMYK conversion and print work

2016-11-15 Thread Tom Williams
On 11/15/2016 03:19 PM, Rick Strong wrote:
> Try the free online converter:
> RGB2CMYK.org
>
> http://www.rgb2cmyk.org/
>
> Rick S.

Thanks for the link.  Would this service do a better conversion than
ImageMagick?

Thanks!

Peace...

Tom

>
> -Original Message- From: Tom Williams
> Sent: Tuesday, November 15, 2016 5:43 PM
> To: gimp-user-list@gnome.org
> Subject: [Gimp-user] Question about RGB to CMYK conversion and print work
>
> I'm helping a friend of mine create a business card for a new business.
> I created the card in GIMP and it looks great!  The plan is to order
> cards through VistaPrint.   Anyway, according to the VistaPrint website,
> they recommend uploading designs in a CMYK mode.   Since I created my
> card in GIMP, it's in RGB mode.
>
> Would it be safe to convert my image from RGB to CMYK, using ImageMagick
> for example, or should I recreate it using a different tool, like
> Scribus?  I'm a Linux user.   Alternatively, I could send the image to a
> friend who has PhotoShop and have her convert the image to CYMK mode
> for me.
>
> Any thoughts or suggestions?
>
> Thanks!
>
> Peace...
>
> Tom
>


-- 
/When we dance, you have a way with me,
Stay with me... Sway with 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] Question about RGB to CMYK conversion and print work

2016-11-15 Thread Rick Strong

Try the free online converter:
RGB2CMYK.org

http://www.rgb2cmyk.org/

Rick S.

-Original Message- 
From: Tom Williams

Sent: Tuesday, November 15, 2016 5:43 PM
To: gimp-user-list@gnome.org
Subject: [Gimp-user] Question about RGB to CMYK conversion and print work

I'm helping a friend of mine create a business card for a new business.
I created the card in GIMP and it looks great!  The plan is to order
cards through VistaPrint.   Anyway, according to the VistaPrint website,
they recommend uploading designs in a CMYK mode.   Since I created my
card in GIMP, it's in RGB mode.

Would it be safe to convert my image from RGB to CMYK, using ImageMagick
for example, or should I recreate it using a different tool, like
Scribus?  I'm a Linux user.   Alternatively, I could send the image to a
friend who has PhotoShop and have her convert the image to CYMK mode for me.

Any thoughts or suggestions?

Thanks!

Peace...

Tom

--
/When we dance, you have a way with me,
Stay with me... Sway with 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 


___
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] Question about RGB to CMYK conversion and print work

2016-11-15 Thread Tom Williams
I'm helping a friend of mine create a business card for a new business. 
I created the card in GIMP and it looks great!  The plan is to order
cards through VistaPrint.   Anyway, according to the VistaPrint website,
they recommend uploading designs in a CMYK mode.   Since I created my
card in GIMP, it's in RGB mode.

Would it be safe to convert my image from RGB to CMYK, using ImageMagick
for example, or should I recreate it using a different tool, like
Scribus?  I'm a Linux user.   Alternatively, I could send the image to a
friend who has PhotoShop and have her convert the image to CYMK mode for me.

Any thoughts or suggestions?

Thanks!

Peace...

Tom

-- 
/When we dance, you have a way with me,
Stay with me... Sway with 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


[Gimp-user] Question About Gif Animation

2016-10-05 Thread Silicon_Chipmunk
>Am 03.10.2016 um 01:50 schrieb Silicon_Chipmunk:
>There is only one frame rate in animated GIFs. When you need different
>speeds for different parts of an animation, you need to double/triple
>and so on the "slow" frames, while animating the fast parts in it.
>Basically, do this:
>
>frame 0: wings up   - eyes open
>frame 1: wings up   - eyes closed
>frame 2: wings down - eyes open
>frame 3: wings down - eyes closed
>loop
>Again, I recommend ImageMagick to do that duplication and animation
>work
>for you, see this example:
>
>http://www.imagemagick.org/Usage/anim_mods/#composite
>
>It first creates a coalesced_k.gif (a full frame/non-optimizied gif),
>then makes a shadows_k.gif from the original one -only for
>demonstration
>purposes, could be any "background" animation, e.g. your winged
>dragon-,
>then compose that background animation with the original
>coalesced_k.gif
>to compose_shadow.gif.
>
>(gif_anim_montage is just a script which created the strip at the
>bottom
>of the tutorial step)
>
>You are done!
>
>Okay, if you want to do that wing flapping at a slower speed, you
>first
>had to double each frame within the gif. That's a bit trickier:
>
>http://www.imagemagick.org/discourse-server/viewtopic.php?p=50325#p41868
>
>Hope that helps.
>
>Kind regards
>
>   Jan


Thank you, Jan. :)

-- 
Silicon_Chipmunk (via www.gimpusers.com/forums)
___
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 Gif Animation

2016-10-03 Thread Jan Kandziora
Am 03.10.2016 um 01:50 schrieb Silicon_Chipmunk:
> Hi, I hope someone can help. 
> 
> Sorry if this has already been asked, I couldn't find anything similar 
> in the forums but might have missed something.
> 
> Is it possible to make a gif where two different things move at two different
> speeds?
>
There is only one frame rate in animated GIFs. When you need different
speeds for different parts of an animation, you need to double/triple
and so on the "slow" frames, while animating the fast parts in it.


> For example if I was animating a dragon, is there a way to make its wings
> to move at one speed (looped) while its eyes blink at a faster speed?
> 
Basically, do this:

frame 0: wings up   - eyes open
frame 1: wings up   - eyes closed
frame 2: wings down - eyes open
frame 3: wings down - eyes closed
loop


> I keep wanting to make two Layer Groups so I can animate things separately, 
> but
> know this won't work since Gimp can't animate layers in Groups. Any advice 
> would
> be greatly appreciated. 
> 
Again, I recommend ImageMagick to do that duplication and animation work
for you, see this example:

http://www.imagemagick.org/Usage/anim_mods/#composite

It first creates a coalesced_k.gif (a full frame/non-optimizied gif),
then makes a shadows_k.gif from the original one -only for demonstration
purposes, could be any "background" animation, e.g. your winged dragon-,
then compose that background animation with the original coalesced_k.gif
to compose_shadow.gif.

(gif_anim_montage is just a script which created the strip at the bottom
of the tutorial step)

You are done!

Okay, if you want to do that wing flapping at a slower speed, you first
had to double each frame within the gif. That's a bit trickier:

http://www.imagemagick.org/discourse-server/viewtopic.php?p=50325#p41868

Hope that helps.

Kind regards

Jan


___
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 Gif Animation

2016-10-03 Thread achbarrr


All you need is in adobe flash or you can try some like that called SYNFIG. 
this is best way to make great anination if you know





On Mon, Oct 3, 2016 at 6:05 PM +0900, "Silicon_Chipmunk"  
wrote:










Hi, I hope someone can help. 

Sorry if this has already been asked, I couldn't find anything similar 
in the forums but might have missed something.

Is it possible to make a gif where two different things move at two different
speeds?
For example if I was animating a dragon, is there a way to make its wings
to move at one speed (looped) while its eyes blink at a faster speed?

I keep wanting to make two Layer Groups so I can animate things separately, but
know
this won't work since Gimp can't animate layers in Groups. Any advice would
be greatly appreciated. 

-- 
Silicon_Chipmunk (via www.gimpusers.com/forums)
___
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


[Gimp-user] Question About Gif Animation

2016-10-03 Thread Silicon_Chipmunk
Hi, I hope someone can help. 

Sorry if this has already been asked, I couldn't find anything similar 
in the forums but might have missed something.

Is it possible to make a gif where two different things move at two different
speeds?
For example if I was animating a dragon, is there a way to make its wings
to move at one speed (looped) while its eyes blink at a faster speed?

I keep wanting to make two Layer Groups so I can animate things separately, but
know
this won't work since Gimp can't animate layers in Groups. Any advice would
be greatly appreciated. 

-- 
Silicon_Chipmunk (via www.gimpusers.com/forums)
___
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] Question

2015-07-13 Thread James Doyle
I am looking to find out how you stitch pictures tougher I have tried but
unable to looked in the help files but could not find anything 

Please help  

 

From the outbox of 

James Doyle

 

___
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] Question about the meanings of the numbers in a color gradient

2015-06-27 Thread Dora Smith

I've almost got it figured out.

GIMP Gradient
Name: Dora Gay flag
6
0.00 0.08 0.17 1.00 0.315000 0.315000 1.00 1.00 
0.315000 0.315000 1.00 0 0 0 0
0.17 0.25 0.33 1.00 0.501961 0.00 1.00 1.00 
0.501961 0.00 1.00 0 0 0 0
0.33 0.416667 0.50 1.00 1.00 0.00 1.00 1.00 
1.00 0.00 1.00 0 0 0 0
0.50 0.58 0.67 0.00 0.474510 0.250980 1.00 0.00 
0.474510 0.250980 1.00 0 0 0 0
0.67 0.75 0.83 0.250980 0.250980 1.00 1.00 0.250980 
0.250980 1.00 1.00 0 0 0 0
0.83 0.916667 1.00 0.627451 0.00 0.752941 1.00 0.627451 
0.00 0.752941 1.00 0 0 0 0


Third row is how many segments.  If an example has 2 segments it is 2; if an 
example has 18 segments it is 18.   This one has 6 segments so it is 6.


First three columns are left point, right (end point), and point where the 
gradient changes - and if the blended colors are close where it is doesn't 
matter.
Next are the left color in RGB decimal.  Following is a number that I don't 
know what it represents, and probably it is maximum at 1.00.
Following is the rgb code for the right color, then the number that I don't 
know what it means.
Following that are four 0's I understand noone knows what they mean but 
leave them alone.


Now, I can't get the gradient editor to work, but I did get it and the 
foreground color picker to help me select numbers.


There are two numbered scales, such that the maximum is 100.   One is 
blackness, V, and it controls how dark the color is.
The other is the saturation; it controls how intense my color is.   It goes 
from 0 to 100.


Somehow at one point I got the opacity slider to display; not sure how I 
managed it, but it controlled the opacity number and nothing else.


Now, in the gradient editor, I get the position at wherever my mouse is at, 
the rgb color, HSV, and luminance and opacity.

HSV is 0.0  some number between 1 and 100 100.0
Luminance is some number between 0 and 100.

It seems that everything changes together, except opacity and blackness, 
which change separately.


If I carefully keep the black control all the way down and change the 
saturation, both the luminance and the middle number in HSV change.


I don't see anything that goes from 0 to 1.000 that affects luminosity, 
saturation, or anything that controls how light or intense the color is.


So say I want RGB color 1.0, .307, .307, with the middle HSV number 69.4, 
and luminance 45.1; and in the foreground color picker this is Hue 0, 
saturation 85, V=100 (0 blackness), RGB = 255 38 38, and the HTML notation 
is ff2626.What number do I want to put after the RGB colors where 1.000 
is now?


Feel free to point me to anything that explains it that is written in 
English and won't take more than fifteen minutes for someone who got this 
far  to figure out, and also if there is a chart or, better, tool somewhere 
that will just tell me what numbers to use for the colors and saturation I 
want.


If I wanted to change the opacity, would that be changed IN the gradient, or 
would it be changed with how one applies the gradient?


Thanks!

Yours,
Dora Smith

-Original Message- 
From: Michael Schumacher

Sent: Saturday, June 27, 2015 10:21 AM
To: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Can this gay flag gradient be added to releases of 
gimp?




On 06/27/2015 04:56 AM, dar...@chaosreigns.com wrote:

Hi darxus,


http://www.chaosreigns.com/code/dl/Gay-flag.ggr

I just made it, based on the colors from
https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT_movement)


we've discussed the best name for the gradient - 'gay flag' as such
seems to be imprecise.

I think using the names as in
https://en.wikipedia.org/wiki/LGBT_symbols#Flag_gallery is a good choice
- and thus we could use Rainbow flag.


I'm pretty confident it's perfect.


The color of the left and right end point of the red stripe are slightly
different - is this intended?

Overall, the colors you have used are different to the HTML notation
used on the Wikipedia page - it uses color keywords. They are also
different to the colors of the six-color flag shown there.

I'm not sure if exact matches matter, but still would be curious how you
did get the colors you've used.


Adding that flag gradient:

If we add the flag gradient for the symbol it represents, we might want
to consider to add gradients for a few other flags from the gallery
linked previously, and use the names provided there.


In regard to including gradients at all:

We've had a few gradients for national flags in releases in the past
(French, German, Mexican, Romanian). They do still exist in our code
repository, but have been marked as obsolete:
https://git.gnome.org/browse/gimp/tree/data/gradients/Makefile.am?h=gimp-2-8#n78

In general, we have reduced the number of resources that come with GIMP
by default. Adding some resources that have a 

Re: [Gimp-user] Question about Selections in Gimp

2015-01-05 Thread Michael Schumacher
Am 05.01.2015 um 02:00 schrieb Alice Meade:

 But lots of times, the Mode switches on me to Subtract From
 Current Selection.  Yikes!  I did not want this!  It seems to do
 this on it's own when you have a selection and you press the
 Command button (on a Mac).  Why does it do this?  What is the
 keyboard short cut to get it back to Replace Current Selection?

It is supposed to switch back once you let got of the button. Also, the
behavior depends on when you press the button, i.e. before or after you
began to create the selection frame.

Maybe this behaves differently on OSX. This would be interesting to know.


-- 
Regards,
Michael
GPG: 96A8 B38A 728A 577D 724D 60E5 F855 53EC B36D 4CDD
___
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] Question about Selections in Gimp

2015-01-04 Thread Alice Meade
When using GIMP, I make lots of selections.  Usually, the Mode is Replace 
current selection - which is what I always want it to be.  But lots of times, 
the Mode switches on me to Subtract From Current Selection.  Yikes!  I did 
not want this!  It seems to do this on it's own when you have a selection and 
you press the Command button (on a Mac).  Why does it do this?  What is the 
keyboard short cut to get it back to Replace Current Selection?  I cannot 
figure this out.

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


Re: [Gimp-user] Question about Selections in Gimp

2015-01-04 Thread Alexandre Prokoudine
5 янв. 2015 г. 5:20 пользователь Alice Meade alice.me...@rcn.com
написал:

 When using GIMP, I make lots of selections.  Usually, the Mode is
Replace current selection - which is what I always want it to be.  But
lots of times, the Mode switches on me to Subtract From Current
Selection.  Yikes!  I did not want this!  It seems to do this on it's own
when you have a selection and you press the Command button (on a Mac).  Why
does it do this?  What is the keyboard short cut to get it back to
Replace Current Selection?  I cannot figure this out.

Please read http://docs.gimp.org/2.8/en/gimp-using-selections-add.html.

Alex
___
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 golden-spiral-0.0.py script

2014-11-19 Thread Dave Thibault
OK, it works now. It was a combination of both not being executable AND
having it in the scripts folder instead of the plug-ins folder.  I had
tried both folders but before it was suggested to make them executable.

Thanks, all!
Dave

On Tue, Nov 18, 2014 at 4:20 PM, Ofnuts ofn...@laposte.net wrote:

 On 18/11/14 18:00, Dave Thibault wrote:

 Owen,

 Thanks for the response.  I have python installed:

 Python 2.7.5 (default, Mar  9 2014, 22:15:05)

 [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin

 Type help, copyright, credits or license for more information.

 and I have the script executable:

 -rwxr-x--x@  1 username  staff  7980 Nov 14 22:41 golden-spiral-0.0.py

 I could just be looking for it in the wrong place.  The documentation
 states that it shows up under Image/Select.  However, I can't find it
 under the Image menu or the select menu.  Please advise.


 The plugin should be made executable, in one of the plugins directories
 (check EditPreferencesFoldersPlugins to see where they are).

 It should be at the bottom of the Select menu of any image window, and
 appear in the plugin and procedure browsers (but you have already checked
 this). You can try to start Gimp from a terminal (if this can be done on
 OSX). If the plugin doesn't register you will likely see an error message
 in the terminal window. A frequent cause of problem is editing the plugin,
 and unknowingly altering the indentation. This causes Python syntax errors
 that make the registration fail (in case of doubt, download a fresh
 version).





 ___
 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




-- 
Peace,
Dave

Thibault Fine Art--inspired by light and perspective
http://thibaultfineart.com
Subscribe to my mailing list for free downloads, special offers, and other
great content! http://thibaultfineart.com/subscribe
___
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 golden-spiral-0.0.py script

2014-11-18 Thread Dave Thibault
Owen,

Thanks for the response.  I have python installed:

Python 2.7.5 (default, Mar  9 2014, 22:15:05)

[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin

Type help, copyright, credits or license for more information.



and I have the script executable:

-rwxr-x--x@  1 username  staff  7980 Nov 14 22:41 golden-spiral-0.0.py

I could just be looking for it in the wrong place.  The documentation
states that it shows up under Image/Select.  However, I can't find it
under the Image menu or the select menu.  Please advise.

Thanks,

Dave

On Mon, Nov 17, 2014 at 4:15 PM, Owen Cook owen.c...@gmx.com wrote:

 I don't know about OSX, but the python script needs python support, you
 have python installed?

 In the unix world, the script needs to be executable, is this the case for
 you?

 Python scripts go in the users plug-ins subdirectory, not in scripts





 Owen

  Sent: Monday, November 17, 2014 at 11:54 AM
  From: Dave Thibault d...@thibaultfineart.com
  To: gimp-user-list@gnome.org
  Subject: [Gimp-user] Question about golden-spiral-0.0.py script
 
  Hi,
 
  I've got GIMP 2.8 on OSX Mavericks and I'm trying to use this script:
 
 
 http://sourceforge.net/projects/gimp-path-tools/files/scripts/golden-spiral-0.0.py/download
 
  I've tried putting it in /Users/myusername/Library/Application
  Support/GIMP/2.8/scripts and in /Users/myusername/Library/Application
  Support/GIMP/2.8/plugins. I have verified that both of those paths are
 set
  in the GIMP Prefeferences/Scripts and /Plug-ins settings.  Either way, I
  get no errors when starting GIMP and I can't find the menu options to use
  the golden spiral in GIMP.  Am I doing something wrong?
 
  Thanks,
  Dave
  ___
  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
 




-- 
Peace,
Dave

Thibault Fine Art--inspired by light and perspective
http://thibaultfineart.com
Subscribe to my mailing list for free downloads, special offers, and other
great content! http://thibaultfineart.com/subscribe
___
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] Question about golden-spiral-0.0.py script

2014-11-18 Thread rich2005
Hi,

I've got GIMP 2.8 on OSX Mavericks and I'm trying to use this script:

http://sourceforge.net/projects/gimp-path-tools/files/scripts/golden-spiral-0.0.py/download

I've tried putting it in /Users/myusername/Library/Application
Support/GIMP/2.8/scripts and in /Users/myusername/Library/Application
Support/GIMP/2.8/plugins. I have verified that both of those paths are
set
in the GIMP Prefeferences/Scripts and /Plug-ins settings.  Either way,
I
get no errors when starting GIMP and I can't find the menu options to
use
the golden spiral in GIMP.  Am I doing something wrong?

Thanks,
Dave

I am sure ofnuts will be along soon

but on a more general basis, applicable for any plug-in.

Have you made the plug-in executable?

After a Gimp restart, does it show in Help - Plugin Browser (enter golden in
the search box)

If it is not there then it is wrong-place/not-working

Working and that tells me it is in the selection menu.

And indeed it is there and works here PCLinuxOS and Gimp 2.8.14

-- 
rich2005 (via www.gimpusers.com/forums)
___
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 golden-spiral-0.0.py script

2014-11-18 Thread Dave Thibault
Rich,

Thanks for the reply.

I have made the plugin executable.  After GIMP restart, I can't find it in
Plugin Browser. If I search for golden all I find is the Golden Rule
Guide that I also installed and it is showing up in GIMP and working
properly.  I don't see the golden spiral at all by searching in the plugin
browser.

That does lead to a different question, though.  Should this be in the
scripts folder or the plugins folder?

Thanks,
Dave


On Tue, Nov 18, 2014 at 1:04 AM, rich2005 for...@gimpusers.com wrote:

 Hi,
 
 I've got GIMP 2.8 on OSX Mavericks and I'm trying to use this script:
 
 
 http://sourceforge.net/projects/gimp-path-tools/files/scripts/golden-spiral-0.0.py/download
 
 I've tried putting it in /Users/myusername/Library/Application
 Support/GIMP/2.8/scripts and in /Users/myusername/Library/Application
 Support/GIMP/2.8/plugins. I have verified that both of those paths are
 set
 in the GIMP Prefeferences/Scripts and /Plug-ins settings.  Either way,
 I
 get no errors when starting GIMP and I can't find the menu options to
 use
 the golden spiral in GIMP.  Am I doing something wrong?
 
 Thanks,
 Dave

 I am sure ofnuts will be along soon

 but on a more general basis, applicable for any plug-in.

 Have you made the plug-in executable?

 After a Gimp restart, does it show in Help - Plugin Browser (enter golden
 in
 the search box)

 If it is not there then it is wrong-place/not-working

 Working and that tells me it is in the selection menu.

 And indeed it is there and works here PCLinuxOS and Gimp 2.8.14

 --
 rich2005 (via www.gimpusers.com/forums)
 ___
 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




-- 
Peace,
Dave

Thibault Fine Art--inspired by light and perspective
http://thibaultfineart.com
Subscribe to my mailing list for free downloads, special offers, and other
great content! http://thibaultfineart.com/subscribe
___
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 golden-spiral-0.0.py script

2014-11-18 Thread Ofnuts

On 18/11/14 18:00, Dave Thibault wrote:

Owen,

Thanks for the response.  I have python installed:

Python 2.7.5 (default, Mar  9 2014, 22:15:05)

[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin

Type help, copyright, credits or license for more information.

and I have the script executable:

-rwxr-x--x@  1 username  staff  7980 Nov 14 22:41 golden-spiral-0.0.py

I could just be looking for it in the wrong place.  The documentation
states that it shows up under Image/Select.  However, I can't find it
under the Image menu or the select menu.  Please advise.


The plugin should be made executable, in one of the plugins directories 
(check EditPreferencesFoldersPlugins to see where they are).


It should be at the bottom of the Select menu of any image window, and 
appear in the plugin and procedure browsers (but you have already 
checked this). You can try to start Gimp from a terminal (if this can be 
done on OSX). If the plugin doesn't register you will likely see an 
error message in the terminal window. A frequent cause of problem is 
editing the plugin, and unknowingly altering the indentation. This 
causes Python syntax errors that make the registration fail (in case of 
doubt, download a fresh version).





___
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] Question about golden-spiral-0.0.py script

2014-11-17 Thread Dave Thibault
Hi,

I've got GIMP 2.8 on OSX Mavericks and I'm trying to use this script:

http://sourceforge.net/projects/gimp-path-tools/files/scripts/golden-spiral-0.0.py/download

I've tried putting it in /Users/myusername/Library/Application
Support/GIMP/2.8/scripts and in /Users/myusername/Library/Application
Support/GIMP/2.8/plugins. I have verified that both of those paths are set
in the GIMP Prefeferences/Scripts and /Plug-ins settings.  Either way, I
get no errors when starting GIMP and I can't find the menu options to use
the golden spiral in GIMP.  Am I doing something wrong?

Thanks,
Dave
___
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 golden-spiral-0.0.py script

2014-11-17 Thread Owen Cook
I don't know about OSX, but the python script needs python support, you have 
python installed?

In the unix world, the script needs to be executable, is this the case for you?

Python scripts go in the users plug-ins subdirectory, not in scripts





Owen

 Sent: Monday, November 17, 2014 at 11:54 AM
 From: Dave Thibault d...@thibaultfineart.com
 To: gimp-user-list@gnome.org
 Subject: [Gimp-user] Question about golden-spiral-0.0.py script

 Hi,
 
 I've got GIMP 2.8 on OSX Mavericks and I'm trying to use this script:
 
 http://sourceforge.net/projects/gimp-path-tools/files/scripts/golden-spiral-0.0.py/download
 
 I've tried putting it in /Users/myusername/Library/Application
 Support/GIMP/2.8/scripts and in /Users/myusername/Library/Application
 Support/GIMP/2.8/plugins. I have verified that both of those paths are set
 in the GIMP Prefeferences/Scripts and /Plug-ins settings.  Either way, I
 get no errors when starting GIMP and I can't find the menu options to use
 the golden spiral in GIMP.  Am I doing something wrong?
 
 Thanks,
 Dave
 ___
 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 bump map location

2013-12-29 Thread gge
Hello,

First of all, thank you very much for this wonderful script. It works great!
I was wondering if there is a simple way to place the watermark in a
different place. Could you please help us?

Thank you!



--
View this message in context: 
http://gimp.1065349.n5.nabble.com/Question-about-bump-map-location-tp40038p41365.html
Sent from the Users mailing list archive at Nabble.com.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about bump map location

2013-09-03 Thread Kevin Brubeck Unhammer
Judy Wilson j...@corozal.com writes:

[...]

 My question: I would like to put a watermark of my logo on images,
 and I can do so with the Map, Bump Map Filter. However, the location
 of the bump map is a problem. At 0 on the X and Y Offset sliders, it
 goes into the upper left hand corner. OK. The problem is the sliders
 only move to -1000, and my images are often larger than that, and I
 want to put the bump map into the lower right hand corner, and the
 sliders will not allow that. Typing in the numbers doesn't work, and
 moving the bump map in the preview with the middle mouse button
 doesn't work. Of course if I make the images smaller I can get it into
 the right hand lower corner, but I want to use the larger image. Any
 solution for this, or do I have to just live with this ... defect(?)
 for now. Thank you!

I added https://bugzilla.gnome.org/show_bug.cgi?id=707354 (I can't
imagine such an arbitrary maximum is intentional?)


-- 
Kevin Brubeck Unhammer

GPG: 0x766AC60C


pgpLaqExBWUOG.pgp
Description: PGP signature
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about bump map location

2013-09-03 Thread Michael Natterer
On Mon, 2013-09-02 at 13:32 -0600, Judy Wilson wrote:
 My question: I would like to put a watermark of my logo on images, and 
 I can do so with the Map, Bump Map Filter. However, the location of the 
 bump map is a problem. At 0 on the X and Y Offset sliders, it goes into 
 the upper left hand corner. OK. The problem is the sliders only move to 
 -1000, and my images are often larger than that, and I want to put the 
 bump map into the lower right hand corner, and the sliders will not 
 allow that. Typing in the numbers doesn't work, and moving the bump map 
 in the preview with the middle mouse button doesn't work. Of course if I 
 make the images smaller I can get it into the right hand lower corner, 
 but I want to use the larger image. Any solution for this, or do I have 
 to just live with this ... defect(?) for now. Thank you!

Hi Judy,

The limits are now -1 and 1, I have no clue how that silly
small limit happened in the first place. Thanks for being a long time
GIMP user! :)

Regards,
--Mitch


commit aa5c186a3dc211fd8c17c55f915edc12a4f658df
Author: Michael Natterer mi...@gimp.org
Date:   Tue Sep 3 16:00:09 2013 +0200

Bug 707354 - Bump Map offsets only go to 1000 regardless of image
size

Allow ranges from -1 to 1, still arbitrary but more
real-world. The scales still go -1000 to 1000, but the spinbuttons
allow for the full range.

(cherry picked from commit af0cfacfb3fdd4308dc28167a8be74e5141fc1eb)

 plug-ins/common/bump-map.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)


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


[Gimp-user] Question about bump map location

2013-09-02 Thread Judy Wilson
First, let me say how much I have appreciated the help I've gotten 
throughout the years from this list! I'm a 70 year old woman living in 
Belize, my husband and I do websites (he's the programmer), I love the 
graphic aspect, though he's good at that, too. We have been open-source 
users and supporters for over 10 years, sponsored Software Freedom Day 
in Belize in 2006 and 2007. We use Ubuntu, GIMP, and Inkscape 
applications, he uses all kinds of programming languages, of course. 
Kudos to everyone contributing to this list and the open source movement.


My question: I would like to put a watermark of my logo on images, and 
I can do so with the Map, Bump Map Filter. However, the location of the 
bump map is a problem. At 0 on the X and Y Offset sliders, it goes into 
the upper left hand corner. OK. The problem is the sliders only move to 
-1000, and my images are often larger than that, and I want to put the 
bump map into the lower right hand corner, and the sliders will not 
allow that. Typing in the numbers doesn't work, and moving the bump map 
in the preview with the middle mouse button doesn't work. Of course if I 
make the images smaller I can get it into the right hand lower corner, 
but I want to use the larger image. Any solution for this, or do I have 
to just live with this ... defect(?) for now. Thank you!


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


Re: [Gimp-user] Question about bump map location

2013-09-02 Thread Jay Smith

On 09/02/2013 03:32 PM, Judy Wilson wrote:

snipped

My question: I would like to put a watermark of my logo on images, and
I can do so with the Map, Bump Map Filter. However, the location of the
bump map is a problem. At 0 on the X and Y Offset sliders, it goes into
the upper left hand corner. OK. The problem is the sliders only move to
-1000, and my images are often larger than that, and I want to put the
bump map into the lower right hand corner, and the sliders will not
allow that. Typing in the numbers doesn't work, and moving the bump map
in the preview with the middle mouse button doesn't work. Of course if I
make the images smaller I can get it into the right hand lower corner,
but I want to use the larger image. Any solution for this, or do I have
to just live with this ... defect(?) for now. Thank you!

Judy Wilson


Judy,

Thanks for all your efforts to support The Movement.  :-)

I can't answer the question you are asking, however, I use a perl script 
that invokes ImageMagick to add watermarks to large quantities of images.


http://www.imagemagick.org

Since I do put my watermark in the upper left corner, I have not paid 
attention to whether ImageMagick can apply the watermark based on the 
position from the lower right corner, but I would guess that it can.


And if the answer to that is no, there is another trick you could try, 
especially if you are using a script to batch process.  First, make your 
watermark image upside down and backwards.  Then rotate each image 180 
degrees, apply the watermark, flatten the image, and rotate it back to 
upright.


Last note: When I batch process to apply watermarks, I always only apply 
to _copies_ of the images as invariably I later need the original 
without watermark for some other use.  (This also prevents destroying 
the original if your batch script does not do as expected.)


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


Re: [Gimp-user] Question about bump map location

2013-09-02 Thread Pat David
Not sure if this will help, but it's one way of easily adding a watermark
if you need to:

http://youtu.be/n4OBn5DJdjk

On Monday, September 2, 2013, Judy Wilson wrote:

 First, let me say how much I have appreciated the help I've gotten
 throughout the years from this list! I'm a 70 year old woman living in
 Belize, my husband and I do websites (he's the programmer), I love the
 graphic aspect, though he's good at that, too. We have been open-source
 users and supporters for over 10 years, sponsored Software Freedom Day in
 Belize in 2006 and 2007. We use Ubuntu, GIMP, and Inkscape applications, he
 uses all kinds of programming languages, of course. Kudos to everyone
 contributing to this list and the open source movement.

 My question: I would like to put a watermark of my logo on images, and I
 can do so with the Map, Bump Map Filter. However, the location of the bump
 map is a problem. At 0 on the X and Y Offset sliders, it goes into the
 upper left hand corner. OK. The problem is the sliders only move to -1000,
 and my images are often larger than that, and I want to put the bump map
 into the lower right hand corner, and the sliders will not allow that.
 Typing in the numbers doesn't work, and moving the bump map in the preview
 with the middle mouse button doesn't work. Of course if I make the images
 smaller I can get it into the right hand lower corner, but I want to use
 the larger image. Any solution for this, or do I have to just live with
 this ... defect(?) for now. Thank you!

 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 https://mail.gnome.org/mailman/listinfo/gimp-user-list



-- 
pat david
http://blog.patdavid.net
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about bump map location

2013-09-02 Thread Gary Aitken
On 09/02/13 13:32, Judy Wilson wrote:
 First, let me say how much I have appreciated the help I've gotten
 throughout the years from this list! I'm a 70 year old woman living
 in Belize, my husband and I do websites (he's the programmer), I love
 the graphic aspect, though he's good at that, too. We have been
 open-source users and supporters for over 10 years, sponsored
 Software Freedom Day in Belize in 2006 and 2007. We use Ubuntu, GIMP,
 and Inkscape applications, he uses all kinds of programming
 languages, of course. Kudos to everyone contributing to this list and
 the open source movement.
 
 My question: I would like to put a watermark of my logo on images,
 and I can do so with the Map, Bump Map Filter. However, the location
 of the bump map is a problem. At 0 on the X and Y Offset sliders, it
 goes into the upper left hand corner. OK. The problem is the sliders
 only move to -1000, and my images are often larger than that, and I
 want to put the bump map into the lower right hand corner, and the
 sliders will not allow that. Typing in the numbers doesn't work, and
 moving the bump map in the preview with the middle mouse button
 doesn't work. Of course if I make the images smaller I can get it
 into the right hand lower corner, but I want to use the larger image.
 Any solution for this, or do I have to just live with this ...
 defect(?) for now. Thank you!

I can't address the bump map issue, but I've attached a script I
recently wrote to add a watermark to an image in the lower right corner.  
I'm sure others have done similar things long ago but I've found it 
useful; it can be used in batch mode or via the ui.  Just stick it in 
your .gimp-2.8/scripts folder.  It will appear under garya on the main 
menu bar; you probably will want to change that label :-) and the
default watermark file name/location.

Gary


; Script-fu (Scheme) script to add a watermark signature to an image
; Some constant names for debugging
;   ORIENTATION-HORIZONTAL=0; ORIENTATION-VERTICAL=1
;   RUN-INTERACTIVE=0; RUN-NONINTERACTIVE=1
;   UTF-8 encoding=0; filename encoding=1
;

; Scale an image relative to another image
; Main application is for insertion of watermark
;   I like copyright text to be 2% to 3% height of image
; Arguments:
;   imgToScale   The image to be scaled
;   img  The image relative to which imgToScale is to be scaled
;   scaleFactor  per cent of img height of the final scaled image
; Returns: the scaled image
; Scale factor is expressed as a percent of the parent image's size

(define (scale-relative imgToScale img scaleFactor)
; (display scale-relative:\n)
; (display (string-append   scaleFactor: (number-string scaleFactor) \n))
  (let* (
(scaledLayer 0)   ; the layer to be 
scaled
(layer 0) ; the layer to 
manipulate

; attributes and drawables from the original image
;(imgLayer (car (gimp-image-get-active-layer img))); layer from the 
original image
(imgHt (car (gimp-image-height img))) ; primary image height
(imgWid (car (gimp-image-width img))) ; primary image width
(imgToScaleWid (car (gimp-image-width imgToScale)))   ; width of image to 
be scaled 
(imgToScaleHt (car (gimp-image-height imgToScale)))   ; height of image to 
be scaled 

; variables needed for scaling
(scaledHt 0)  ; scale image height
(scaledWid 0) ; scale image width
(resultScaleFactor 0) ; scale factor for 
layer to scale

)

; Compute scaled size
; Always scale relative to height
;   scaledHeight = imageHeight * scaleFactor / 100
;   scaleFactor = scaledHeight / imageToScaleHeight

(set! scaledHt (/ (* imgHt scaleFactor) 100))
; (display (string-append   imgToScaleHt: (number-string imgToScaleHt) \n))
; (display (string-append   scaledHt: (number-string scaledHt) \n))
(set! resultScaleFactor (/ scaledHt imgToScaleHt))
; (display (string-append   resultScaleFactor: (number-string 
resultScaleFactor) \n))
(set! scaledWid (* imgToScaleWid resultScaleFactor))
; (display (string-append   imgToScaleWid: (number-string imgToScaleWid) 
\n))
; (display (string-append   scaledWid: (number-string scaledWid) \n))

; set to the best interpolation we can do and scale the image
(gimp-context-set-interpolation 3); set the 
interpolation method to use
(gimp-image-scale imgToScale scaledWid scaledHt)   ; scale the image

 (display   scaledImage:) (print imgToScale)
imgToScale; force the 
return value
  )
)

; Add watermark to an image
;   Arguments:
; Name of file to process (xxx.tif, etc)
; Image to which watermark will be added
; Drawable, unused
; Name of file containing watermark (xxx.png, etc)
;  

Re: [Gimp-user] Question about bump map location

2013-09-02 Thread Gary Aitken
On 09/02/13 13:32, Judy Wilson wrote:
 First, let me say how much I have appreciated the help I've gotten
 throughout the years from this list! I'm a 70 year old woman living
 in Belize, my husband and I do websites (he's the programmer), I love
 the graphic aspect, though he's good at that, too. We have been
 open-source users and supporters for over 10 years, sponsored
 Software Freedom Day in Belize in 2006 and 2007. We use Ubuntu, GIMP,
 and Inkscape applications, he uses all kinds of programming
 languages, of course. Kudos to everyone contributing to this list and
 the open source movement.
 
 My question: I would like to put a watermark of my logo on images,
 and I can do so with the Map, Bump Map Filter. However, the location
 of the bump map is a problem. At 0 on the X and Y Offset sliders, it
 goes into the upper left hand corner. OK. The problem is the sliders
 only move to -1000, and my images are often larger than that, and I
 want to put the bump map into the lower right hand corner, and the
 sliders will not allow that. Typing in the numbers doesn't work, and
 moving the bump map in the preview with the middle mouse button
 doesn't work. Of course if I make the images smaller I can get it
 into the right hand lower corner, but I want to use the larger image.
 Any solution for this, or do I have to just live with this ...
 defect(?) for now. Thank you!

I can't address the bump map issue, but I've attached a script I
recently wrote to add a watermark to an image in the lower right corner.  
I'm sure others have done similar things long ago but I've found it 
useful; it can be used in batch mode or via the ui.  Just stick it in 
your .gimp-2.8/scripts folder.  It will appear under garya on the main 
menu bar; you probably will want to change that label :-) and the
default watermark file name/location.

Gary

; Script-fu (Scheme) script to add a watermark signature to an image
; Some constant names for debugging
;   ORIENTATION-HORIZONTAL=0; ORIENTATION-VERTICAL=1
;   RUN-INTERACTIVE=0; RUN-NONINTERACTIVE=1
;   UTF-8 encoding=0; filename encoding=1
;

; Scale an image relative to another image
; Main application is for insertion of watermark
;   I like copyright text to be 2% to 3% height of image
; Arguments:
;   imgToScale   The image to be scaled
;   img  The image relative to which imgToScale is to be scaled
;   scaleFactor  per cent of img height of the final scaled image
; Returns: the scaled image
; Scale factor is expressed as a percent of the parent image's size

(define (scale-relative imgToScale img scaleFactor)
; (display scale-relative:\n)
; (display (string-append   scaleFactor: (number-string scaleFactor) \n))
  (let* (
(scaledLayer 0)   ; the layer to be 
scaled
(layer 0) ; the layer to 
manipulate

; attributes and drawables from the original image
;(imgLayer (car (gimp-image-get-active-layer img))); layer from the 
original image
(imgHt (car (gimp-image-height img))) ; primary image height
(imgWid (car (gimp-image-width img))) ; primary image width
(imgToScaleWid (car (gimp-image-width imgToScale)))   ; width of image to 
be scaled 
(imgToScaleHt (car (gimp-image-height imgToScale)))   ; height of image to 
be scaled 

; variables needed for scaling
(scaledHt 0)  ; scale image height
(scaledWid 0) ; scale image width
(resultScaleFactor 0) ; scale factor for 
layer to scale

)

; Compute scaled size
; Always scale relative to height
;   scaledHeight = imageHeight * scaleFactor / 100
;   scaleFactor = scaledHeight / imageToScaleHeight

(set! scaledHt (/ (* imgHt scaleFactor) 100))
; (display (string-append   imgToScaleHt: (number-string imgToScaleHt) \n))
; (display (string-append   scaledHt: (number-string scaledHt) \n))
(set! resultScaleFactor (/ scaledHt imgToScaleHt))
; (display (string-append   resultScaleFactor: (number-string 
resultScaleFactor) \n))
(set! scaledWid (* imgToScaleWid resultScaleFactor))
; (display (string-append   imgToScaleWid: (number-string imgToScaleWid) 
\n))
; (display (string-append   scaledWid: (number-string scaledWid) \n))

; set to the best interpolation we can do and scale the image
(gimp-context-set-interpolation 3); set the 
interpolation method to use
(gimp-image-scale imgToScale scaledWid scaledHt)   ; scale the image

 (display   scaledImage:) (print imgToScale)
imgToScale; force the 
return value
  )
)

; Add watermark to an image
;   Arguments:
; Name of file to process (xxx.tif, etc)
; Image to which watermark will be added
; Drawable, unused
; Name of file containing watermark (xxx.png, etc)
;   

Re: [Gimp-user] Question about bump map location

2013-09-02 Thread Partha Bagchi
Well, if we are suggesting alternatives, perhaps you may want to consider
adapting this:
http://farbspiel-photo.com/learn/hdr-cookbook/creative-watermarking

:)



On Mon, Sep 2, 2013 at 6:25 PM, Gary Aitken a...@dreamchaser.org wrote:

 On 09/02/13 13:32, Judy Wilson wrote:
  First, let me say how much I have appreciated the help I've gotten
  throughout the years from this list! I'm a 70 year old woman living
  in Belize, my husband and I do websites (he's the programmer), I love
  the graphic aspect, though he's good at that, too. We have been
  open-source users and supporters for over 10 years, sponsored
  Software Freedom Day in Belize in 2006 and 2007. We use Ubuntu, GIMP,
  and Inkscape applications, he uses all kinds of programming
  languages, of course. Kudos to everyone contributing to this list and
  the open source movement.
 
  My question: I would like to put a watermark of my logo on images,
  and I can do so with the Map, Bump Map Filter. However, the location
  of the bump map is a problem. At 0 on the X and Y Offset sliders, it
  goes into the upper left hand corner. OK. The problem is the sliders
  only move to -1000, and my images are often larger than that, and I
  want to put the bump map into the lower right hand corner, and the
  sliders will not allow that. Typing in the numbers doesn't work, and
  moving the bump map in the preview with the middle mouse button
  doesn't work. Of course if I make the images smaller I can get it
  into the right hand lower corner, but I want to use the larger image.
  Any solution for this, or do I have to just live with this ...
  defect(?) for now. Thank you!

 I can't address the bump map issue, but I've attached a script I
 recently wrote to add a watermark to an image in the lower right corner.
 I'm sure others have done similar things long ago but I've found it
 useful; it can be used in batch mode or via the ui.  Just stick it in
 your .gimp-2.8/scripts folder.  It will appear under garya on the main
 menu bar; you probably will want to change that label :-) and the
 default watermark file name/location.

 Gary


 ___
 gimp-user-list mailing list
 List address:gimp-user-list@gnome.org
 List membership: https://mail.gnome.org/mailman/listinfo/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


[Gimp-user] Question about a plug in for animated cursors

2013-08-25 Thread christopher.draper93
I came across this http://www.gimptalk.com/index.php?showtopic=27281 which
I got from registry.gimp.org and want to know if anyone knows if that
download is safe or no?
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about a plug in for animated cursors

2013-08-25 Thread Owen

 I came across this http://www.gimptalk.com/index.php?showtopic=27281
 which
 I got from registry.gimp.org and want to know if anyone knows if that
 download is safe or no?


If you have a linux distro, download that file, unzip and run it
through strings

Looks ok to me, but then I don't use Windows



-- 
Owen

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


[Gimp-user] Question On Gimp

2013-08-05 Thread Michael Tidwell
Okay I am no computer wiz!  I just want to take an image of a military dog tag 
and an image of a sniper and make the sniper image fit the shape of the dog tag 
and for the life of me can't figure out if Gimp even does this.  Can you please 
advise me if it does and how?
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] question about scrambing images in gimp

2013-05-31 Thread Kevin Brubeck Unhammer
KATHLEEN LORALEE KELLER kl...@psu.edu writes:

 Hi All,
 I'm new to gimp, but wanted to know if there's a way we can scramble
 images using the program. We are trying to make images unrecognizable
 through scrambling (while still retaining the image colors,etc).

Note, if this is for any sort of privacy purposes, that most such
scrambling methods can to some extent be undone. A warped face can be
unwarped, blurs can be unblurred, etc. If the purpose is to hide
someone's face or similar, fill a circle with some colour instead. Or if
you want to keep similar colours as the rest of the image, use
Resynthesizer to grab colours from the surrounding area.


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


[Gimp-user] question about scrambing images in gimp

2013-05-29 Thread KATHLEEN LORALEE KELLER
Hi All,
I'm new to gimp, but wanted to know if there's a way we can scramble images 
using the program. We are trying to make images unrecognizable through 
scrambling (while still retaining the image colors,etc).

Thanks in Advance!
Kathleen




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


Re: [Gimp-user] question about scrambing images in gimp

2013-05-29 Thread Owen

 Hi All,
 I'm new to gimp, but wanted to know if there's a way we can scramble
 images using the program. We are trying to make images unrecognizable
 through scrambling (while still retaining the image colors,etc).




Not sure what you really want to do.

1. There is no Scramble Menu item in gimp

2. Images can be scrambled/descrambled with ImageMagick
   (convert with the encipher/decipher options)

3. There are other scramblers around, but none as a plug-in for gimp
afaict.

-- 
Owen

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


Re: [Gimp-user] question about scrambing images in gimp

2013-05-29 Thread Steve Kinney
On 05/29/2013 05:45 PM, KATHLEEN LORALEE KELLER wrote:
 Hi All,
 I'm new to gimp, but wanted to know if there's a way we can scramble images 
 using the program. We are trying to make images unrecognizable through 
 scrambling (while still retaining the image colors,etc).

Hey Kathleen,

There's so many ways... What to do depends on what you want the
output to look like, and the scale of recognizable elements you
want to make unrecognizable.  Things to play with include:

Filters  G'Mic  Arrays and Frames  (various array effects)

Filters  G'Mic  Deformations  (various deformation effects)

Filters  Map  Resynthesize

Filters  Artistic  Glass Tile (and others)

Filters  Distorts  Mosaic (and others)

And more.  Explore, play around.

:o)

Steve
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about XCF files

2013-04-30 Thread Ofnuts

On 04/29/2013 07:14 PM, Alexandre Prokoudine wrote:

On Mon, Apr 29, 2013 at 9:06 PM, Ofnuts wrote:


Uh? The only edits that don't seem to change the text status of a text
layer are those done using the text tool itself (and the Move tool, of
course)

You can paint over a text layer, and that will change its status. But
if you saved that as XCF and then reload, attempting to edit such a
layer will give you a choice: throw away all the painting and edit the
text, or not edit as text.



Ah, OK. Good to know :)
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about XCF files

2013-04-29 Thread Tom Williams
On 04/28/2013 06:03 PM, Alexandre Prokoudine wrote:
 On Mon, Apr 29, 2013 at 1:00 AM, Tom Williams wrote:

 Anyway, when I open this XCF file in Gimp 2.8.4, it opens fine and I can see
 the layers fine in the layers dialog window. However, when I use the text
 tool to try to edit one of the text layers, I'm unable to do so and the text
 tool doesn't seem to recognize the text layer as a text layer.
 It's a stupid question, but are you quite sure you didn't change text
 layers before saving? Some action like changing the layer size would
 do that. In that case in the Layers dialog you'd see the thumbnail of
 the text layer instead of the stock icon with a T character.


Thanks for the reply.  Well, you were right about the text layer
change.  When I look at my XCF file, the text layers have names like
New Layer instead of the actual text in the layer.  Plus, I see a
thumbnail of the text layer instead of the stock icon you mention.  I
most likely made the text layer the same size as the image and then
saved the file.

Thanks!

Peace...

Tom

-- 
/When we dance, you have a way with me,
Stay with me... Sway with me.../
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about XCF files

2013-04-29 Thread Richard Gitschlag

 Date: Mon, 29 Apr 2013 05:03:52 +0400
 From: alexandre.prokoud...@gmail.com
 To: gimp-user-list@gnome.org
 Subject: Re: [Gimp-user] Question about XCF files
 
 On Mon, Apr 29, 2013 at 1:00 AM, Tom Williams wrote:
 
  Anyway, when I open this XCF file in Gimp 2.8.4, it opens fine and I can see
  the layers fine in the layers dialog window. However, when I use the text
  tool to try to edit one of the text layers, I'm unable to do so and the text
  tool doesn't seem to recognize the text layer as a text layer.
 
 It's a stupid question, but are you quite sure you didn't change text
 layers before saving? Some action like changing the layer size would
 do that. In that case in the Layers dialog you'd see the thumbnail of
 the text layer instead of the stock icon with a T character.
 
 Alexandre Prokoudine
 http://libregraphicsworld.org
 ___
 gimp-user-list mailing list
 gimp-user-list@gnome.org
 https://mail.gnome.org/mailman/listinfo/gimp-user-list

Okay, question - if you can make tool edits to a text layer (filters, 
brushstrokes, etc.) and it will retain its status as a text layer (albeit with 
some modifications, which GIMP will warn you about if you try to edit the text 
later), why do other operations (like changing layer size) turn it into a 
normal (non-text) layer?

-- Stratadrake
strata_ran...@hotmail.com

Numbers may not lie, but neither do they tell the whole truth.


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


Re: [Gimp-user] Question about XCF files

2013-04-29 Thread Ofnuts

On 04/29/2013 06:03 PM, Richard Gitschlag wrote:


Okay, question - if you can make tool edits to a text layer (filters, 
brushstrokes, etc.) and it will retain its status as a text layer 
(albeit with some modifications, which GIMP will warn you about if you 
try to edit the text later), why do other operations (like changing 
layer size) turn it into a normal (non-text) layer?




Uh? The only edits that don't seem to change the text status of a text 
layer are those done using the text tool itself (and the Move tool, of 
course)
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about XCF files

2013-04-29 Thread Alexandre Prokoudine
On Mon, Apr 29, 2013 at 9:06 PM, Ofnuts wrote:

 Uh? The only edits that don't seem to change the text status of a text
 layer are those done using the text tool itself (and the Move tool, of
 course)

You can paint over a text layer, and that will change its status. But
if you saved that as XCF and then reload, attempting to edit such a
layer will give you a choice: throw away all the painting and edit the
text, or not edit as text.

Alexandre Prokoudine
http://libregraphicsworld.org
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about XCF files

2013-04-28 Thread Alexandre Prokoudine
On Mon, Apr 29, 2013 at 1:00 AM, Tom Williams wrote:

 Anyway, when I open this XCF file in Gimp 2.8.4, it opens fine and I can see
 the layers fine in the layers dialog window. However, when I use the text
 tool to try to edit one of the text layers, I'm unable to do so and the text
 tool doesn't seem to recognize the text layer as a text layer.

It's a stupid question, but are you quite sure you didn't change text
layers before saving? Some action like changing the layer size would
do that. In that case in the Layers dialog you'd see the thumbnail of
the text layer instead of the stock icon with a T character.

Alexandre Prokoudine
http://libregraphicsworld.org
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about the new sliders

2012-12-05 Thread Gary Aitken
On 12/04/12 00:28, Jeffery Small wrote:
 shaunak for...@gimpusers.com writes:
 
 I notice that there are two cursors that appear while using the new
 sliders.  One is an up arrow that allows me to quickly change from 0 -
 100 (Like the old slider) and another is the double side arrow cursor
 that makes only small changes.  I can see how this is useful but I cant
 seem to figure out how to get one to show over the other.
 
 The fast moving (up-arrow) slider appears when you have your mouse in the
 top half of the slider area.  The slow moving (horizontal arrows) appear
 when you are in the lower half of the area.  It is new behavior to learn,
 but it will become second nature eventually.

On freebsd, I get both arrows as described, but *both* of them do the fine-
grained increments.  Is there a setting that controls this, or is this a
bug?

Gary
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about the new sliders

2012-12-05 Thread Alexandre Prokoudine
On Wed, Dec 5, 2012 at 10:32 PM, Gary Aitken wrote:

 The fast moving (up-arrow) slider appears when you have your mouse in the
 top half of the slider area.  The slow moving (horizontal arrows) appear
 when you are in the lower half of the area.  It is new behavior to learn,
 but it will become second nature eventually.

 On freebsd, I get both arrows as described, but *both* of them do the fine-
 grained increments.  Is there a setting that controls this, or is this a
 bug?

Definitely a bug.

Alexandre Prokoudine
http://libregraphicsworld.org
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about the new sliders

2012-12-05 Thread Patrick Shanahan
* Liam R E Quin l...@holoweb.net [12-05-12 13:48]:
 On Wed, 2012-12-05 at 11:32 -0700, Gary Aitken wrote:
  On 12/04/12 00:28, Jeffery Small wrote:
 
   The fast moving (up-arrow) slider appears when you have your mouse in the
   top half of the slider area.  The slow moving (horizontal arrows) appear
   when you are in the lower half of the area.  It is new behavior to learn,
   but it will become second nature eventually.
  
  On freebsd, I get both arrows as described, but *both* of them do the fine-
  grained increments.  Is there a setting that controls this, or is this a
  bug?
 
 To be clear, see the enclosed image. The slider with the word Threshold
 on it is an example.
 
 Hovering the mouse pointer in the upper half, e.g. over the word
 Threshold, changes the mouse pointer to an upwards pointing arrow;
 clicking in the bar when the mouse pointer displays the upwards arrow
 will set the amount directly: clicking on the left of the top-half of
 the bar will set Threshold to 0, clicking on the right (over the 81.5 in
 this example) sets it to around the maximum of 255, clicking in the
 middle (e.g.just under the g of sample merged) sets it to about
 half, or 127. Dragging in this mode will drag the edge of the shaded bar
 directly.
 
 When the mouse pointer is in the lower half of the bar, e.g. in the
 shaded area under the word Threshold, the mouse pointer is shown with a
 cursor made of a horizontal arrow pointing both left and right. In this
 mode, dragging in the bottom half of the area will select the number
 (81.5 in the image I attached to this message) and the number will
 change as you drag.
 
 In addition, there are two small arrows to the right of the number, and
 clicking on those will increase or reduce the number shown. But those
 are not the arrows being discussed in this thread :-)

I would have expected the mouse wheel to act the same but it increments/
decrements at 1% intervals in both areas, upper/lower.


-- 
(paka)Patrick Shanahan   Plainfield, Indiana, USA  HOG # US1244711
http://wahoo.no-ip.orgPhoto Album: http://wahoo.no-ip.org/gallery2
http://en.opensuse.org   openSUSE Community Member
Registered Linux User #207535@ http://linuxcounter.net
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about the new sliders

2012-12-05 Thread Gary Aitken
On 12/05/12 11:45, Liam R E Quin wrote:
 On Wed, 2012-12-05 at 11:32 -0700, Gary Aitken wrote:
 On 12/04/12 00:28, Jeffery Small wrote:
 
 The fast moving (up-arrow) slider appears when you have your mouse in the
 top half of the slider area.  The slow moving (horizontal arrows) appear
 when you are in the lower half of the area.  It is new behavior to learn,
 but it will become second nature eventually.

 On freebsd, I get both arrows as described, but *both* of them do the fine-
 grained increments.  Is there a setting that controls this, or is this a
 bug?
 
 To be clear, see the enclosed image. The slider with the word Threshold
 on it is an example.
 
 Hovering the mouse pointer in the upper half, e.g. over the word
 Threshold, changes the mouse pointer to an upwards pointing arrow;
 clicking in the bar when the mouse pointer displays the upwards arrow
 will set the amount directly: clicking on the left of the top-half of
 the bar will set Threshold to 0, clicking on the right (over the 81.5 in
 this example) sets it to around the maximum of 255, clicking in the
 middle (e.g.just under the g of sample merged) sets it to about
 half, or 127. Dragging in this mode will drag the edge of the shaded bar
 directly.
 
 When the mouse pointer is in the lower half of the bar, e.g. in the
 shaded area under the word Threshold, the mouse pointer is shown with a
 cursor made of a horizontal arrow pointing both left and right. In this
 mode, dragging in the bottom half of the area will select the number
 (81.5 in the image I attached to this message) and the number will
 change as you drag.

The behavior I am seeing under freebsd is as follows:

In the upper half, I get the up-arrow mouse pointer.  Pressing and dragging 
that up-arrow mouse pointer changes the value in gross, non-integral increments.
When moved from the extreme left to the extreme right, the range covered is
large -- If I have the paintbrush tool options up, the size ranges from 1.00
at the extreme left to 1074.55 at the extreme right, although it may be dragged
clear across the screen to get much larger values (9491.50 at my right screen
limit in this case.  Hmmm...  If I test the fuzzy select tool as in your image, 
it goes from 0.0 at the extreme left to 255.0 at the extreme right, where it is 
clamped at that maximum value -- dragging further across the display causes no 
further increase.  

In the lower half, I get the left-right mouse pointer.  Pressing and dragging
that left-right mouse pointer changes the value in small, non-integral 
increments.
Depending on what the current value is, the possible range varies.  If I type
in the value 500 to set the value, then grab at the approximate location of the
vertical dividing line between the grey and white areas, I get a range of approx
448.56 to 564.11, but if dragged clear across the display it will go up to
approx 1400.

So two thoughts:

1.  Should the integral behavior I am seeing with the up-arrow on the threshold
for fuzzy select be going by tenths, or by whole integers?

2.  It looks like the bug may be tool-related.

Gary
___
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Question about the new sliders

2012-12-05 Thread Liam R E Quin
On Wed, 2012-12-05 at 12:38 -0700, Gary Aitken wrote:

 So two thoughts:
 
 1.  Should the integral behavior I am seeing with the up-arrow on the 
 threshold
 for fuzzy select be going by tenths, or by whole integers?

Neither, it depends on the width of the toolbox.

It should go up or down by
   distance you drag as a percentage of the max value, times max value
E.g. when the up arrow is one third the way along from the left of the
scrollbar-thingy, clicking (or dragging at that point, it's the same)
gives you one third of the maximum value.

So, it's supposed to work as it does, I think.

 2.  It looks like the bug may be tool-related.

What exactly are you saying is a bug? I'm not saying GIMP is
bug-free :-) just trying to see if in fact it's a problem with how to
use these controls not being obvious, or whether your gimp is behaving
different from mine, or whether all the gimps in the world are
misbehaving (always a possibility, especially near a full moon).

Thanks,

Liam


-- 
Liam Quin - XML Activity Lead, W3C, http://www.w3.org/People/Quin/
Pictures from old books: http://fromoldbooks.org/
Ankh: irc.sorcery.net irc.gnome.org freenode/#xml

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


  1   2   >