[Gimp-user] anti-aliasing

2005-04-26 Thread JASON JESSO
I have an image that looks ok in gimp, but when I
import it in a PDF document I get a staircase effect.

How do I smooth the edges in gimp?
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] anti-aliasing

2005-04-26 Thread JASON JESSO
When I maginfy the logo in gimp I see the jagged
edges.

I have no idea where to start to fix it.


--- JASON JESSO [EMAIL PROTECTED] wrote:
 I have an image that looks ok in gimp, but when I
 import it in a PDF document I get a staircase
 effect.
 
 How do I smooth the edges in gimp?
 ___
 Gimp-user mailing list
 Gimp-user@lists.xcf.berkeley.edu

http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
 
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] No option to open TIFs (probably more of a compile question)

2005-04-26 Thread Tom Cat
I think this has hit on the problem
libtiff is showing up in /usr/lib instead of $HOME/usr/lib 
It is also the ancient version instead of the new version.

Now how the heck to I get it to look in the right place?  Another env
variable?  Another option in the configure script?

Thanks.

On 4/26/05, Owen [EMAIL PROTECTED] wrote:
 On Mon, 25 Apr 2005 14:29:01 -0400
 Tom Cat [EMAIL PROTECTED] wrote:
 
  During the install I had to set a number of environmental vars:
 
  SED=sed
  LDFLAGS=-L/home/strycat/usr/lib
  LD_LIBRARY_PATH=/home/strycat/usr/lib
  PATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/strycat/bin:/home/strycat/usr/bin/
  LD_RUN_PATH=/home/strycat/usr/lib
  PKG_CONFIG_LIBDIR=/home/strycat/usr/lib/pkgconfig/:/home/strycat/usr/lib/
  PKG_CONFIG_PATH=/home/strycat/usr/:/home/strycat/usr/lib/pkgconfig/:/home/strycat/usr/lib/
  LIBTIFF=/home/strycat/usr/lib -ltiff
  FREETYPE_CONFIG='/home/strycat/usr/bin/freetype-config'
 
 What happens if as root you run 'ldconfig -v'?
 
 or better still 'ldconfig -v|grep tiff'
 
 Does libtiff show up where expected?
 
 
 Owen
 ___
 Gimp-user mailing list
 Gimp-user@lists.xcf.berkeley.edu
 http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] anti-aliasing

2005-04-26 Thread Tom Cat
You could try the unsharp mask.  In gimp 1.x it was filters/enhance. 
In gimp 2.x it appears to be under ScriptFu/Alchemy.

On 4/26/05, JASON JESSO [EMAIL PROTECTED] wrote:
 When I maginfy the logo in gimp I see the jagged
 edges.
 
 I have no idea where to start to fix it.
 
 
 --- JASON JESSO [EMAIL PROTECTED] wrote:
  I have an image that looks ok in gimp, but when I
  import it in a PDF document I get a staircase
  effect.
 
  How do I smooth the edges in gimp?
  ___
  Gimp-user mailing list
  Gimp-user@lists.xcf.berkeley.edu
 
 http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
 
 ___
 Gimp-user mailing list
 Gimp-user@lists.xcf.berkeley.edu
 http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Odd behavoir with big images and memory

2005-04-26 Thread Robin Laing
jim feldman wrote:
 
  I have a curious question.
 
  Have you tried to play with the tile cache sizes?  I had a problem
  some time ago but I didn't get a chance to go further due to priority
  changes.  I was having problems with large images as well.  I got as
  far as changing tile cache sizes and I ran into weird problems.
 
  I will have to get back to this by summer, hopefully. :)
  --
  Robin Laing
 
playing with tile cache is what got me in trouble.  Much over 400 causes 
the problems.

jim
This sounds like the problem that I had.  If it is, then this is 
something that has been carried over from 1.2 into 2.x.

It looks like bug report time.
--
Robin Laing
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


[Gimp-user] Re: anti-aliasing

2005-04-26 Thread Pär Forsling
Tom Cat [EMAIL PROTECTED] wrote:
 You could try the unsharp mask.  In gimp 1.x it was filters/enhance. 
 In gimp 2.x it appears to be under ScriptFu/Alchemy.

Which 2.x do you use? It is still in filters/enhance here, and the
documentation is here: http://docs.gimp.org/en/ch07s06s07.html . The
one in ScriptFu/Alchemy seems to be a simpler version without preview.
I didn't even know there was a unsharp mask script in scriptfu/alchemy.
-- 
Pelle

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


[Gimp-user] Re: No option to open TIFs (probably more of a compile?question)

2005-04-26 Thread Pär Forsling
Tom Cat [EMAIL PROTECTED] wrote:
 I think this has hit on the problem
 libtiff is showing up in /usr/lib instead of $HOME/usr/lib 
 It is also the ancient version instead of the new version.
 
 Now how the heck to I get it to look in the right place?  Another env
 variable?  Another option in the configure script?

You can set the $LD_PRELOAD env. variable before you start gimp,
preferably in a wrapper script. Example:

#!/bin/bash
LD_PRELOAD=/path/to/libtiff.so.3.7.1
exec /path/to/gimp $@

See http://uberhip.com/godber/interception/html/slide_5.html for
explanation of LD_PRELOAD.
-- 
Pelle

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


[Gimp-user] Re: anti-aliasing

2005-04-26 Thread GSR - FR
Hi,
[EMAIL PROTECTED] (2005-04-26 at 1229.34 -0400):
 You could try the unsharp mask.  In gimp 1.x it was filters/enhance. 
 In gimp 2.x it appears to be under ScriptFu/Alchemy.

Unsharp mask sharpens... and it is not a joke, but derived from the
original photographic laboratory technique: as unfocused version of
the negative is applied to the original.

GSR 
 
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user