Re: Wacom-tablet: Gimp kills mouse

2000-07-10 Thread Jeff Sheffield

well i am such a geek that I have multiple computers.
I have 1 mon 1 key and 1 mouse.
When i switch back and forth between x servers 
gpm gets all confused about the pointer 
(I suspect you are seeing a side effect of that same problem.

My solution...
ctrl-alt-f3
ctrl-alt-f7  (don't move the mouse for a sec)

the first one takes you to a tty terminal
the second one takes you back into x and for some
reason gpm seems to be less confused then ..
that works for me.

Jeff
On Sun, Jul 09, 2000 at 10:00:48AM +0200, Peter Daum wrote:
> Hi,
> 
> I currently have a Wacom Intuos tablet in addition to a PS/2
> mouse connected to my machine (Linux 2.2.15, XFree86 3.3.6, Gtk
> 1.2.8, Gimp 1.1.24).
> 
> Normally, they live in peaceful coexistence - I can
> alternatively use the mouse or the tablet to move the X pointer.
> As soon as I start Gimp, the mouse becomes unusable. After that,
> the only possibility to revitalize the mouse is to start the X
> server again. The exact configuration for the tablet doesn't seem
> to have any influence - I tried several variations without any
> change.
> 
> Is anybody experiencing similar problems? Is this a general
> issue, or am I just doing something wrong? While I love the
> tablet for use with gimp, for other purposes I still prefer the
> regular mouse ...
> 
> Regards,
>Peter
Thanks, 
Jeff

--
| Do not try to cut your own hair.   |
|   -- Forrest Gump  |
|   -- Winston Groom |
--
| Jeff Sheffield |
| [EMAIL PROTECTED]   |
|  - http://buzzard.kdi.com/jeff/family/ |
|  - http://www.team-linux.com/  |
--



Re: Retouching photos

2000-07-10 Thread Jeff Sheffield


> The clone tool should do the trick.
ditto, I have always had great success with this one
in situations such as you describe..

kinda like liposuction for pixals.

On Sun, Jul 09, 2000 at 05:26:01PM +1200, Nigel wrote:
> The clone tool should do the trick.
> 
> 
> Nigel
> - Original Message - 
> From: "Dennis Kent" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Sunday, July 09, 2000 2:04 PM
> Subject: Retouching photos
> 
> 
> > MIME-Version: 1.0
> > Content-Type: text/plain; charset=us-ascii
> > 
> > Using Gimp 1.1.24, Mandrake Linux V7, PIII/550, 128mb
> > RAM.
> > 
> > I have a black and white photo I shot of an actress on
> > stage.  She feels that there is a slight double-chin
> > problem due to angle of the head in the shot.  I have
> > done very minor retouching before, but I can't quite
> > get the handle on this one.
> > 
> > The double chin is slightly darker than the front of
> > the chin and the neck on either side of it.
> > 
> > I've tried using the burning-in tool to darken it
> > further and perhaps make it appear further back.  This
> > shows some promise, but I'm convinced that it is the
> > way to go.  I've also tried bringing in some of the
> > almost-black background where the extra skin is in
> > front of it to lesson the size.  This might help but
> > it doesn't appear to be the whole answer.
> > 
> > There is a line-wrinkle across the whole neck were the
> > extra skin meets it.  Perhaps cutting and pasting it
> > higher is the answer?
> > 
> > Any ideas would be appreciated.
> > 
> > dj
> > 
> > __
> > Do You Yahoo!?
> > Get Yahoo! Mail - Free email you can access from anywhere!
> > http://mail.yahoo.com/
Thanks, 
Jeff

--
| Do not try to cut your own hair.   |
|   -- Forrest Gump  |
|   -- Winston Groom |
--
| Jeff Sheffield |
| [EMAIL PROTECTED]   |
|  - http://buzzard.kdi.com/jeff/family/ |
|  - http://www.team-linux.com/  |
--



Re: Some perl error

2000-07-10 Thread Jeff Sheffield

i ran into the same problem as well..

could building perl 5.6.0 like this
./configure -Uuselargefiles -des
(essentially turning of uselargefiles)
cause gimp-1.1.24 not to build correctly..?
(ahhh well it does ..@ least on my box anyway )
so I guess my question really is 
does that make since...?

P.S. I had to build perl like that for 
apache dso stuff ;)
I am currently separating out the perl trees and
rebuilding gimp.






On Sat, Jul 08, 2000 at 03:16:12PM +0200, Marc Lehmann wrote:
> On Sat, Jul 08, 2000 at 01:19:09PM +0200, Johannes Zellner <[EMAIL PROTECTED]> 
>wrote:
> > > finally loaded.
> > > 
> > > * * WARNING **: gimp:  wire_read: unexpected EOF
> > > perl:  error in loading shared libraries:  
> > > /usr/lib/perl5/site_perl/i386-linux/ao/Gimp/Lib/Lib.so: undefined symbol: 
> > > gimp_procedural_db_proc_info
> > 
> > I had the same some time ago. I installed some perl libs, reinstalled
> > (maybe not even necessary) and then it worked. Alas, I don't remember
> > exectly the libs. Something like
> > 
> > ii  libparse-recdescent-perl   1.77-1 Generates 
>recursive-descent parsers in Perl
> > ii  pdl2.005-4The perl data 
>language
> 
> Those cnanot be the cause for the error. Most probably, make distclean,
> re-configurring and rebuilding will solve the problem.
> 
> -- 
>   -==- |
>   ==-- _   |
>   ---==---(_)__  __   __   Marc Lehmann  +--
>   --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED] |e|
>   -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
> The choice of a GNU generation   |
>  |
Thanks, 
Jeff

--
| Do not try to cut your own hair.   |
|   -- Forrest Gump  |
|   -- Winston Groom |
--
| Jeff Sheffield |
| [EMAIL PROTECTED]   |
|  - http://buzzard.kdi.com/jeff/family/ |
|  - http://www.team-linux.com/  |
--



Re: Gimp Install directory

2000-07-10 Thread Jeff Sheffield

here is a simple shell script that i use

 install-gimp.sh

#!/bin/sh

date |tee build-start;

make distclean

./configure --prefix=/opt/gimp/gimp-1.1.24 \
--enable-gimpdir=.gimp-1.1.24 --enable-python |tee configure.out; \
make |tee make.out; date |tee build-end;

make install |tee make.install.out

echo "build start time"; cat build-start; 
echo "build end time "; cat build-end

-
note the --enable-gimpdir option that sets the users
preferences up in a different directory than other versions.
I find this to be handy ;)


On Thu, Jul 06, 2000 at 06:01:43PM -0500, Mike Dobbs wrote:
> Does anyone know how to get gimp installed and running happy in it's own
> direcory without using /usr/local.  I have installed it useing the prefix
> option, but it still continues to look in /usr/local for the rcfiles and
> user_install.
> thanks
Thanks, 
Jeff

--
| Do not try to cut your own hair.   |
|   -- Forrest Gump  |
|   -- Winston Groom |
--
| Jeff Sheffield |
| [EMAIL PROTECTED]   |
|  - http://buzzard.kdi.com/jeff/family/ |
|  - http://www.team-linux.com/  |
--



Re: photo retouch

2000-07-10 Thread Jon Winters

Nikolai Vladychevski wrote:

> somebody tell me where to read a good paper about retouching?

Practice!  There is no substitute.  Just experiment and you'll start to
learn how to fix things up.

I did a quickie touch-up on the image you attached:
http://obscura.obscurasite.com/images/fixed.jpg

First frame is the raw image
Second frame increased saturation
third frame... adjusted curves
Fourth frame warp sharpened then whitened teeth with dodge tool.

I think the warp sharp may have been a little over the top.  I would
probably use frame  #3 if I had to choose. Warp Sharp made the eyes look
smaller and I like big eyes.

If the image were large I would have finished up by removing all pores
and stuff with the convolver tool.
--
Jon Winters  http://www.obscurasite.com/jon/

   "Everybody Loves The GIMP!"
  http://www.gimp.org/



Re: photo retouch

2000-07-10 Thread clemensF

> Feiyi Wang:

> I also want to point out that the author of the page (Carey Bunks) is
> the same one who wrote the book "Grokking the GIMP" and put it on-line
> for free. There is a whole chapter of it devoted to the topic of using
> GIMP for retouch and enchancement. I will encourage anyone interested
> to read it. The link for the free book is:
>
> http://gimp-savvy.com/BOOK/index.html

thank you *very much*!



Re: Two How-to Questions

2000-07-10 Thread Alex Harford

Andrew J Fortune wrote:
> 
> Hi all,
> 
> (1) If you have drawn an outline (e.g. a circle, square or any arbitrary
> closed path) with a pencil, brush, GFig etc., how can you turn that into a
> selection ? (note - I am not talking about using the Bezier tool).

Not quite sure what you mean... maybe you want to use channels and then
do a Channel to Selection, but that doesn't really help if you already
have drawn the lines...

> (2) How can you turn all occurrences of a particular color (e.g. white) into
> transparent areas ?
> 

Use Select -> By Colour..., then Cut

Alex Harford
Author of "GIMP Essential Reference"
http://www.dowco.com/~alexh



Re: photo retouch

2000-07-10 Thread Feiyi Wang

Hi, 

It seems that there are quite a bit interest on the link I posted a while ago and also
some access problems with it. I assure you that the link itself is no problem, so you
should just be patient and try again from different machine (?)

I also want to point out that the author of the page (Carey Bunks) is the same one who
wrote the book "Grokking the GIMP" and put it on-line for free. There is a whole 
chapter
of it devoted to the topic of using GIMP for retouch and enchancement. I will encourage
anyone interested to read it. The link for the free book is:

http://gimp-savvy.com/BOOK/index.html

Feiyi


"Guillermo S. Romero / Familia Romero" wrote:
> 
> >> > http://www.geocities.com/SiliconValley/Haven/5179/
> >> is this just happening to me?  when i try to get this page with netscape
> >> i get redirected (after a 404) to some insane 'net-game.  happens even when
> >> shortening the url back to ...cities.com/  i know i could get into Silicon-
> >> Valley...
> >I use netscape also and have no problems viewing the page. Maybe you made
> >a typo or cut'n pasted to much or to little?
> 
> I got a similar problem in another page. GeoCities seems to have problems today.
> 
> GSR
>



Re: photo retouch

2000-07-10 Thread Guillermo S. Romero / Familia Romero

>> > http://www.geocities.com/SiliconValley/Haven/5179/
>> is this just happening to me?  when i try to get this page with netscape
>> i get redirected (after a 404) to some insane 'net-game.  happens even when
>> shortening the url back to ...cities.com/  i know i could get into Silicon-
>> Valley...
>I use netscape also and have no problems viewing the page. Maybe you made
>a typo or cut'n pasted to much or to little?

I got a similar problem in another page. GeoCities seems to have problems today.

GSR
 




Re: photo retouch

2000-07-10 Thread Lenka Otap



On Mon, 10 Jul 2000, clemensF wrote:

> > http://www.geocities.com/SiliconValley/Haven/5179/
> 
> is this just happening to me?  when i try to get this page with netscape
> i get redirected (after a 404) to some insane 'net-game.  happens even when
> shortening the url back to ...cities.com/  i know i could get into Silicon-
> Valley...

I use netscape also and have no problems viewing the page. Maybe you made
a typo or cut'n pasted to much or to little?
Lenka.




Two How-to Questions

2000-07-10 Thread Andrew J Fortune


Hi all,

(1) If you have drawn an outline (e.g. a circle, square or any arbitrary
closed path) with a pencil, brush, GFig etc., how can you turn that into a
selection ? (note - I am not talking about using the Bezier tool).

(2) How can you turn all occurrences of a particular color (e.g. white) into
transparent areas ?

Thanks in advance,

regards,
Andrew J Fortune




Re: photo retouch

2000-07-10 Thread clemensF

> Feiyi Wang:

> the following link, titled "photo touch up and enhancement in the GIMP"
> should cover the basic stuff.
> 
> http://www.geocities.com/SiliconValley/Haven/5179/

is this just happening to me?  when i try to get this page with netscape
i get redirected (after a 404) to some insane 'net-game.  happens even when
shortening the url back to ...cities.com/  i know i could get into Silicon-
Valley...

clemens



Re: photo retouch

2000-07-10 Thread Feiyi Wang

hi,

it depends on how good the original photo is. Are you scanning it directly
from slide? negative? or you scan it from print? GIMP should help some,
but no miracles here (unless you are a real good painter, and you can
"create" something that not originally there, but it is no longer called
"retouch" anymore), the old saying "garbage in, garbage out" still holds.

the following link, titled "photo touch up and enhancement in the GIMP"
should cover the basic stuff.

http://www.geocities.com/SiliconValley/Haven/5179/

hope this helps

Feiyi

Nikolai Vladychevski wrote:
> 
> Hello,
> 
> I wanted to add something beautiful to my site, so I scanned a picture
> of a nice lady. But the problem is, I never can get it to look like a
> photos on other sites (like www.lamaslinda.com for example). I tryed
> Curves, Hue/Saturation, Brightnes/Contrast, Sharpen filter, everything
> but the photos of others always look better than mine. I want to achieve
> the quality of the photo I attach, how can I do this with gimp? Or can
> somebody tell me where to read a good paper about retouching?
> 
> Thanks in advance.
> Nikolai
> 
>   
>--
>  [Image]



photo retouch

2000-07-10 Thread Nikolai Vladychevski

Hello,

I wanted to add something beautiful to my site, so I scanned a picture
of a nice lady. But the problem is, I never can get it to look like a
photos on other sites (like www.lamaslinda.com for example). I tryed
Curves, Hue/Saturation, Brightnes/Contrast, Sharpen filter, everything
but the photos of others always look better than mine. I want to achieve
the quality of the photo I attach, how can I do this with gimp? Or can
somebody tell me where to read a good paper about retouching?

Thanks in advance.
Nikolai



RE: Fonts in Script-FU Dialogs

2000-07-10 Thread Andrew J Fortune


Hi Stephan,

Check it out at http://www.helixcode.com.

regards,
Andrew

-Original Message-
From: Stephan Henningsen [mailto:[EMAIL PROTECTED]]
Sent: Monday, 10 July 2000 9:24 PM
To: Andrew J Fortune
Cc: Guillermo S. Romero / Familia Romero; [EMAIL PROTECTED]
Subject: RE: Fonts in Script-FU Dialogs


On Sun, 9 Jul 2000, Andrew J Fortune wrote:

> Hi Guillermo,
> 
> Thanks for your lead. I have located a Helix RPM of Gimp-1-1-24 and

Excuse me, but what is all this Helix talk about?  Is it a
nickname for some new RedHat dist. or what?


-- 

-Stephan  /
 /  http://linux.e.iha.dk/~stephan





RE: Fonts in Script-FU Dialogs

2000-07-10 Thread Stephan Henningsen

On Sun, 9 Jul 2000, Andrew J Fortune wrote:

> Hi Guillermo,
> 
> Thanks for your lead. I have located a Helix RPM of Gimp-1-1-24 and

Excuse me, but what is all this Helix talk about?  Is it a
nickname for some new RedHat dist. or what?


-- 

-Stephan  /
 /  http://linux.e.iha.dk/~stephan