Re: [Gimp-user] Off topic printer question.

2001-03-03 Thread kate
for the responses. Rebooting was something I'd tried prior to posting the question. I don't know what I did to fix it, but it's fixed. The problem was initiated by trying to print an image directly from kview. I no longer do this. -- Kate http://www.katewerk.com

[Gimp-user] Wacom Pen Partner

2001-06-02 Thread kate
A friend just gave me one of these things. Before I even break it out of the box, does anyone know if it will work with SuSE 7.0? I am not a geek, so if there is major hacking involved, I'd rather not. It has Corel Print and PHotohouse software included. Or sayeth the box. -- Kate http

Re: [Gimp-user] Creating more natural/traditional appearance effects?

2001-09-21 Thread kate
that literally doubled manufacturing time over that of the previous manual design/opaque projector technique. -- Kate http://www.katewerk.com ___ Gimp-user mailing list [EMAIL PROTECTED] http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user

Re: [Gimp-user] Curved Text

2001-11-20 Thread kate
-- Kate http://www.katewerk.com ___ Gimp-user mailing list [EMAIL PROTECTED] http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user

[Gimp-user] Setting up gimp server for the web

2009-01-15 Thread Kate Yoak
! Cheers, Kate ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

[Gimp-user] gimp_file_load_layer(s) not found

2009-01-17 Thread Kate Yoak
); }; Gimp::on_net(\layer); exit main(); Thanks again everyone! Kate ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

[Gimp-user] Saving .psd file

2009-01-17 Thread Kate Yoak
... Humble thanks one more time! Kate ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

[Gimp-user] Forking with exit main()

2009-01-23 Thread Kate Yoak
OK, so I have all the software I wanted. Gimp is awesome! This is what I will be doing to use Gimp in modperl: unless( fork()){ Gimp::on_net(\do_stuff); }else{ wait(); find_the_generated_image(); finish_responding_to_web_request(); }; Is anything going to come out and bite me?

[Gimp-user] Newbie perl-gimp question

2009-01-14 Thread Kate T Yoak
) dies on save (I tried file_gif_save file_bmp_save. Both fail. What am I doing wrong? What's a good place to find a tutorial that's directed specifically at stand-alone perl-server applications? Thanks for the help! Kate Here is my sample script: #!/usr/bin/perl use Gimp qw

Re: [Gimp-user] Newbie perl-gimp question

2009-01-15 Thread Kate T Yoak
I can do, I suppose - figure out how to set up the overall environment. I'll post it as a separate question, though. Thanks again! Kate -Original Message- From: Owen [mailto:rc...@pcug.org.au] Sent: Thursday, January 15, 2009 12:22 AM To: Kate T Yoak Cc: gimp-user

[Gimp-user] Outputting image

2009-01-16 Thread Kate T. Yoak
love get the binary data that is the image and do with it as I please. Anybody done this? Cheers, Kate ___ Gimp-user mailing list Gimp-user@lists.XCF.Berkeley.EDU https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user

Re: [Gimp-user] Outputting image

2009-01-16 Thread Kate T. Yoak
Not by typing something funky in the save-as field. You could always make a named pipe, I suppose: $ mknod pipe.gif p $ out.pl pipe.gif That will block trying to read the pipe; go to gimp and save the image to pipe.gif and then out.pl will start getting data... This is neat. Never

Re: [Gimp-user] gimp_file_load_layer(s) not found

2009-01-17 Thread Kate T. Yoak
Owen wrote: The two functions, gimp_file_load_layer and layers, which I located in my local installation's Xtns browser are not found by perl-gimp on the server. It says, function/macro gimp_file_load_layers not found in Gimp Should I give up or is there a reason it might be failing? (These

Re: [Gimp-user] gimp_file_load_layer(s) not found

2009-01-17 Thread Kate T. Yoak
The reason you are having a problem is because you are using a very old version of GIMP. GIMP 2.2 is no longer supported. The file load operations you are asking were added in the 2.4 version of GIMP. Sigh. CentOS rpm is 2.2. Never even occurred to me to check! Kind of like never

Re: [Gimp-user] gimp_file_load_layer(s) not found

2009-01-17 Thread Kate T. Yoak
Kate T. Yoak wrote: The reason you are having a problem is because you are using a very old version of GIMP. GIMP 2.2 is no longer supported. The file load operations you are asking were added in the 2.4 version of GIMP. Sigh. CentOS rpm is 2.2. Never even occurred to me to check

Re: [Gimp-user] gimp_file_load_layer(s) not found

2009-01-18 Thread Kate T. Yoak
Thanks, Mark, for a thoughtful reply. You are right about CentOS. Those who want latest-and-greatest use Fedora. CentOS is designed for stability. I read that somewhere. :-) A couple of missing functions didn't offend me and I got around them. The saving to .psd issue - well, that's more

Re: [Gimp-user] Forking with exit main()

2009-01-24 Thread Kate T. Yoak
I may have missed earlier discussion on this, but are you using GIMP 2.6.x? If so, were did you get Gimp-Perl for it? I've tried the one from the download site for 2.2 but it doesn't compile. Or is this the net-fu package? No, I am not. I am using 2.2 because I am running on CentOS and

Re: [Gimp-user] Forking with exit main()

2009-01-24 Thread Kate T. Yoak
For posterity: this worked beautifully, with one modification: This is what I will be doing to use Gimp in modperl: unless( fork()){ Gimp::on_net(\do_stuff); CORE::exit main() }else{ wait(); find_the_generated_image(); finish_responding_to_web_request(); }; The only problem