Re: GIMP ans Scanners

2000-04-25 Thread Wandered Inn

Richard wrote:
 
 Hello
 
 I'm sure this is an old chestnut but has someone used GIMP with a Umax
 S-6E scanner ?
 
 I've just set up SuSE 6.4 and GIMP.  I'd like to get sane to dump the
 image files into GIMP.
 
 Anyone make any suggestions ?  I've looked at books and FAQs.  Can't
 find anything relevant.

I've got a UMAX Supervista s-12 and it works great.  Check out the SANE
web site at:

http://www.mostang.com/sane/

The web site says the s-6e is supported.

 
 Thanks
 
 --
 Richard
 
 Sheffield Linux
 User's Group
 
 http://www.sheflug.co.uk

--
Until later: Geoffrey   [EMAIL PROTECTED]

I'm afraid there will be more problems with W2K than there were with
Y2K...



Re: GIMP and Scanners

2000-04-25 Thread Wandered Inn

Richard wrote:
 
 Hello
 
 Wandered Inn wrote:
 
 
  http://www.mostang.com/sane/
 
 Yes, I did that first.  It's the script for GIMP that I'm looking for.
 The bit that tells sane to push the file over to GIMP :-)

What version of GIMP are you running?  How was it installed?  I don't
know that much about SUSE.  You've got to create a sym link as follows:

ln -s /usr/local/bin/xscanimage ~/.gimp/plug-ins/

Check out the man page for xscanimage.  Here's a link to it:

http://www.mostang.com/sane/man/xscanimage.1.html


 
 Thanks :-)
 
 --
 Richard
 Sheffield UK

--
Until later: Geoffrey   [EMAIL PROTECTED]

I'm afraid there will be more problems with W2K than there were with
Y2K...



Re: How to see the x,y coordinates instead of just the rulers?

2000-04-25 Thread Robert B. Easter

On Mon, 24 Apr 2000, Erunantion wrote:
 Though speaking of the x  y coordinates, I've always had the same problem
 with them: namely, the coords appear, but don't clear the old coords upon
 mouse movement. They end up being a big mess of black. They still do this
 in the newest cvs of the 1.2 prerelease.
 

I managed to download everything and compile and install gimp 1.1.20.  I'm
NOT having the problem with the coordinates turning into a mess of black. 
Installing gimp was a pain though.  I had to install/reinstall a whole mess of
libraries.  Maybe by installing newer versions of libraries, I avoided the
problem with the coordinates.  Here are my notes on what I did to install gimp:

Required packages:

gimp-1.1.20.tar.gz
GIMP.
Available at www.freshmeat.net


gtk+-1.2.7.tar.gz
The Gimp Tool Kit.  A library for creating graphical user
interfaces.  Requires glib-1.2.7.tar.gz
Available at www.gtk.org

glib-1.2.7.tar.gz
A support library of C routines for lists, hashes, memory
allocation and other things.
Available in the same place as gtk.

Perl Extension: 
Gtk-Perl-0.6123.tar.gz
The Perl interface to Gtk.  The Gimp perl extension
requires this.  Available at www.gtk.org. Requires PDL. 
Install gtk first.  
PDL 1.9906 or higher (2.005 ok)
Perl Data Language.  Needed for perl scripts that do 
pixel
manipulation.  Available at www.CPAN.org
At CPAN, you will have to download whatever else it 
requires:
ExtUtils::F77
File::Spec

imlib 1.9.7
The Image files libraries.  If they are not installed,
go get them. Search lycos for "imlib"
www.labs.redhat.com/imlib/
This is needed for lots of things.  It will also
generate libgdk_imlib*


1.  Ensure that all traces of libgimp, libgtk and libglib are removed
from /usr/lib and /usr/include AND /usr/bin (gtk-config).
Remove old man pages from /usr/man: man1, rm gtk* gdk*

This isn't too important if you install everything
--prefix=/usr
this way, it will add to/replace old stuff.

(OK)

2. Install glib
cd glib-1.2.7
./configure --prefix=/usr
make
make install

Check for /usr/bin/glib-config

ldconfig

(OK)

3.  Install PDL.

Install whatever PDL depends on first: ExtUtils::F77 and File::Spec
(available at www.cpan.org)

perl Makefile.PL
make
make test
make install

(OK)

cd PDL-2.005
perl Makefile.PL
make
Note: it will look for OpenGL/Mesa3D/GLu etc libraries.
Make sure they are either not installed or installed
correctly.  If it finds /usr/include/GL it will think
its installed.  If OpenGL is not installed right, then
edit the config file and disable opengl.
make test
make install
(OK)

4.  Install gtk/gdk

cd gtk+-1.2.7
./configure --prefix=/usr
make
make install

Check for /usr/bin/gtk-config

(OK)

5.  Install Imlib 1.9.7
creates:
/usr/lib/libimlib*
/usr/lib/libgdk_imlib*
/usr/bin/imlib-config
/usr/share/aclocal/imlib*
/usr/include/..

cd imlib-1.9.7
./configure --prefix=/usr
Note: If it fails to find gdk and you just install it,
then you might need to run
ldconfig
rm config.cache

make
make install
(OK)

6.  Install the Gtk-Perl interface.
perl Makefile.PL
make
make test
make install
(OK)

7.  Install gimp.

cd gimp-1.1.20
./configure --prefix=/usr/local/gimp
Note:
GtkXMHTML may not be found.  You have to download
the 

Re: How to see the x,y coordinates instead of just the rulers?

2000-04-25 Thread Erunantion

On Tue, 25 Apr 2000, Robert B. Easter wrote:

 I managed to download everything and compile and install gimp 1.1.20.  I'm
 NOT having the problem with the coordinates turning into a mess of black. 
 Installing gimp was a pain though.  I had to install/reinstall a whole mess of
 libraries.  Maybe by installing newer versions of libraries, I avoided the
 problem with the coordinates.  Here are my notes on what I did to install gimp:

Yeah, those libraries create problems :) What exactly is PDL used
for? It's the only package I haven't gotten yet.

==
Jonathan Erbe   aka Erunantion
 The Annals of Middle-earth 
"http://rush.baked.net/~jerbel/"
 E-mail me at "mailto:[EMAIL PROTECTED]"
==




Re: How to see the x,y coordinates instead of just the rulers?

2000-04-25 Thread Robert B. Easter

On Tue, 25 Apr 2000, Erunantion wrote:
 On Tue, 25 Apr 2000, Robert B. Easter wrote:
 
  I managed to download everything and compile and install gimp 1.1.20.  I'm
  NOT having the problem with the coordinates turning into a mess of black. 
  Installing gimp was a pain though.  I had to install/reinstall a whole mess of
  libraries.  Maybe by installing newer versions of libraries, I avoided the
  problem with the coordinates.  Here are my notes on what I did to install gimp:
 
 Yeah, those libraries create problems :) What exactly is PDL used
 for? It's the only package I haven't gotten yet.

Here's part of what the README file says:

--
PDL -- the package
--

The perlDL project aims to turn perl into an efficient numerical language for
scientific computing. The PDL module gives standard perl the ability to
COMPACTLY store and SPEEDILY manipulate the large N-dimensional data sets which
are the bread and butter of scientific computing. e.g. $a=$b+$c can add two
2048x2048 images in only a fraction of a second.

The aim is to provide tons of useful functionality for
scientific and numeric analysis.

Check the pdl web site at http://pdl.perl.org for more information.


Thats about all I know about it.  Gtk-Perl complained when it was missing.  Its
need by perl programs that do pixel manipulation. Some version of it may have
been installed with my slackware distribution (7.0), but I totally deleted my
original perl installation and installed perl 5.6.0.  So, I've had to install
many perl modules that other people may already have.




Re: GIMP and Scanners

2000-04-25 Thread Richard

Hello
 
Wandered Inn wrote:

 I'm using version 1.1.18

 ln -s /usr/local/bin/xscanimage ~/.gimp/plug-ins/

 Check out the man page for xscanimage.  Here's a link to it:

 http://www.mostang.com/sane/man/xscanimage.1.html
 

I'll have a look into this.
 
Thank you :-)
 


--
Richard
Sheffield UK





PDL Config File?

2000-04-25 Thread Paul


Hi everyone,
Trying to make GIMP 1.1.20 earlier, it stops because I don't have perl PDL
installed.
So, I did perl -MCPAN -e shell, then went through the configuration.  But
the 2 ftp's that I chose in the UK, aren't letting me connect.  I can't
find the config file, so I can remove it then setup the preferences again.
Does anyone know what the file is called, and where it is??

Thanks for any help.