Re: changing cursors?

2000-01-24 Thread Kelly Lynn Martin

On Tue, 25 Jan 2000 08:32:44 +0100, Olle Viksten <[EMAIL PROTECTED]> said:

>I agree. I think this is a feature that should be on the top of the
>todo-list.

A good way to communicate such things to developers is to submit a bug
report with severity "wishlist". :)

Kelly



Re: changing cursors?

2000-01-24 Thread Olle Viksten

Jon Winters wrote:
> 
> I agree with the cursors.  I would like cursors simmilar to photoshop's
> "precice" cursors.  Cross hairs for tools like crop and marquee and actual
> brus sizes and shapes for brushes.

I agree. I think this is a feature that should be on the top of the
todo-list.

Olle Viksten

-- 
|()|()|()|()|()|()|()|
|()|Coito ergo sum|()|
|()|()|()|()|()|()|()|



[ANNOUNCE] GimpMill 0.3.1

2000-01-24 Thread Ian McKellar

GimpMill is a GIMP plugin written in Python
using James Henstrige's really cool Python
GIMP bindings. It allows the construction of
Sawmill themes within The GIMP - extending
the GIMP interface to allow theme creation like
the GAP extends it to allow animation creation. 

I fixed a little bug thanks to Sven Neumann.
Take a look at the web site (now with a screenshot):
  http://www.yakk.net/projects.gimpmill.html
Or grab the source:
  ftp://ftp.ucc.gu.uwa.edu.au/members/yakk/gimpmill/

Ian

-- 
Ian  McKellar | Email: yakk(a)yakk.net | Web: http://www.yakk.net/
Fax: +61 (8) 9265 0821 / +0 (775) 205 0307 | Home: +61 (8) 9389 9152
If God didn't want us to eat animals, he wouldn't have made them out of meat.



Re: changing cursors?

2000-01-24 Thread Greg Sanders

Yeah, I have been missing that for a while now.

Greg

On Wed, 26 Jan 2000, Jon Winters wrote:

> 
> I agree with the cursors.  I would like cursors simmilar to photoshop's
> "precice" cursors.  Cross hairs for tools like crop and marquee and actual
> brus sizes and shapes for brushes.
> 
> Thanks
> 
> --
> Jon Winters http://www.obscurasite.com/
> OpenVerse  http://www.openverse.org/
> 

-- 

 Greg Sanders {} Col_KFC {} [EMAIL PROTECTED] 
   Site Manager - Themes.org - http://themes.org
Advisory Board Member - Linux.com - http://linux.com
   
 
 p o w e r e d   b y   V A   L i n u x   S y s t e m s
 h t t p : / / v a l i n u x . c o m



Re: changing cursors?

2000-01-24 Thread Jon Winters


I agree with the cursors.  I would like cursors simmilar to photoshop's
"precice" cursors.  Cross hairs for tools like crop and marquee and actual
brus sizes and shapes for brushes.

Thanks

--
Jon Winters http://www.obscurasite.com/
OpenVerse  http://www.openverse.org/



changing cursors?

2000-01-24 Thread teflonlop



I was wondering if its possible to change the way 
the cursor looks for different tools. i find that pencil extremely annoying, 
bloakcs what I'm drawing.
 
thanks
tef


Re: Script-Fu from Perl-Fu?

2000-01-24 Thread Kelly Lynn Martin

On Sun, 23 Jan 2000 18:43:03 +0100, [EMAIL PROTECTED] (Stephan 
Skrodzki) said:

>Howdy,
>I'd like to use a Script-Fu script from within gimp-perl a Gimp tells me:

>function/macro "shadow" not found in Gimp at 
>/home/skrodzki/.gimp-1.1/plug-ins/marly-text-button line 39 (ERROR)

>And excerpt of the script:

>use Gimp qw(:auto __);
>use Gimp::Fu;

>$unsel_lay = gimp_layer_new($img, $img->width, $img->height,
> RGB, "Unsel Shadow", 100, NORMAL_MODE);
>$unsel_lay->add_layer(-1);
>gimp_layer_add_alpha($unsel_lay);
>gimp_edit_clear($unsel_lay);
>script-fu-drop-shadow(0,$unsel_lay,8,8,15,"black",60,1);
 ^

Try using script_fu_drop_shadow (underlines, not dashes).

Perl parses this as script - fu - drop - shadow ().  The first
three evaluate to zero, and the last to a call to the (undefined)
subroutine shadow.

>return $img;
>}

Kelly



Re: Gimp Script-Fu logo samples

2000-01-24 Thread Jon Winters


I've also got some samples

http://obscura.obscurasite.com/openverse/

They were from a logo design contest we had for OpenVerse Chat.  The only
rule was that the logos were made with Gimp.

Enjoy!

--
Jon Winters http://www.obscurasite.com/
OpenVerse  http://www.openverse.org/



Gimp Script-Fu logo samples

2000-01-24 Thread Michael Opdenacker

Hi!

I created a page which shows standard Gimp logos, without having to run
the tool to try them. As long as there is no preview function in The
Gimp, this should save a lot of time for some of you Gimp users!

http://michaelo.free.fr/gimp/logos.html

Hoping this will be useful...

Michael.

--

=
Michael Opdenacker,
33, rue d'Alembert
38000 Grenoble
+33 476 845 472
[EMAIL PROTECTED]
http://michaelo.free.fr
=





[ANNOUNCE] GimpMill 0.3

2000-01-24 Thread Ian McKellar

GimpMill is a GIMP plugin written in Python
using James Henstrige's really cool Python
GIMP bindings. It allows the construction of
Sawmill themes within The GIMP - extending
the GIMP interface to allow theme creation like
the GAP extends it to allow animation creation. 

The new version adds an easy to use UI and much
wider support for sawmill's features. Take a look
at the web site (now with a screenshot):
  http://www.yakk.net/projects.gimpmill.html
Or grab the source:
  ftp://ftp.ucc.gu.uwa.edu.au/members/yakk/gimpmill/

Ian

-- 
Ian  McKellar | Email: yakk(a)yakk.net | Web: http://www.yakk.net/
Fax: +61 (8) 9265 0821 / +0 (775) 205 0307 | Home: +61 (8) 9389 9152
If God didn't want us to eat animals, he wouldn't have made them out of meat.



Re: Script-Fu from Perl-Fu?

2000-01-24 Thread Stephan Skrodzki

> > I'd like to use a Script-Fu script from within gimp-perl a Gimp tells me:
> 
> > script-fu-drop-shadow(0,$unsel_lay,8,8,15,"black",60,1);
> 
> You are trying to subtract "shadow" from "drop" from "fu" from
> "script". If you use a recent gimp version, then just use underscores
> (script_fu_drop_shadow) and everything will be fine.
> 
> Well, almost. You will find that gimp and/or script-fu will happily crash
> when you try this. It might even work, but script-fu is broken in that
> respect since over a year now, and I don't expect that to change soon.

This is the result I get then:

marly-text-button: function/macro "script_fu_drop_shadow" not found in Gimp at 
/home/skrodzki/.gimp-1.1/plug-ins/marly-text-button line 39 (ERROR)

so I can't even check, if gimp could crash :-)

Regards
 Steve



Re: How can I combine several images into one?

2000-01-24 Thread Robert Schiffers

hi there,

some days ago

Eric Depagne wrote:
> 
> Hi.
> 
> I'm new to this list, so please forgive me if my question has already been
> asked.
> 
> I've made 13 photos from the top of a building, so that all the landscape is
> visible.
> Now, I want to combine every photos into one.
> 

as i was unsubscribed for sometime i don't know if someone posted the
following link. it is a panorama stiching soft as plugin for Gimp :-)

i havn't it tested yet, but the results presented on the web look pretty
good.

http://www.fh-furtwangen.de/~dersch/

hope it still helps

regards

robert