Re: [Gimp-user] New mailing list

2022-10-23 Thread Kevin Cozens

On 2022-10-23 10:37, Bret Busby via gimp-user-list wrote:

For anyone who is interested - see
https://groups.io/g/gimp-users


I looked at the page linked to above. FYI, the project hasn't been called 
"The GIMP" in quite some time. It is now just referred to as GIMP.


Thanks for setting up the list. I suspect the 100 user limit will be reached 
rather quickly.


--
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 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] script-fu question

2021-10-19 Thread Kevin Cozens

On 2021-10-16 7:56 a.m., att80 att.net wrote:

1. I obtain the following warning:
    (/usr/lib64/gimp/2.0/plug-ins/script-fu/script-fu) is installing procedure 
"script-fu-apply-grid2" with a full menu path "/Script-Fu/Muntins" as 
menu label,
    this deprecated and will be an error in GIMP 3.0    I see other 
posts regarding this warming but no guidance on what the current practice is to 
define a menu label.


The script name and full menu path goes in to a script-fu-menu-register 
call. It has been that way since GIMP 2.4, IIRC. You can see examples of it 
in any of the scripts that are shipped with GIMP. It is also mentioned in 
the page at https://static.gimp.org/tutorials/Basic_Scheme/



2. I get the following message when I close gimp after running the script:
         eEeek! 1 GeglBuffers leaked
  I assume I have an image still active based upon google searching.  I 
have created two images (image and image1).  When I use gimp-image-delete, one 
is deleted and I get an error indicating that it does not exist. [snip]
   (gimp-display-new image)


I didn't go through the script in detail as it was rather long. I did notice 
the above. You are creating a new display but did not save the image ID. You 
need to pay attention to functions that return a value and do something with 
the return values.


--
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] Script-fu in GIMP - and batch processing.

2021-06-09 Thread Kevin Cozens

On 2021-06-09 11:22 a.m., ludo0...@dbmail.com wrote:

(let* ((filename (car filelist))
   (filenamenew (string-append (car filelist) "-new")) ; as well as 
(filenamenew (string-append filename "-new"))
   (image (car (gimp-file-load RUN-NONINTERACTIVE filename 
filename)))
   (drawable (car (gimp-image-get-active-layer image
  (plug-in-unsharp-mask RUN-NONINTERACTIVE image drawable radius 
amount threshold)
  (gimp-file-save RUN-NONINTERACTIVE image drawable filenamenew 
filenamenew)

[snip]

calling the programme with this command:

gimp -i -b '(batch-unsharp-mask "*.JPG" 5.0 0.5 0)' -b '(gimp-quit 0)'

Unfortunately I did not have the expected success, as I got this result:

batch command experienced an execution error: Error: Procedure execution of 
gimp-file-save failed: unknown file type


If the first entry in the list is "somefile.JPG" what you have above will 
attempt to save out a new version with the name "somefile.JPG-new".


What you need to do is get the root filename "somefile" and append 
"-new.JPG" to create the new filename of "somefile-new.JPG".


The simplest way to handle the situation is to read the files from one 
directory and save the modified version to another. The not so easy method 
is to split the string on the . in the filename in to "simefile" and ".JPG" 
so you can create a string with the new name for the modified file.


--
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] Script-fu in GIMP - and batch processing.

2021-05-30 Thread Kevin Cozens

On 2021-05-15 11:45 a.m., ludo0...@dbmail.com wrote:

Then I tried with this:

[snip]

          (filenamenew (+ "(car filelist)" "-new"))

[snip]

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


The problem with that line is that you are passing two strings to + instead 
of passing numbers to it. The + symbol means add two numbers together. What 
you want is string concatenation.


Try the following:
(filenamenew (string-append (car filelist) "-new"))

--
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] Rescuing old color negatives

2021-04-19 Thread Kevin Cozens

On 2021-04-19 6:05 p.m., Rick Kline wrote:

Here’s some info on Negative Darkroom that Kevin Cozens mentioned. It’s more of 
an outline than a help article, but thought I’d share nonetheless.


Just for the record, it was Alexandre Prokoudine that mentioned Negative 
Darkroom.


Thanks for the link. I will be having a look at that plug-in (if I find it 
is part of the version of GIMP I have built). Not sure if it will help with 
positive slides but worth a look at it all the same. I still have to scan 
them all first so that is the first big job.


--
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] Rescuing old color negatives

2021-04-19 Thread Kevin Cozens

On 2021-04-19 7:24 a.m., William wrote:

I tried the invert function and it is not doing what I want to do.

I want to rescue old color negative 35mm film strips by inverting them to a 
color positive that I can print on a color laser printer.

The negatives have an orange cast which inverts to monochrome blue.
Restoring old negatives involves more than just a colour inversion. The 
colour balance is likely to be off. I have 400 colour slides to scan and 
restore that date back to the last 60s to mid-70's. I know the colour 
balance is off as the red has faded over time. I don't yet know about any 
changes in brightness and contrast.


One other (non-GIMP) approach to fixing slides that you may be able to adapt 
to negatives by adding a colour inversion step can be found at:

  http://www.lionhouse.plus.com/

I haven't tried it yet but I'm thinking about it. It was mentioned in this 
mailing list some time ago.


--
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] How to get a lighter neutral tone with gimp

2021-02-22 Thread Kevin Payne via gimp-user-list
>From: gimp-user-list  on behalf of M.R.P. 
>zensky via gimp-user-list l...@gnome.org>
>Sent: 21 February 2021 21:06
>To: gimp-user-list@gnome.org 
>Subject: [Gimp-user] How to get a lighter neutral tone with gimp 
 
>Hello I am wanting to change the gimp default background to a lighter color 
>that is more natural. I did not care for the >default themes. What are my 
>options?

Creating your own theme is possible.

Here's an example of the mid-grey theme I created for myself: 
https://imgur.com/a/Zs3m8uZ
you're welcome to a copy of it.

I've modified one of the supplied themes, mostly separating out the colour 
definitions to make it easier to modify, although several of the UI elements 
are defined by images which need to be mangled manually.

Kevin
___
gimp-user-list mailing list
List address:gimp-user-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] Citation

2021-01-11 Thread Kevin Cozens

On 2021-01-11 6:25 p.m., Julian Correa via gimp-user-list wrote:

I'm hoping I'm going this right as I'm not used to this mean of server
communication. How did I cite my use of gimp in a formal scientific journal?


There aren't any particular rules about it. I would start by referring to 
the program as GIMP and not gimp, then the version number of the program you 
were using. Saying "v2.10" or "version 2.10" should suffice. It would also 
be nice if you included a link back to the official web site.


--
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] Opening uncompressed NASA image files in GIMP

2020-12-07 Thread Kevin Cozens

On 2020-12-04 10:31 p.m., Rick Kline wrote:
ls -l results in -rw-r--r--@ 1 rickklinestaff179736 Dec2 23:12 
../pds-2.4.116.tar.gz


I imagine there should be an x in there somewhere.


The pds-2.4.116.tar.gz is an archive containing one or more (compressed) 
files in it. It is not an executable file but it might contain executable 
files. Not seeing an x in the file permissions is expected.


--
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] Opening uncompressed NASA image files in GIMP

2020-12-03 Thread Kevin Cozens

On 2020-12-03 7:22 p.m., Rick Kline wrote:
The image is a closeup of a scorched portion of the Mars Rover Opportunity’s 
heat shield that was burned during its trip through the Martian atmosphere.


ok, ty. That explains why I was seeing what looked like a honeycomb in part 
of the image.


Thanks for the info. I’ll try to get a working plugin now that I’ve found 
the plugin directory at

rickkline/Library/Application Support/GIMP/2.10/plug-ins


FYI, I downloaded the PDS plug-in source code from:
http://areo.info/gimp/gimp-2.8/pds-2.4.116.tar.gz

I tried to build it for use with the 2.99 (development) version of GIMP. 
There were errors in the pds.c file which lead me to believe the way that 
plug-ins tie in to GIMP has changed. I don't have time right now to work out 
what changes are required to fix the compile errors.



Do I need to use the cp command or can I copy it in Finder?


That's a question for a Mac user.

--
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] Opening uncompressed NASA image files in GIMP

2020-12-03 Thread Kevin Cozens

On 2020-12-03 12:24 a.m., Rick Kline wrote:

Like magic: changed file type to .data
GIMP opens with width, height, offset (which I ignore, because I can’t find a 
proper header descriptor) and image type.
Set height and width to 1024 and 1024, file type to Gray unsigned 16-bit Little 
Endian, and it opens as desired.


I downloaded the source for the 2.4.116 version of the PDS plug-in for GIMP. 
To build it for Linux (I don't have access to a Mac) I needed to comment out 
the include of the gimpcompat.h in the pds.c file.


I told gimp 2.10 to load the 1p157746813eff40b8p2363l3m1.img that you 
mentioned as a sample. It loaded the image up right away without asking me 
for any information. I did not have to change the file selection or tell 
GIMP what type of file I'm loading.


I have no idea what I'm looking at in the sample image but the plug-in 
works. What I have found is that GIMP 2.10 hangs when trying to view the 
image properties.


FYI, in the pds.c file that is in version 2.4.116 of the plug-in it says it 
"Loads files of the NASA PDS image format" with supported file extensions: 
img, imq, pds, edr, bb1, bb2, bb3, bb4, ir1, ir2, ir3, n07, n15, sur, sun, 
red, grn, blu, sgr, vio, qub, or lbl.


--
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] Recommendation on GIMP

2020-05-28 Thread Kevin Cozens

On 2020-05-28 10:54 a.m., Alexandre Prokoudine via gimp-user-list wrote:

What if I told you that we don't keep any of that a secret and
frequently write about it on the website as well as on Facebook and
Twitter?


I think you forgot to include the mailing list(s) as another source of the 
information posted to the three locations you mention. I know I rarely look 
at the website and I don't use Facebook or Twitter. The information should 
be going out on the developer mailing list and occasionally on the user 
list. Not all the (early) information would be of interest to the user 
community at large.


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


[Gimp-user] Lost icons

2020-04-20 Thread Kevin Cook via gimp-user-list
I have just downloaded the new download and found that half of my tools
have gone missing.  Namely enlarge, rotate, alignment and perspective on
the left hand side of the program.  I am not well blessed in using Gimp and
these toolss that are missing are some that I use most.  That is along with
clone, text and selecting tools.

So I would like to know how I can get them back.  Please be aware that I am
60 years old and have a disability so make your instructions about sorting
this matter as simply as you can.

I await your reply inanticipation.

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


Re: [Gimp-user] Gimp version

2020-04-18 Thread Kevin Cozens

On 2020-04-18 3:26 p.m., Carusoswi wrote:

When I check the 'about' menu item, I see that I am running Gimp 2.10.18.
When I check Ubuntu's software area, it lists Gimp 2.10.8-2.  I assume that is
an old version, but wonder why it would be there instead of 2.10.18.


Distros often have versions of software that are older than what may be 
available from the official site for a given program. They do it for any 
number of reasons. Some distros prefer to use only what they consider tried 
and tested software. Other distros provide software versions that are closer 
to the latest. Those distros can be for the more "adventurous types" or 
those that need to be running close to the current releases of software.


You have some options. You can build the latest version of GIMP yourself but 
if you aren't used to building software it is not a trivial task to do it 
the first time. You can for a PPA for GIMP. That will let you install and 
update GIMP the same way you install other packages on your machine. The 
other option is to check the GIMP website for a downloadable file that will 
give you the latest version available. If you use the latter option it will 
likely be up to you to keep the program up to date.


--
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] Finding the Correct Font

2020-02-28 Thread Kevin Cozens

On 2020-02-28 9:00 p.m., james81 wrote:

I have taken on the task of finishing a previously started effort by another
person. That person is gone and I have not been able to determine the font he
used.
Is there any way to determine the font?


If the image you are working on was created by GIMP the name of the font 
will be in the .xcf file. Short of that, you can use websites such as 
identifont.com or https://www.myfonts.com/WhatTheFont/ to get an idea of the 
font used by telling those sites about characteristics of the characters in 
the image.


--
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] Cahnge text in image

2020-02-15 Thread Kevin Cozens

On 2020-02-15 11:19 a.m., Liam R E Quin wrote:
> On Sat, 2020-02-15 at 10:07 -0600, Guy Stalnaker via gimp-user-list
> wrote:
>>
>> 2. You can NOT tell what fonts were used
>
> There's a fairly good font identification program for Android - Find My
> Font.

You don't need an app to attempt font identification. There are multiple 
websites available online that will attempt to identify a font for you given 
a sample image. There is at least one site that attempts to identify a font 
based on you telling it about various features of characters in the font.


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

2019-12-11 Thread Kevin Cozens

On 2019-12-11 11:53 a.m., Epick wrote:

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


I think you could also quickly make up a shell script to use ImageMagick to 
put numbers on the tickets.


--
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] New image too large?

2019-07-11 Thread Kevin Cozens

On 2019-07-11 8:12 a.m., rich404 wrote:

I have seen horror stories about work lost. Sometimes wonder though. A hurried
save - close Gimp - shut down.  When saving there is a progress indication
bottom of the main window. Give Gimp time to Save.


I would expect GIMP to delay program exit until any save that is in progress 
has completed.


--
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] How to find midway

2019-06-21 Thread Kevin Cozens

On 2019-06-21 9:46 p.m., Synecdoche wrote:

I'm looking for creating a selection that is halfway between two lines. This is
easiest to explain by reference to an example. In the attached image, I want to
create a selection that is halfway inbetween the outer and image layer of the
green image (i.e. halfway between the green/blue border and the red/green
border). Spent way too long trying to figure it out. Help!


Try the following:
- select by colour
- Grow or shrink the selection multiple times counting the number of steps
  it took before the selection got to the other colour.
- Shrink or grow the selection half the number of steps

It may not be the fastest method but it should work.

--
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] Editing/replacing text on .xcf image

2019-06-09 Thread Kevin Cozens

On 2019-06-09 7:10 p.m., Rich Shepard wrote:

I have a single-layer image (in .xcf format) and I want to change some of
the text on the image while maintaining the same type face and font.


Ask the person who created the image to send you the multi-layer .xcf file. 
If they still have that version available it will make it a lot easier to 
make the change you want to make.


--
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] Export to pdf

2019-05-03 Thread Kevin Cozens

On 2019-05-03 9:00 a.m., Uwe Sassnowski wrote:

But then all texts are changed in format. I can create pictures from the
text layers. But then I and the printing company cannot go into the text
anymore.


If the single layer PDF you generated had the right look to text outputting 
a multi-layer version should not change the appearance of the text. You need 
to do an export to PDF from the original multi-layer XCF file on a machine 
that has the fonts installed which are referenced by the XCF file.


--
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] Batch Image Manipulation, it's time to implement it in GIMP

2019-01-27 Thread Kevin Cozens

On 2019-01-08 2:23 a.m., Micha1982 wrote:

BIMP does not work with Gimp 2.10 and it is not possible to do a batch
resize of images.


If all that is required is to do a batch resize you can do that with the 
convert program that is part of the ImageMagick set of programs.


--
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] How do i change the Colour that i am using to transparent

2018-11-20 Thread Kevin Cozens

On 2018-11-20 2:51 p.m., Orville Chen wrote:

I have been trying for 2 hours to change it but i gave up so now i am skinger 
all of you How to do it???


You need an alpha channel on the layer.

Layer -> Transparency -> Add Alpha Channel

--
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] GIMP user friendliness suggestion

2018-11-16 Thread Kevin Cozens

On 2018-11-14 6:21 p.m., Anthony Dunk via gimp-user-list wrote:

my one big issue with this program is that it does not save to PNG or JPG unless you use the 
"Export" option. It would be so much more intuitive if GIMP's "Save as" feature 
had PNG and JPG as file options.


It would be easy to change but it won't be changed. This has been discussed 
on many occasions in the past. Check the mailing list archives if you want 
to see the often rather lively debates that took place on this topic.


--
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] Best way to upscale an image

2018-11-10 Thread Kevin Cozens

On 2018-11-10 5:02 a.m., Helmut Jarausch via gimp-user-list wrote:

for a photobook I need to upscale an image (showing a landscape) by a
factor of 2. What are good (best?) methods to do so with Gimp


In GIMP you could try using the liquid rescale plug-in. You would have 
better results if there was a larger version of the image and you could 
scale it down. Making it twice the size may not work out as well as you 
might like for use in a book.


--
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] gimp 2.10.4 midi not working

2018-08-16 Thread Kevin Cozens

On 2018-08-13 11:08 PM, patrick via gimp-user-list wrote:

When trying to compile on Raspbian (debian) Stretch, I am not able to
install all the deps:

- Error: missing dependency babl >= 0.1.52
   - Error: missing dependency gegl-0.4 >= 0.4.4
   - Error: missing dependency glib >= 2.54.2
   *** Test for GLIB failed
   - Error: missing dependency gegl
   *** Could not find native gegl executable in your PATH.
   - Error: missing dependency fontconfig >= 2.12.4
   - Error: missing dependency gexiv2 >= 0.10.6
   - Error: missing dependency poppler-glib >= 0.44.0

glib >= 2.54.2 is really a show stopper on this distribution afaik.


It isn't a show stopper. You can install GIMP and its dependencies to a 
directory within you user account and run it from there. You set PREFIX to 
the be the path to the private directory then use that include a reference 
to the path in both LD_LIBRARY_PATH and PKG_CONFIG_PATH.


--
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] Source of photos

2018-08-12 Thread Kevin Cozens

On 2018-08-10 04:42 PM, Pat David via gimp-user-list wrote:

GIMP doesn’t really have any sort of photo management functionality built
in (not should it in my opinion).


There used to be a photo management plug-in for GIMP but it was dropped in 
favour of the management features of the operating system and support for 
dragging and dropping in to GIMP.


--
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] Quicker way to audition fonts?

2018-06-29 Thread Kevin Cozens

On 2018-06-29 12:38 PM, GerryPeters wrote:

A font viewer / manager is the best way.


There is also Font Manager and Fonty Python in Linux.


Just a reminder, it is possible to generate an image of all the
installed fonts.


IIRC, you can do that via a feature in Scribus.

--
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] Python script

2018-06-21 Thread kevin payne via gimp-user-list
On 21 June 2018 at 10:32, Alexander V. Kalachev via gimp-user-list
 wrote:
> Dear list members,
>
> I wrote a script that adds an outline to the text. The script works as I 
> expected with on exception. When it finished, it removes all textual 
> information and converts the text into graphics. Could anyone give me an 
> advice how to modify the script in order to keep the textual information 
> unchanged? The script itself below.



You are stroking the path onto the Text layer, which will convert it
from text to raster. To keep the Test layer you will need to stroke
the path onto a new layer.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list
List archives:   https://mail.gnome.org/archives/gimp-user-list


[Gimp-user] Bugs and error

2018-05-28 Thread Kevin Prayogo G
Hello,
earlier this app is fine,
but after I update it to 2.10,
healing and clone tool is broken,
I get angry because my work gets annoyed,
so please fix the app again.

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


Re: [Gimp-user] gimprc in 2.10

2018-05-23 Thread Kevin Payne
From: gimp-user-list  on behalf of Maurizio 
Loreti 
>Hello -
>I installed gimp 2.10.0 on my iMac; and edited the related gimprc inserting 
>the two lines
>
>(default-snap-to-grid no)
>(default-snap-to-canvas yes)

>But these lines have no effect in 2.10 (but worked in 2.8).  What did I miss?  
>Where may I find the commands allowed in >gimprc?

You need to look for the system-wide gimprc, (mine is at  C:\Program Files\GIMP 
2.10\etc\gimp\2.0\gimprc)
In there you will find examples of all the things you can set.

I believe what you are try to set is now included as part of default-view and 
default-fullscreen-view :
# Sets the default settings for the image view.  This is a parameter list.
#
# (default-view
# (show-menubar yes)
# (show-statusbar yes)
# (show-rulers yes)
# (show-scrollbars yes)
# (show-selection yes)
# (show-layer-boundary yes)
# (show-guides yes)
# (show-grid no)
# (show-sample-points yes)
# (snap-to-guides yes)
# (snap-to-grid no)
# (snap-to-canvas no)
# (snap-to-path no)
# (padding-mode default)
# (padding-color (color-rgb 1.00 1.00 1.00)))

# Sets the default settings used when an image is viewed in fullscreen mode.
# This is a parameter list.
#
# (default-fullscreen-view
# (show-menubar yes)
# (show-statusbar yes)
# (show-rulers yes)
# (show-scrollbars yes)
# (show-selection yes)
# (show-layer-boundary yes)
# (show-guides yes)
# (show-grid no)
# (show-sample-points yes)
# (snap-to-guides yes)
# (snap-to-grid no)
# (snap-to-canvas no)
# (snap-to-path no)
# (padding-mode default)
# (padding-color (color-rgb 1.00 1.00 1.00)))

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


Re: [Gimp-user] [Gimp-developer] Curious about GIMP-2.10 bugs on Windows

2018-05-13 Thread Kevin Payne
On 05/11/2018 09:06 AM, Elle Stone wrote:

> Are some/many/most of the problems being reported for GIMP-2.10 on
> Windows, only specific to Windows?
>
> Or are these bug reports by Windows users simply bugs that weren't
> detected by various people running GIMP-2.9/GIMP-2.10-rc/GIMP-2.10 on
> Linux?

I'd suggest that one of the reasons is the relative lack of availability of 
executables during the 2.9 development 
phase - self compilation not 
really being an option on Windows.

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


Re: [Gimp-user] [Gimp-developer] Curious about GIMP-2.10 bugs on Windows

2018-05-12 Thread Kevin Payne

>That would explain a lot. Though people do manage to compile GIMP on
>Windows, it's apparently not easy to do.

>Partha's 2.9/2.10 builds for Windows have been available for a long time
>(https://www.partha.com/), without giving rise to nearly so many bug
>reports as the official release of 2.10. But maybe most Windows users
>don't know about Partha's builds.

The problem with Partha's builds is that he changes things to suit himself and 
therefore it's not a reliable reference for creating bug-reports against.

A case in point is https://bugzilla.gnome.org/show_bug.cgi?id=795855 which 
apparently Partha's build isn't suffering from: 
https://www.gimp-forum.net/Thread-opening-from-and-saving-to-local-folders?pid=8074#pid8074

___
gimp-user-list mailing list
List address:gimp-user-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] Update: 2.10.0 now opens.

2018-05-01 Thread Kevin Cozens

On 2018-05-01 08:53 AM, Julien Hardelin wrote:
Yes, I am the only contributor and this gimp-2.8 image is not my priority. 
It is also an alert about the situation. There is so much work to do, and I 
am very old (a great grand-father), working very slowly.

[snip]

GIMP-HELP NEEDS CONTRIBUTORS

Julien


Le 01/05/2018 à 13:09, Alexandre Prokoudine a écrit :

On Tue, May 1, 2018 at 7:02 AM, Rick Strong wrote:


Q. Why is the Help file for v 2.10.0 called 2.8? How up to date is that? Is
there a v 2.10.0 Help file in the works? Just wondering.

The user manual project is kinda separate from gimp
Thank you for you work on gimp-help, Julien. There is, or was, the GUM (GIMP 
User Manual). I haven't looked at it in a very long time so I don't know if 
it has been kept up to date or not.


One of these days I'll look at some of the Script-Fu documentation and check 
whether information is missing or out-of-date. I could also check on 
information related to the other language bindings (Python, perl, and Ruby). 
It comes down to a question of priorities as I have a lot of projects on my 
plate.


--
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] Mailing list issue

2018-04-11 Thread Kevin Payne
And Alex explained why this is happening a month ago: 
https://www.mail-archive.com/gimp-user-list@gnome.org/msg13187.html


Kevin


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of ugajin 
<uga...@zoho.com>
Sent: 10 April 2018 16:12
To: Carol Spears
Cc: Andrew; gimp
Subject: Re: [Gimp-user] Mailing list issue


I too, often receive  bursts of 'late' messages but today[April 10, 2018] is 
exceptional. I had 100 messages waiting in my inbox. The earliest of which is 
dated March 15, 2018 with the subject line 'How to print'. Ironically, this is 
dated the same as yours!

-u

 On Thu, 15 Mar 2018 01:33:42 + Carol 
Spearscarol.spe...@gmail.com wrote 

On Tue, Mar 13, 2018 at 2:48 AM, Andrew 
andrew.alangdondavies...@smtp.gnome.org wrote:

 On 13/03/18 07:16, Ben Oliver wrote:

 Every now and then I get a burst of mail from this list all at once, 
some
 of which can be 3-5 days old. I don't think they are duplicates.

 Does anyone else have this issue?


 Happens to me too. Pretty sure they're not duplicates.


I made their web site install by just typing "make", basically. So now I
wonder if it is a clog in the approval filter which is perhaps on
someones phone *or* someone needs to type make somewhere

carol
___
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/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] Contact Sheet

2018-04-08 Thread Kevin Cozens

On 2018-04-08 06:00 AM, Steve Kinney wrote:

It's been over a decade since I had occasion to use it, but the
Irfanview photo management tool for Microsoft systems could make contact
sheets with a variety of options for size, captions based on file names,
etc.  Also does some simple editing tasks, generates HTML thumbnail
galleries complete with HTML code, and probably more tricks since then.


Another option is to use montage from ImageMagick.

--
Cheers!

Kevin.

http://www.ve3syb.ca/| "Nerds make the shiny things that
https://www.patreon.html/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] Contact Sheet

2018-04-07 Thread Kevin Cozens

On 2018-04-06 05:31 PM, JIM HARASYN wrote:

Adobe Photoshop had an option for taking you group of photos and making a 
contact sheet with them. Does GIMP have that capability? How?


I wrote a contact sheet program in Script-Fu a long time ago. It used to be 
part of the development releases but was not shipped with GIMP. Some people 
didn't like how it worked. Its probably not even in the development version 
any more as about half the scripts were removed from the source tree. If you 
are interested I'm sure I still have a copy on my hard drive somewhere that 
I can send you.


--
Cheers!

Kevin.

http://www.ve3syb.ca/| "Nerds make the shiny things that
https://www.patreon.html/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] Any way to resize all the layers in an xcf file to fit the canvas?

2018-03-12 Thread Kevin Cozens

On 2018-03-12 10:03 AM, Elle Stone wrote:
See ofn-layers-to-image-size at 
https://sourceforge.net/projects/gimp-tools/files/scripts/

[snip]
Thanks much! for the trick and the script. Hopefully I won't be resizing 
this particular image any further, but the next time I resize an image I'll 
figure out how to use the script, or at least will use the trick.


That script could be worth including as part of what ships with GIMP.

--
Cheers!

Kevin.

http://www.ve3syb.ca/| "Nerds make the shiny things that
https://www.patreon.html/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 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] Error message when running GIMP

2018-01-18 Thread Kevin Cozens

On 2018-01-17 04:54 PM, Frank McCormick wrote:

I've noticed lately a string of error messages everytime I start GIMP.

[snip]

(gimp:24972): LibGimpBase-WARNING **: gimp: gimp_wire_read(): error
GIMP-Error: Plug-in "script-fu"
(/usr/lib/gimp/2.0/plug-ins/script-fu)
attempted to register the menu item "/File/Create/FX-Foundry/Logos" 
for procedure "script-fu-blood-logo".
The menu label given in gimp_install_procedure() already contained a path.  
To make this work, pass just the menu's label to gimp_install_procedure().


You have some old Script-Fu scripts in your installation of GIMP. The 
script-fu-register block should only provide the name of the script and the 
menu entry used to run the script. Where the menu entry is to appear (ie. 
the path to it) is given in a script-fu-menu-register block.


--
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] Beginner's questions about Gimp & Wacom on Linux for a kid-friendly setup

2017-12-18 Thread Kevin Cozens

On 2017-12-18 03:39 AM, Hanno Zulla wrote:

my child draws (a lot).

[snip]

I found a cheap used Wacom tablet in pristine condition which will now
be this year's Christmas present for her. Yay!


Nice to hear that you child likes to draw. You never know where it might 
lead. It could stay a hobby or it could become (part of) a career.


The problem with the Wacom tablet I have is calibrating it and having the 
calibration stick between reboots of the computer and use of the tablet.


One feature you should enable (if supported by the tablet) is pressure 
sensitivity. You may not need that right away but it will be useful down the 
road.



3) The Wacom buttons?

There are four buttons on the graphics tablet - by default they are used
as mouse clicks. Can I use the button to choose tools? If so, how should
I configure them for productive use within Gimp?

[snip]> 4) Wacom & Gimp - your workflow on Linux?


When you use Gimp with a Wacom tablet on Linux, what is your workflow,
what are your shortcuts?


Configuring the buttons is something that will take time. The user of the 
tablet needs to learn what features they use more often and if configuring a 
button to quickly access those features would be helpful.


For me, two features that I find useful to have access quickly/easily are 
swapping the foreground and background colours, and switching to the eraser 
tool.


Which of these two features is accessed by the stylus button and which is 
accessed by a tablet button will be personal preference.


--
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] How to process photos that center exactly on photo paper standard sizes.

2017-11-06 Thread Kevin Cozens

On 2017-11-05 11:11 PM, Notarobot wrote:

Apparently, no one on the internet knows the answer to this, nor does anyone on
this board..


It must be a Windows specific issue. I just created an image, clicked Print, 
then Print Preview and found the preview showing me that the image was fully 
centered on the page.


For Windows, if you can determine the offset you need to get the image 
centered on a page you can add a transparent background layer that would put 
the image in the right place for it to appear centered.


The other option is to pull the image in to something like Inkscape or a 
word processing program where you can position and size the image as needed 
to have it appear on the printed page where you want it.


--
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] Compatibility with PS?

2017-10-30 Thread Kevin Cozens

On 2017-10-29 06:06 PM, Jeffry Killen wrote:

Will Gimp open ps files: yes (which versions and what aspects are retained?)


The two problem areas you will run in to are images with adjustment layers, 
and text layers. GIMP doesn't have an equivalent for adjustment layers (yet) 
and text layers will be converted to a bitmap.


--
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] Is a high bit depth monitor worth getting? (was Re: emerge --emptytree : how to ?)

2017-10-20 Thread Kevin Cozens

On 2017-10-20 12:01 PM, Helmut Jarausch wrote:

I'm considering buying a new monitor (and graphics card) which supports
10 bits per color channel.
Will Gimp on a Linux machine (X11) support this now or in the near future.
Or is it just waste of money to buy a monitor with more than 8 bits/color 
channel?


GIMP is moving towards higher colour depth. Would a high bit depth monitor 
be worth it? That would depend on your use case(s). Is GIMP the only program 
you would run that would benefit from a high bit depth monitor? Do you run 
other programs that would benefit from such a monitor? Will your computers 
graphical environment (aka. desktop) support full use of a high bit depth 
monitor?


--
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] Double mails from the list ?

2017-06-18 Thread Kevin Cozens

On 2017-06-18 08:00 PM, Ken Moffat wrote:

On Sun, Jun 18, 2017 at 04:26:14PM -0700, Ken Moffat wrote:
I'd noticed one or two double-posts recently

[snip]

Anyone know what is going on ?


One thing I've noticed is that the second message of a double post mentions 
a newsgroup "local.gimp.user". The reason for the double post may have 
something to do with the message being posted to two places where the second 
place is routed back to the mailing list.


I can't that is what is actually happening. Just an educated guess.

--
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] Open / Edit Nikon D5500 NEF files ?

2017-06-11 Thread Kevin Cozens

On 2017-06-11 10:54 PM, Chuck Devlin via gimp-user-list wrote:

  I have downloaded gimp 2.8 and am trying to access the RAW Files(NEF Nikon 
format) created in my Nikon D5500 camera.  However the files are not recognized 
by GIMP.  The files cannot be open.  My computer's operating system is Windows 
10.


You need to install the ufraw or dcraw plug-in for 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] Help with Cropping

2017-05-25 Thread Kevin Cozens

On 2017-05-25 08:28 PM, SayCheeze wrote:

Since my edits are very minimal, it's driving me up the wall in trying
to figure out how to get a standard crop size with a specific dpi.


Earlier messages referenced a Canon digital camera, IIRC. I also saw a 
reference to the images showing up as very small when the pictures were 
loaded in to GIMP. That tells me that the camera images you are trying to 
load are in RAW format but you don't have a plug-in in GIMP that will let it 
read files in that format.


What you are seeing are the thumbnails of the RAW files. You need to install 
a plug-in for GIMP to let it read RAW files. You can install either dcraw or 
ufraw plug-in to let GIMP read the files. If you can't find either of those 
plug-ins you will need to convert the files in to a format that GIMP can 
read before you try loading them in 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 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] GIMP ---> Pixi: suggested name change

2017-05-08 Thread Kevin Cozens

On 2017-05-08 10:51 AM, Joshua Coppersmith-Heaven wrote:

GIMP is a great programme, but it is not a great name.

[snip]

There is a commercial image editor called Pixie (with an e), but not Pixi.

[snip]

Be interested to know your thoughts,


Calling an open source program Pixi when there is a commercial one Pixie is 
going to lead to some confusion between the programs. It could also result 
in a letter from the company behind the commercial program asking the open 
source project to change its name.


As to your first statement, I'm glad you like the program. Others have 
already commented on it being an acronym rather than a name. Thank you for 
the name idea. This topic comes up now and then. Bottom line is the name 
isn't going to change.


--
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] Change the UI size?

2017-04-21 Thread Kevin Payne

>1) You don't don't believe adding an option for a larger font size to the base
>product as part of the default install, is a high enough priority relative to
>the backlog to merit near term consideration?   Anecdotally there seem to be a
>lot of requests for it.  Please consider this is not a convenience, or a time
>saving feature.  A significant amount of users are simply not functional with 
>an
>8pt font.

With my larger themes for 2.8 I was asked to NOT set the font by some users 
because the operating system/window manager is setting the font independently 
of GIMP. I believe the same is true of the 2.9 themes, where the font-size 
setting is present but commented out of the gtkrc files.

So the way forward is a small piece of documentation to explain how to edit the 
theme gtkrc file for those users who need to change it.

>3)  The thread I refer to is the current one for this message.  In case you are
>following from a mailing list the URL is
>http://www.gimpusers.com/forums/gimp-user/18002-change-the-ui-size.

 Ah - you have that backwards. The web-site you refer to (gimpusers.com) has 
parasitically attached itself to the gimp-user mailing list and is not the 
source of the messages.

regards

Kevin
___
gimp-user-list mailing list
List address:gimp-user-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] Does GIMP have automated macro / batch processing?

2017-04-04 Thread Kevin Payne



>Could you (or any kind-hearted individual) provide any idea or
>feedback about http://gimpchat.com ?

I would certainly recommend you post your requirement at GimpChat as there are 
a few people there who could create the script you require.


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


Re: [Gimp-user] How to input multiple lines of text onto seperate photos

2017-03-17 Thread Kevin Cozens

On 2017-03-16 07:43 PM, TeddyRuxpinBear wrote:

http://pastebin.com/bhfhMAZY


In the Script-Fu examples (0 0 0) should be '(0 0 0)

--
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] GIT

2017-02-27 Thread Kevin Cozens

On 2017-02-26 06:54 PM, eingram25 wrote:

I saw a reference to "git pull".
What is git pull and where di I go to learn about it?


Git is a program used to do version control of the files used by the GIMP 
project. For details about git go to https://git-scm.com/


--
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] 2.9.4 Release-Icons

2017-01-10 Thread Kevin Payne

From: gimp-user-list [gimp-user-list-boun...@gnome.org] on behalf of Rick 
Strong [rnstr...@primus.ca]
Sent: 10 January 2017 22:48
To: GIMP User List
Subject: [Gimp-user] 2.9.4 Release-Icons

I have V. 2.8.16. Reading about GIMP 2.9.4 I am wondering if I will still be 
able to use my Color-32 icon theme?

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

No you won't be able to use Color-32 as it's a full theme not an icon theme.

Also, unless some work has been done to allow for users to select larger icons, 
GIMP's use of the icon-theme mechanisn will prevent you from having larger 
icons.

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


Re: [Gimp-user] Script error - how to fix?

2017-01-10 Thread Kevin Cozens

On 17-01-10 04:23 PM, BristolGarry wrote:

Hi Folks - I was trying to add the Sepia script into Gimp (2.8.18, operating on
Ubuntu 16.10), and got the following error.  I have NO idea what this means or
how to fix it,

[snip]

Plug-in "script-fu"
(/usr/lib/gimp/2.0/plug-ins/script-fu)
attempted to register the menu item "/Filters/Combine" for procedure
"script-fu-pandora-combine".
The menu label given in gimp_install_procedure() already contained a path.  To
make this work, pass just the menu's label to gimp_install_procedure().


It sounds like you have include a menu path in the script-fu-register call 
instead of setting the path for the menu in script-fu-menu-register.


In the script-fu-register block the first thing you specify is the name of 
the script function to be called. The second entry is the menu entry for 
script without any menu path.


You set the path by including a menu register call such as this:

(script-fu-menu-register "script-fu-pandora-combine"
     "/Filters/Combine")

--
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] HiDPI Displays

2016-12-30 Thread Kevin Payne
I'd recommend trying one of the themes from here: 
http://www.gimp-forum.net/Thread-GIMP-2-8-Large-size-Icons-Themes

GIMP 2.8 Large size Icons 
Themes<http://www.gimp-forum.net/Thread-GIMP-2-8-Large-size-Icons-Themes>
www.gimp-forum.net
This is a thread to support a couple of larger icon GIMP 2.8 themes. The 32x32 
Symbolic theme is here: https://bitbucket.org/paynekj/paynekj-gi...-Big-32.7z 
The 32x32 Colour Theme is here: https://bit




Kevin




From: Praveen Baratam <praveen.bara...@gmail.com>
Sent: 29 December 2016 18:56
To: Kevin Payne
Cc: GIMP Users
Subject: Re: [Gimp-user] HiDPI Displays

Hello Kevin,

Thank you for responding.

My GIMP Version 2.8.16

The gimp-hidpi theme I tried using was from 
https://github.com/jedireza/gimp-hidpi
[https://avatars0.githubusercontent.com/u/979929?v=3=400]<https://github.com/jedireza/gimp-hidpi>

GitHub - jedireza/gimp-hidpi: A theme for HiDPI 
displays<https://github.com/jedireza/gimp-hidpi>
github.com
README.md Gimp HiDPI. A theme to for HiDPI displays (Macbook Pro Retina / X1 
Carbon). I am (at the time of writing) running Gnome 3.18 and Gimp 2.8.


This is how it looks when I install it as per the github readme -

[Inline image 1]
[https://mailfoogae.appspot.com/t?sender=acHJhdmVlbi5iYXJhdGFtQGdtYWlsLmNvbQ%3D%3D=zerocontent=cbc72511-f3d7-4840-93df-6f321bc7551d]?

On Thu, Dec 29, 2016 at 11:51 PM, Kevin Payne 
<payn...@hotmail.com<mailto:payn...@hotmail.com>> wrote:
From: gimp-user-list 
<gimp-user-list-boun...@gnome.org<mailto:gimp-user-list-boun...@gnome.org>> on 
behalf of Praveen Baratam 
<praveen.bara...@gmail.com<mailto:praveen.bara...@gmail.com>>
Sent: 27 December 2016 08:20
To: GIMP Users
Subject: [Gimp-user] HiDPI Displays

Hello everyone,

I am trying to use GIMP 2.8 on Windows 10 with HiDPI display (XPS 13
Infinity Display - 3200x1800). GIMP has been my long term work horse but
now its almost unusable. I tried installing the gimp-hidpi theme also but
it is broken on Windows.

Please help.

Thank you.

--
Dr. Praveen Baratam
<https://mail.gnome.org/archives/gimp-user-list>

Which exact version of GIMP are you using (2.8.???) and where did you get this 
so-called gimp-hidpi theme?

Kevin



--
Dr. Praveen Baratam

about.me<http://about.me/praveen.baratam>
___
gimp-user-list mailing list
List address:gimp-user-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] HiDPI Displays

2016-12-29 Thread Kevin Payne
From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Praveen 
Baratam <praveen.bara...@gmail.com>
Sent: 27 December 2016 08:20
To: GIMP Users
Subject: [Gimp-user] HiDPI Displays

Hello everyone,

I am trying to use GIMP 2.8 on Windows 10 with HiDPI display (XPS 13
Infinity Display - 3200x1800). GIMP has been my long term work horse but
now its almost unusable. I tried installing the gimp-hidpi theme also but
it is broken on Windows.

Please help.

Thank you.

--
Dr. Praveen Baratam
<https://mail.gnome.org/archives/gimp-user-list>

Which exact version of GIMP are you using (2.8.???) and where did you get this 
so-called gimp-hidpi theme?

Kevin
___
gimp-user-list mailing list
List address:gimp-user-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] hard lines gimp

2016-11-06 Thread Kevin Cozens

On 16-11-06 02:16 AM, bronxsystem wrote:

Hey all
I am new at this very new.

Ive spent over an hour to just draw this shape ive tried different things but
how is it so blurry/pixely? how to i make it smooth and sharp?


Attachments:
* http://www.gimpusers.com/system/attachments/314/original/argfgfgfgfg.jpg


The image shows hardness is set to 1 but anti-aliasing is on. I think the 
anti-aliasing setting is causing the fuzzy type of edges. If you caned right 
click and edit the brush make a new one and turn off anti-aliasing.


--
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] No Filenames Recognized By Gimp

2016-10-31 Thread Kevin Cozens

On 16-10-30 03:30 PM, Daniel Banks wrote:

Interestingly, if I run the portable version of Gimp 2.8, it *does* show
file types and will let me export to the usual file name extensions.


Sounds a bit like a problem with the installer package. Where did you get 
the copy of GIMP you are trying to install and what is the filename on the 
package?


--
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] Non-internet install

2016-10-18 Thread Kevin Cozens

On 16-10-17 08:05 AM, Sorin wrote:

I want to install Gimp on one computer that I keep in my shop for visual only
work. To preclude problems it is not allowed access to internet, wi-fi, any
other outside inputs except CDs and flash drives.


There is a portable apps version f GIMP that you can put on a memory stick 
and use on any Windows machine without having to install the program. I have 
a USB memory stick containing a lot of portable apps for when I'm on the 
road, or using a computer other than my own.


See http://portableapps.com/ for details.

--
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] Custom Script UI

2016-10-13 Thread Kevin Payne
>What, you mean with no "PF-XXX" parameters? Yeah, I got that much as I've made
>scripts with both no UI and the built-in UI before. I'm rather certain it still
>wants you to use their UI, though.

>Even if that's all it took, there's still the issue of gimp using a watered 
>down
>Python 2.7.5, which I'm not sure how to add normal modules to. I assume Kivy's
>pretty much out of the question, but TkInter's normally built in to python,
>except with gimp a number of base modules, including TkInter, aren't present
.anymore.
<https://mail.gnome.org/archives/gimp-user-list>
As you say TkInter isn't in the GIMP supplied Python (which is a pity as it 
uses native file browsers instead of the GTK abomination), but you can use 
PyGTK, which you should be able to understand quite readily as you have TkInter 
experience.

Here's a relatively simple PyGTK GIMP plug-in I wrote some time ago: 
https://bitbucket.org/paynekj/paynekj-gimp-scripts/src/2e8e87faf5eaaf6036e0d8b68ff9f6f37a3f0421/plug-ins/pygtk_add_multiple_guides.py?at=default

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


Re: [Gimp-user] HELP putting words in 3d curved around a globe

2016-09-08 Thread Kevin Cozens

On 16-09-07 05:43 PM, Ofnuts wrote:

I’m working on a cover for a music EP.   In my head the cover is a globe with
the EP title bended around it.

Can anyone explain to me how to curve the text around the ball?


The simplest method would be to use the Text Circle Script-Fu script. It 
might not be in your version of GIMP if you are using a more recent version 
of the program.


--
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] Error while executing script-fu-smart-remove

2016-08-05 Thread Kevin Cozens

On 16-08-03 08:36 PM, GGmp wrote:
> I 'm using Gimp 2.8.18 and when i try to use the Heal selection filter 
appears

> the next message:
>
> Error while executing script-fu-smart-remove
> Error: eval: unbound variable: plug-in synthesizer

If you had done a search using the words "gimp unbound variable" you would 
have found the solution on the page

https://www.gimp.org/docs/script-fu-update.html

You have an old script that is using a variable before it was defined. Make 
sure your variables are defined before you use them.


--
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] set layer name

2016-08-03 Thread Kevin Payne
You got an answer when you asked the question on GimpForums: 
http://gimpforums.com/thread-set-layer-name


Kevin


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of jbmorrison 
<for...@gimpusers.com>
Sent: 02 August 2016 23:19
To: gimp-user-list@gnome.org
Cc: notificati...@gimpusers.com
Subject: [Gimp-user] set layer name

Hi.

I'm putting together a very simple python-fu script that will load three png's
as layers, set the names of the layers to something other than the file name,
and then export the whole thing as a PSD.

I've found most of the api calls I need to make, but I'm not able to find a way
to set the layer names.  Am I missing something or am I going about this the
wrong way.

If this has already been answered, please point me to the threads.

Thanks
John Morrison

--
jbmorrison (via www.gimpusers.com/forums<http://www.gimpusers.com/forums>)
Forums - gimpusers.com<http://www.gimpusers.com/forums>
www.gimpusers.com
Forums. While there are many different GIMP forums of there, our own forums 
provide an extended way to communicate because they are connected to the 
official GIMP ...


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

2016-07-17 Thread Kevin Cozens

On 16-07-17 10:22 AM, Rick Kline wrote:

Installed XGimp on an iPad Pro and am looking for help/documentation.

[snip]

I realize this may not be the right forum, but have found no help online
with XGimp.

If anyone can get me started or point me in the right direction to get help,
I'd be very grateful.


I don't know anything about XGimp. Your best bet is to contact the author of 
the program and ask them for help.


--
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] small icons and display

2016-05-31 Thread Kevin Payne
If you are using GIMP 2.8, you might try this: 
http://gimpforums.com/thread-large-size-icons-themes

Kevin 



From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of 
eric.clif...@esaconstruction.com <eric.clif...@esaconstruction.com>
Sent: 31 May 2016 17:04
To: gimp-user-list@gnome.org
Subject: [Gimp-user] small icons and display

I have a 4k computer and the icons and menus are real tiny.  I tried going
into preferences and cannot seem to change the icon and menu sizes.  Is this
even possible with a 4k computer with windows 10?



Eric Clifton

ESA Construction, Inc.

 <mailto:eric.clif...@esaconstruction.com> eric.clif...@esaconstruction.com

915-549-4886





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


Re: [Gimp-user] GIMP, .pdf, and threshold

2016-04-11 Thread Kevin Payne
My initial guess would be that your image mode is Indexed.

Check Image>>Mode and make sure it is set to RGB after importing the images.

Kevin



From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of 
m.r...@5-cent.us <m.r...@5-cent.us>
Sent: 11 April 2016 15:40
To: gimp-user-list@gnome.org
Subject: [Gimp-user] GIMP, .pdf, and threshold

Hi, folks,

   I'm running CentOS 6.7, and the most current GIMP for that, 2.6.9-8. A
friend, half a continent away, is scanning parts of a number of old
'zines for me. From that, The originals were printed on colored
paper

I want to do OCR. On a couple of .pdfs, one I d/l from the 'Net, and
one from a different scanner, I import it into GIMP as images (we're
talking 16-20pp), and, page by page, push the contrast to max, cut the
brightness to half or less of what it was, then pull up threshold, and
the preview shows me black text on white, and saving it that way,
tesseract works just fine.

   Doing that with these scans, nada. No useful changes, and threshold
does nothing.

   Clues for the poor?

mark

___
gimp-user-list mailing list
List address:gimp-user-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] Change the UI size?

2016-04-01 Thread Kevin Payne
Jehan: re font-size

  The font size can be controlled by the theme, but to judge from this post, 
there may be some operating system/window manager effects as well:
http://gimpforums.com/thread-new-default-double-theme-for-uhd-4k-sp4?pid=47087#pid47087
  
  Maybe it's seeing "14 point" and deciding that as it's a high dpi screen, it 
needs to be drawn bigger. I also don't have a high dpi monitor so this is all 
speculation.

Kevin


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Jehan 
Pagès <jehan.marmott...@gmail.com>
Sent: 01 April 2016 19:20
To: DAWO
Cc: gimp-user-list@gnome.org; notificati...@gimpusers.com
Subject: Re: [Gimp-user] Change the UI size?

Hi,

On Sun, Mar 27, 2016 at 9:49 AM, DAWO <for...@gimpusers.com> wrote:
>
>>
>>BUT - you're using a GIMP 2.9.? version? If you have the option in
>>your Edit>>Preferences>>Icon Theme, then the theme you have downloaded
>>is not going to work.
>
> Thanks again, Kevin!
>
> The version I downloaded and installed, is 2.8.16, so I will go ahead and try
> your icons. It seems that this is a problem for others as well which a quick
> search with Google verified. And I think it should be one of the most
> prioritized issues for the Gimp developer community as it “accessibility”
> defines who can use the software, and who cannot.2

I agree, since I am working on the icon size customization (the
"future plans" Kevin told about earlier). Though I must say it's not
easy to prioritize and see what others are going through because I
don't have access to any HiDPI screen, not even to test, even less for
my own daily use.

I have also a question, about when you say that text is also too
small. From what I understood, GIMP should simply follow whatever text
size settings your operating system is configured with. Are you saying
that font size is bigger everywhere else but not in GIMP? I think this
should not happen (but once again, I can hardly test myself without
such a screen).
Thanks.

Jehan

> --
> DAWO (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



--
ZeMarmot open animation film
http://film.zemarmot.net
Patreon: https://patreon.com/zemarmot
___
gimp-user-list mailing list
List address:gimp-user-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] Change the UI size?

2016-03-26 Thread Kevin Payne
Dag,

  Sorry I haven't explained in more detail what to do with the .7z files.

  Yes, you need to put the Color-48 folder (containing all the subfolders) into 
your personal GIMP profile Themes folder (C:\Users\Dag\.gimp-2.8\Themes).

  BUT - you're using a GIMP 2.9.? version? If you have the option in your 
Edit>>Preferences>>Icon Theme, then the theme you have downloaded is not going 
to work.

  With 2.9.3.???, Icon Themes now control which icons you get BUT the theme 
controls which size icons, and as far as I know, no-one has made a suitable 
pair that specify and supply larger size icons. Quite frankly, it's a mess at 
the moment.

Kevin 


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of DAWO 
<for...@gimpusers.com>
Sent: 26 March 2016 10:58
To: gimp-user-list@gnome.org
Cc: notificati...@gimpusers.com
Subject: [Gimp-user] Change the UI size?

>There are future plans to allow users to allow easier control over the
>icon sizes etc, but at the moment it can be done using add-on themes.
>
>You will find links to some themes that I have made that use bigger
>icons (either 32x32 or 48x48) that others have found useful here:
>http://gimpforums.com/thread-large-size-icons-themes
>
>Kevin

Thank you very much, Kevin!

It might be a good idea, for users like me, to explain how to go about
installing the theme. As I did not realize that these were zipped files, I
started off by just putting the downloaded color theme and symbolic theme files
in what I thought would be the right folder, but, understandably nothing
happened. I then did a search on the file suffix in order to find out that they
were 7zip-files. I have now downloaded and instlled 7zip, and unzipped the files
and I now have a folder named "Color-48" with several subfolders and files in
it, but I am uncertain what to do? Should I place the WHOLE folder as it is in
the Themes folder? Or just some of the files? And on my Windows 10 PC, I found
one Gimp Themes folder in "C-> User-> Dag -> .gim-2.9-> themes" would that be
the correct folder?

Regards,

Dag

--
DAWO (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


Re: [Gimp-user] Cloning tool

2016-03-26 Thread Kevin Payne
Yes there is a clone tool in GIMP. Here is the documentation about it: 
http://docs.gimp.org/2.8/en/gimp-tool-clone.html

Kevin


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of MiniBob 
<for...@gimpusers.com>
Sent: 25 March 2016 21:02
To: gimp-user-list@gnome.org
Cc: notificati...@gimpusers.com
Subject: [Gimp-user] Cloning tool

I am currently contemplating the installation of GIMP.  I do not have it
downloaded yet.  I am wondering if GIMP contains a "cloning tool" similar to the
"stamp" tool in Photoshop.  I use this tool extensively and would like to have
it available to me in GIMP.

--
MiniBob (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


Re: [Gimp-user] Change the UI size?

2016-03-26 Thread Kevin Payne
There are future plans to allow users to allow easier control over the icon 
sizes etc, but at the moment it can be done using add-on themes.

You will find links to some themes that I have made that use bigger icons 
(either 32x32 or 48x48) that others have found useful here:
http://gimpforums.com/thread-large-size-icons-themes

Kevin



From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of DAWO 
<for...@gimpusers.com>
Sent: 25 March 2016 09:57
To: gimp-user-list@gnome.org
Cc: notificati...@gimpusers.com
Subject: [Gimp-user] Change the UI size?

Hi,

I have just dowloaded Gimp 2.8.16 and installed it on my Windows 10 - 64 bit PC.
However, the user interface with all the icons and texts are too small for me
and it is very hard to read what is on the screen. My monitor size is 3440 X
1440. Of course I can change the size of everything on the screen by using the
Display settings in Windows 10 and set the slider to, say, 150%. But then ALL
applications and windows on the screen get bigger, even if I do not want them
to.

Is there a way to customize the size of textlabels, toobars, icons etc in the
user interface of GIMP?

Thanks!

--
DAWO (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


Re: [Gimp-user] Color of fonts of context help

2016-03-24 Thread Kevin Payne
The theme can change the colours of the tooltips, BUT the GIMP Default and 
Small themes do not do this, so the colour is being set by your operating 
system/window manager.

On Windows 8.1, I can change the desktop theme and it will change the 
background colour of the tooltips (but not the text colour)

You haven't said which operating system you are using and what the desktop 
theme colours are.

Kevin 



From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of gm40 
<for...@gimpusers.com>
Sent: 20 March 2016 23:15
To: gimp-user-list@gnome.org
Cc: notificati...@gimpusers.com
Subject: [Gimp-user] Color of fonts of context help

>I noticed by clicking through the themes I have installed that some do
>not change the colors of the pop-ups, and others do. Can you name the
>different themes you've tried?
Default
Gimp-CS6-theme
Small
>If the theme isn't changing it, it will get the color information from
>you OS desktop theme. Have you changed that recently?
Yes, I went through numerous themes without success. In fact the desktop
tooltips seem to be alright (white on black) if I can go by what it is in a
terminal window. All other programs except 'audacity' show readable tooltips. So
I get the impression the tooltip configuration is set by each program.
>Just to rule it out, you should try a different desktop theme and see
>if
>it changes.

--
gm40 (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


Re: [Gimp-user] python-fu vs script-fu

2016-03-23 Thread Kevin Payne
How much extra time are you seeing with the Python dialog? 

Here on a Windows 7 machine, I can't be sure I'm seeing any difference, so it 
must be less than 0.5 seconds.

Kevin 


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of 
uga...@talktalk.net <uga...@talktalk.net>
Sent: 23 March 2016 10:22
To: ofn...@gmx.com; gimp-user-list@gnome.org
Subject: Re: [Gimp-user] python-fu vs script-fu

Intersting idea, but running Python interactively before launching GIMP
does not seem to make a noticeable  difference.

Thanks.

>Original Message
>From: ofn...@gmx.com
>Date: 22/03/2016 21:04
>To: <gimp-user-list@gnome.org>
>Subj: Re: [Gimp-user] python-fu vs script-fu
>
>On 22/03/16 21:34, Kevin Cozens wrote:
>> On 16-03-22 03:04 PM, uga...@talktalk.net wrote:
>>> I don't see the difference to be about efficiency. There is
noticeable
>>> lag when executing python-fu.
>>
>> Script-Fu is always loaded in memory when GIMP starts. For Python
>> scripts the Python interpreter must be loaded before it can run the
>> script. The times it takes to load the Python interepreter would be
>> the lag you are talking about.
>>
>
>Possible. I don't experience such lags but then on a Linux system
there
>is always a Python script running somewhere so the interpreter is
>already loaded, and it's only a matter of initializing a new
instance.
>But then on OSX I would expect the interpreter to be kept in the IO
>buffers, so the lag would be noticeable only on the first execution.
A
>good test would be to start an interactive python session before
>starting Gimp, keep it open while Gimp runs and see if the lag
remains.
>___
>gimp-user-list mailing list
>List address:gimp-user-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] python-fu vs script-fu

2016-03-22 Thread Kevin Cozens

On 16-03-22 03:04 PM, uga...@talktalk.net wrote:

I don't see the difference to be about efficiency. There is noticeable
lag when executing python-fu.


Script-Fu is always loaded in memory when GIMP starts. For Python scripts 
the Python interpreter must be loaded before it can run the script. The 
times it takes to load the Python interepreter would be the lag you are 
talking about.


--
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] python-fu vs script-fu

2016-03-22 Thread Kevin Payne
As you haven't provided a link to Akkana's script, we have no way to compare if 
the scripts are even remotely similar.

My experience with writing a script in Scheme, then converting it to Python was 
that it runs considerably faster in Python, so I think it's as Ofnuts says, 
it's entirely dependent on what you are trying to do.

Kevin 


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of 
uga...@talktalk.net <uga...@talktalk.net>
Sent: 22 March 2016 19:04
To: ofn...@gmx.com; gimp-user-list@gnome.org
Subject: Re: [Gimp-user] python-fu vs script-fu

I don't see the difference to be about efficiency. There is noticeable
lag when executing python-fu.

E.g., when I run Akkana Peck's show_py_ui.py plugin, and compare this
with GIMP.org's test-sphere.scm script there is a big difference in
performance up to launcing the UI. I note show_py_ui.py is a smaller
file size, 3kb compared to test-sphere.scm's 6kb (12kb inc comments).

Is it just me on pre-build OSX?

Thanks.

-u


>Original Message
>From: ofn...@gmx.com
>Date: 22/03/2016 16:34
>To: <gimp-user-list@gnome.org>
>Subj: Re: [Gimp-user] python-fu vs script-fu
>
>On 22/03/16 12:27, uga...@talktalk.net wrote:
>> Is there a known performance issue for python-fu compared with
script-
>> fu?
>>
>> I have a pair of comparable scripts, and I find python-fu to be
>> noticeably lagged.
>>
>> I am running 2.8.16 on OSX.
>>
>> -u
>>
>
>A script is normally just glue around operations carried out by Gimp,
so
>the efficiency of the script language is normally fairly irrelevant.
>
>But different scripts could be using different operations for
equivalent
>results, one set of operations being more efficient...
>___
>gimp-user-list mailing list
>List address:gimp-user-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] Sript Fu problems

2016-03-21 Thread Kevin Cozens

On 15-12-03 10:02 AM, ssabo wrote:

Finally 2.8.14 would install and work!  But now my MAJOR problem, I have been
using Script Fu A LOT. But now it is no long in the upper menu just after
“filters” where it use to be.  Now it is at the bottom of the “filters” 
menu,
and I have tried everything, but can’t get it to work.

I really need Script Fu on three websites I am presently designing…HELP!


If you see Script-Fu in the menus it is available. If you are trying to use 
some scripts that you had running in a much older version of GIMP they may 
need updates. Changes within GIMP and changes in Script-Fu itself have meant 
some scripts need changes. If you provide more details about what is and 
isn't working for you more specific help can be provided.


--
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] debugging script-fu with list->string

2016-03-20 Thread Kevin Cozens

Oops... I meant to send this to the list.

On 16-03-20 07:17 AM, uga...@talktalk.net wrote:

How, do I pass in a list of characters? GIMP complains when I try to pass
in a list object. I have tried everything, I can think of.


You provided a list but it was a list of numbers, not characters. To create 
a list of characters you would use

(gimp-message (list->string '(#\H #\e #\l #\l #\o #\!)))

Characters are written as #\ followed by a the character you want, or by #\ 
and the name of a character (ie. space, or newline).


For some additional information you can look in the R5RS under section 6.3.4 
on page 28.


There is a minor error in the printing of characters that I need to fix. It 
shows them as "#\x" instead of just "#\". I also just had a thought that 
this information should be put in to some document about Script-Fu basics.


--
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] debugging script-fu with list->string

2016-03-19 Thread Kevin Cozens

On 16-03-14 09:56 AM, uga...@talktalk.net wrote:

I believe Script-fu supports list->string but I may be mistaken. I am
unable to get it to work. E.g. (gimp-message (list->string '(0 0 0) ))
returns Error: ( : 2) string-set!: argument 3 must be: character


list->string is defined in the script-fu.init file. It takes a list of 
characters and returns a newly allocated string from formed form the 
characters in the list.


This is in accordance with the R5RS document (see page 30).

--
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] Scheme - image ID

2016-03-12 Thread Kevin Cozens

On 16-03-12 02:14 PM, uga...@talktalk.net wrote:

I want to get the id from within the script. I found the answer. Not
sure why it wasn't working when I first tried it. I hadn't made the
connection between image id and the title bar data.

Still don't know how to get the item id as required by (gimp-item-get-
image item) function.


You said you found the answer then your last statement seems to indicate you 
haven't.


Apart from the previous suggestions on how to find the image ID I had 
another thought. If you are writing a script where you want to right click 
an image and run your script from the menu that will pop up you can set up 
your script so the image ID and drawable ID are automatically passed to your 
script.


In the script-fu-register block where you have the list of SF-* parameters, 
you add two lines right before any other SF-* parameters:

  SF-IMAGE   "Image"0
  SF-DRAWABLE"Drawable" 0

In the define for your script you would add "image" and "drawable" as the 
first two parameters expected by your script. You can use any variable names 
you want in place of "image" and "drawable".


If your define was
  (define (my-script-fu-script param1 param2)
you would change it to
 (define (my-script-fu-script image drawable param1 param2)

The variable name "image" will automatically be set to the ID of the image 
that you right clicked.


--
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] Scheme - image ID

2016-03-12 Thread Kevin Payne
I'm puzzled what you're trying to do because it seems you're going about this 
backwards.

You would usually know the item ID because you know which image it's associated 
with, so wouldn't need to find the image that the item is associated with.

For example to get a layer-id, you'd have to know which image it's in, using: 
gimp-image-get-active-layer

Kevin 


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of 
uga...@talktalk.net <uga...@talktalk.net>
Sent: 12 March 2016 19:20
To: uga...@talktalk.net; gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Scheme - image ID

I found the answer. Not sure why it wasn't working when I first tried
it.

Still don't know how to get the item id as required by (gimp-item-get-
image item) function.

-u


>Original Message
>From: uga...@talktalk.net
>Date: 12/03/2016 18:04
>To: <gimp-user-list@gnome.org>
>Subj: [Gimp-user] Scheme - image ID
>
>I would likke to find the image ID from a Scheme script.
>
>(gimp-image-list) run in the Scheme console returns e.g. (1 #(5)) so
I
>know from this that the image-id is 5, but if I have multiple docs
open
>I may get the return value (2 #(8 5)). So how do I find and pass the
>correct image ID to a Scheme variable inside a script? E.g. (let* (
>(img (cadr(gimp-image-list))) ) img ) now returns #(8 5).
>
>I believe the function needed may be (gimp-item-get-image item), but
>how do I find the item-ID and assign it to a variable?
>
>Any help is appreciated.
>
>Thanks
>
>-u
>___
>gimp-user-list mailing list
>List address:gimp-user-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] gimp-drawable-curves-spline

2016-02-24 Thread Kevin Payne
If you use the procedure-browser  (at GIMP menu  Help>>Procedure Browser) it 
shows the parameters required (which appear to be mostly the same, other than 
the control points have changed from being INT to FLOAT)

Kevin

Question for developers: Can you please make it possible to copy the text in 
the Procedure Browser for situations such as these. 


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Maurizio 
Loreti <maurizio.lor...@gmail.com>
Sent: 24 February 2016 15:16
To: gimp-user-list@gnome.org
Subject: [Gimp-user] gimp-drawable-curves-spline

Hello -
I am using GIMP 2.9.3 from Partha’s Place, on a Mac running OS X; from time to 
time I use a scheme plugin found in the gimpfx-foundry distribution 
(http://gimpfx-foundry.sourceforge.net) called "salonen-vivid-saturation.scm”.  
And, yes, I understand that gimpfx-foundry is unmaintained since ?2008? - 
however that scheme procedure has always worked well for me up to GIMP 2.8.

With GIMP 2.9 I get al alert saying that gimp-curves-spline (called from line 
63 in the .scm procedure) is obsolete, and replaced now by 
gimp-drawable-curves-spline.  The procedure however works; but I know some 
scheme and I would like to edit the .scm file in order to call 
gimp-drawable-curves-spline - but I cannot find on the Internet the synopsis 
for that new function.

The synopsis for the old one is:  gimp-curves-spline (drawable, channel, 
num_points, control_pts)

Can some kind soul tell me how gimp-drawable-curves-spline must be called?

--
Maurizio Loreti   -   maurizio.lor...@gmail.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


Re: [Gimp-user] Basic Color Management

2016-02-11 Thread Kevin Brubeck Unhammer
"Mike Brennan"  čálii:

> GIMP 2.8.14 Windows 7 64
>
> In Preferences -> Color Management I've selected "Mode of operation" =
> "Color managed display"
>
> There's a checkbox: "Try to use the system monitor profile" that I'm
> unclear about.
>
> I've calibrated/profiled my display with ColorMunki hardware. My
> understanding (wrong?) is that ColorMunki installed an appropriate
> profile for my display on the system, and that all output from ANY
> application to the display goes through an OS driver that uses that
> profile. If that is so, my assumption is that GIMP will "use" the
> correct display profile implicitly, without needing to be told to do so.
>
> I do not understand whether checking "Try to use the system monitor
> profile" is unnecessary, redundant, or even harmful.

When you profile your display you get a two-part result:

- a vcgt/LUT part that does white point correction, applied system-wide
  on login (it's often noticable when this is applied, e.g. with
  slightly colder or warmer colours all-round)

- a gamma/hue/saturation part that has to be applied by individual
  colour-managed programs

On Linux, if you have the right setup, programs can query the system for
what file contains the gamma/hue/saturation part – that's the part
that's applied by the "Try to use the system monitor profile" checkbox.
So this should work in e.g. GNOME or KDE if you've selected your profile
in your system colour management settings, but in desktops like XFCE you
have to run a separate program, or select the profile manually from GIMP
settings.

Caveat: I have no formal training in this, please read what the experts
say instead:
https://encrypted.pcode.nl/blog/2013/11/24/display-color-profiling-on-linux/


signature.asc
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
List archives:   https://mail.gnome.org/archives/gimp-user-list

Re: [Gimp-user] Where are the plug-ins?

2016-02-10 Thread Kevin Payne
It's all still there, just click-through on "see the glossary": 
http://registry.gimp.org/glossary/a

Kevin


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Dennis G. 
Wicks <gimp-for...@mgssub.com>
Sent: 10 February 2016 22:00
To: gimp-user-list@gnome.org
Subject: [Gimp-user] Where are the plug-ins?

The plug-in registry seems to be locked/trashed/kaput whatever.

Is there any place that I can download plug-ins
now? Or am I just out of luck?

Many TIA!
___
gimp-user-list mailing list
List address:gimp-user-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] Can't open nef images in gimp 2.9.3

2016-02-09 Thread Kevin Cozens

On 16-01-24 04:54 PM, Alexandre Prokoudine wrote:

On Sun, Jan 24, 2016 at 10:01 PM, JamesB wrote:


You already know the solution, James: use the stable version.


am using 2.8.16!


That's quite unlikely. As mentioned earlier, GIMP 2.8.x simply doesn't
have the plugin for loading NEF.


For loading NEF files you need the gimp-dcraw or gimp-ufraw packages 
installed. On my machine I'm using the dcraw based package.


--
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] [off-topic] how to register on gimpchat.com

2016-02-05 Thread Kevin Payne

I've posted a message asking for support on your behalf: 
http://gimpchat.com/viewtopic.php?f=13=13635

Kevin

From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Helmut 
Jarausch <jarau...@skynet.be>
Sent: 05 February 2016 10:33
To: gimp-user-list@gnome.org
Subject: [Gimp-user] [off-topic] how to register on gimpchat.com

Hi,
sorry for the noise.

I can't register for the gimpchat forum since I've never received the 
confirmation email. I have requested it several times without success.
I am on Linux and log ANY incoming mail (even if classified as SPAM).

Many thanks for you help,
Helmut

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


Re: [Gimp-user] how to scale down image without quality loss

2016-01-24 Thread Kevin Cozens

On 01/21/2016 11:57 PM, boydy33 wrote:

All I am trying to do is scale a large .EPS logo which is 1.2Mb and default
imports into Gimp 2.8.14 at 100dpi?, Width 826 and Height 1170 with no
Anti-Aliasing, down to a logo of around 28mm high without losing too much image
quality.


If you want the image to appear on paper at 28mm high at 100dpi you can 
calculate the size of the image in pixels using that information.


28mm high at 100dpi works out to 110 pixels. If you are trying to scale an 
image that is over 800 pixels high you are losing a lot of information. I 
would suggest you up your dpi value to at least 300 for such a small image.


--
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] Hiding tabs

2015-12-16 Thread Kevin Payne


> On Wed, Dec 16, 2015 at 12:45 PM, Greg Chapman wrote:
>
>> button and the menu option: Tab style > Option > Icon
>
> Which is the default value, no? :)
>
> Alex

No. The default appears to be "Automatic" and hence the text is displayed when 
there is space to do so.

Kevin
___
gimp-user-list mailing list
List address:gimp-user-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] Save and automatically apply a series of editing steps

2015-12-07 Thread Kevin Payne

 Yes it is possible to automate a sequence of steps, BUT it's a programmatic 
solution - you have to write scripts in Scheme, Python or maybe Perl.

At present (in 2.8.x) the support for scripts is firmly based around low 
bit-depth. I was asking if the API has been updated to incorporate the high-bit 
depth features (and all the GEGL operations), but perhaps that question (and 
the multitude of associated questions) would be better placed on the developers 
mailing list.

Kevin

From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Elle Stone 
<ellest...@ninedegreesbelow.com>
Sent: 07 December 2015 16:14
To: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Save and automatically apply a series of editing steps

>> I'd like to be able to open an image file in GIMP (GIMP 2.9, not sure if
>> the version makes a difference) and have a series of editing steps
>> performed automatically.

If I were asking this question just for myself, I'd probably assume that
figuring out "how to" is too much trouble.

However, in addition to my own interest in being able to automate
applying a series of editing steps, recently two other people have sent
me emails asking the same question.

Both of these people are new to GIMP and using my patched version GIMP
2.9 from git. They both seem to like high bit depth GIMP quite a lot.
And both of them are looking for ways to automate steps for faster
throughput when there are a lot of images to edit all at once.

I'm in a total state of confusion as to what Pat's and Kevin's answers
actually mean in practical "how to" terms, so my apologies but I'll try
asking again:

Is it possible right now for users to automate a series of editing steps
in high bit depth GIMP? If yes, is there a guide somewhere? Will the
resulting images be high bit depth images or only 8-bit images?

Best regards,
Elle

___
gimp-user-list mailing list
List address:gimp-user-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] Plugin for copying mouse coordinates to clipboard

2015-12-06 Thread Kevin Payne



From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Alexandre 
Prokoudine <alexandre.prokoud...@gmail.com>
Sent: 06 December 2015 22:06
Cc: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Plugin for copying mouse coordinates to clipboard

On Mon, Dec 7, 2015 at 12:13 AM, Ofnuts wrote:

>>> So yes, theoretically it would be entirely possible to make as many
>>> sample points as needed, then run a script that would export positions
>>> of all sample points to something like CSV. For this to happen,
>>> someone will have to:
>>>
>>> 1) adjust UI to allow for more sample points;
>>> 2) write PDB API;
>>> 3) write a script to access sample points via PDB API and export their
>>> positions.
>>>
>>> Volunteers are more than just welcome.
>>
>> Actually, Kevin is just asking for item #2 :)

>Wouldn't make a huge difference without #1 :)

>Alex

My apologies for appearing to be ranting (again)

Ofnuts is right about what I was asking for, and I beg to differ about the 
number of sample points.

I've raised a bugzilla: 759104 and given a couple of examples of use-cases, 
which use one and two sample points.

Kevin
___
gimp-user-list mailing list
List address:gimp-user-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] Save and automatically apply a series of editing steps

2015-12-06 Thread Kevin Payne

That then begs the question: Have any of the changes in 2.9.2 been reflected in 
updates to the pdb calls for scripting? And if so, how are the fixed 0-255 
ranges being handled?


From: gimp-user-list  on behalf of Pat David 

Sent: 06 December 2015 17:42
To: Elle Stone; gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Save and automatically apply a series of editing   
steps

Unfortunately no, no short version of pushing buttons (yet).

Script-fu or Python are probably the best bet at the moment? At least
there's a script fu console and the pdb to reference while building out a
script...
On Sun, Dec 6, 2015 at 6:35 AM Elle Stone 
wrote:

> I'd like to be able to open an image file in GIMP (GIMP 2.9, not sure if
> the version makes a difference) and have a series of editing steps
> performed automatically.
>
> I found the following tutorial:
> https://www.gimp.org/tutorials/Automate_Editing_in_GIMP/
>
> That's a long, complicated tutorial (probably how people feel when they
> read some of the articles on my website :) ).
>
> Is there a short "push these buttons" version of how to save and then
> automatically apply a series of editing steps?
>
> Best,
> Elle
> --
> http://ninedegreesbelow.com
> Color management and free/libre photography
> ___
> gimp-user-list mailing list
> List address:gimp-user-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] Plugin for copying mouse coordinates to clipboard

2015-12-06 Thread Kevin Payne
As GIMP's built-in mechanism for picking points (Sample points) is completely 
unscriptable (WHY ), I'd imagine creating a new, small layer consisting of 
some crosshairs, then having the user move that layer to the desired location 
and using a script to get that location.

Kevin


From: gimp-user-list <gimp-user-list-boun...@gnome.org> on behalf of Ofnuts 
<ofn...@gmx.com>
Sent: 05 December 2015 21:01
To: gimp-user-list@gnome.org
Subject: Re: [Gimp-user] Plugin for copying mouse coordinates to clipboard

On 05/12/15 19:13, Hugo M wrote:
> I need a plugin for copying image coordinates to clipboard when I click a
> point in an image. This is because I need to manually copy some coordinates
> of some points in images, but I'd really like to just click a point and
> then the coordinates are copied into the clipboard. That will really boost
> my productivity in this task.
>
> If there is no plugin to do something like that, I'd appreciate any clue of
> how to create that plugin.

A completely different way of doing it, but possibly just as efficient:
use the path editor, making an anchor on each point for which you want
to export the coordinates, then use my path-csv script to export the
path (ie, all the points in one go) to a CSV file:


Doc: http://gimp-path-tools.sourceforge.net/tools.shtml#path-csv
Download:
http://sourceforge.net/projects/gimp-path-tools/files/scripts/path-csv-0.1.py/download
___
gimp-user-list mailing list
List address:gimp-user-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] HEX to Pantone Color Conversion

2015-11-25 Thread Kevin Cozens

On 15-11-25 12:45 PM, Robert &  Betty Lustila wrote:

Good day, I'm looking to find a way to convert HTML 3e479a to its
corresponding Pantone Color Code - Is there any way to do this?  Thanks


On my website I have a file that has a Pantone-like palette for use with 
GIMP. I don't know how accurate the colours are to actual Pantone colours 
but you could take a look. The palette file can be seen at

http://ve3syb.ca/software/gimp/extras.html

--
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] any tricks for making black look really black

2015-11-05 Thread Kevin Cozens

On 15-11-04 04:04 AM, kwisj wrote:

We are printing onto 100% polyester. the only thing is that the blacks look a
littel washed outany tricks for the settings on GIMP to try and work around


When it comes to printing, black ink by itself won't give you a real dark 
black. The blackest-black you can get when printing in CMYK is C-75 M-68 
Y-67 K-90 (from a formula on a web page). These percentages are different 
than I remembered. The main idea is that you need more than just black ink.


--
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] Compatible Digital background Programs

2015-09-14 Thread Kevin Cozens

On 15-09-14 02:26 PM, Pat David wrote:

Hi!  Not sure what you mean by "digital background" program.  Could you
elaborate or point to an example of what you mean?

On Mon, Sep 14, 2015 at 11:51 AM Londyn2015 <for...@gimpusers.com> wrote:


I am new to Gimp and am looking for a digital background program that is
easy-to-use with Gimp. I have been reading and shopping on and off for
days and
am more confused than ever. Does anyone use a digital background program
that
they would highly recommend? I'd like to have a selection of backdrops for
holidays, infants, families, pin-up, school, etc.


I think Londyn2015 is looking for a program that provides images that will 
be used in the background layer and then creating other visual elements on 
top of that.


--
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] Comments on GIMP

2015-08-10 Thread Kevin Payne
According to the current documentation,  Tcl is still available!: 
http://docs.gimp.org/2.8/en/gimp-concepts-script-fu.html

Sadly I don't think it's true, and the TkInter support didn't get included in 
the bundled Python, so we can't have the native file-open dialog and have to 
use the GTK abomination.

Kevin 



 Date: Mon, 10 Aug 2015 12:48:40 +0300
 From: alexandre.prokoud...@gmail.com
 To: gimp-user-list@gnome.org
 Subject: Re: [Gimp-user] Comments on GIMP
 
 On Mon, Aug 10, 2015 at 12:29 PM, Ofnuts ofn...@gmx.com wrote:
  On 09/08/15 02:28, Kevin Cozens wrote:
 
  On 15-08-08 12:11 PM, Ofnuts wrote:
 
  Which of the two scripting languages are you talking about?
 
 
  Two? There are four. Two of the four see the most use.
 
 
  Two of the four are also available out of the box. I know about Perl, what
  is the fourth one? (C doesn't count as a scripting language)
 
 https://git.gnome.org/browse/gimp-ruby
 
 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-list mailing list
List address:gimp-user-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] Comments on GIMP

2015-08-08 Thread Kevin Cozens

On 15-08-08 12:11 PM, Ofnuts wrote:

Which of the two scripting languages are you talking about?


Two? There are four. Two of the four see the most use.

--
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 disclaimer/favourite | --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] Watermarking in batches

2015-07-14 Thread Kevin Cozens

On 15-07-14 02:26 PM, Ed wrote:

Can anyone tell me the best GIMP way to apply a watermark to a batch of
pictures?  I have tried to use the migee.scm with the example script
provided in the notes.  After many attempts,  all I get is another command
screen with only an option to close.


I would point you to the program called composite which is part of 
ImageMagic instead of using GIMP. I'm a Linux user so I can't say for 
certain if that is an option for you.


--
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 disclaimer/favourite | --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] a fish blowing bubbles

2015-06-26 Thread Kevin Cozens

On 15-06-24 03:18 PM, dontfretit wrote:

I created an animation of a fish blowing bubbles in gimp 2.8.14.  Each set of
bubbles in each frame begins to line up and form a msg.  However, I can't figure
out how to erase bubbles in previous layers


When you export (to .gif?) you need to choose the option to replace previous 
frames.


--
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 disclaimer/favourite | --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] What happened to old fonts?

2015-06-22 Thread Kevin Cozens

On 15-06-21 09:19 PM, bloody knuckles wrote:

My old computer (windows 7) crashed and when I got a new one (windows 8.1)
and downloaded the new version of gimp (2.8) one of the best fonts was
missing.  I use this font (victorian LET thin) for labeling products I make


The fonts which ship with Windows varies from release to release. If you 
can't access the set of fonts on the hard drive from the machine that ran 
Windows 7 you will have to look somewhere else to try and find (or buy) a 
new copy of the font.


Once you have the font you just copy it to the Fonts directory under C:\Windows.

--
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 disclaimer/favourite | --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


  1   2   3   >