gDynText 1.5.0-RC2

2000-05-31 Thread Marco Lamberto

Hi GIMPers!
I'm actually working on a new release of my plug-in, I've succesfully
integrated the gtk_font_selection with my font_slection widget even if
externally nothing seems to be changed!!
I hope this will be a BIG NEWS for everybody here was waiting for a better
support for font choosing in this plug-in (specially for the font encoding)! ;)
Actually 1.5.0-RC2 is totally incompatible with previous releases of gDynText,
but I've planned to re-add the compatibilty routines into the final release.
I've finally dropped the support for gimp 1.0.x series and cutted every
unecessary #ifdef block. ;)

Is there someone so brave to dare testing it for a while? ;)
You could download it from:


If everything works fine and no serious bugs will be found, I hope to release
the final 1.5.0 by the end of this week.
Happy GIMPing!
Marco

P.S. Please, could anyone update the PLUGIN_MAINTAINERS file into the CVS tree
in order to add me (Marco Lamberto <[EMAIL PROTECTED]>) as the maintainer of
gdyntext? ;)
Thanks in advance. ;)
-- 
//\/\ Marco (LM) Lamberto
  e-mail:[EMAIL PROTECTED] (remove 'nOsPaMz-')
  The Sunny Spot  -  http://www.geocities.com/Tokyo/1474/





Re: Perl-fu - transparent colour

2000-05-31 Thread Marc Lehmann

On Wed, May 31, 2000 at 03:48:14PM +0530, Gunjan Kapoor <[EMAIL PROTECTED]> wrote:
> colour for the entire image. Is that possible with Perl-fu. e.g: specify
> white as the transparent colour.

What do you want to do? Do you want to replace white by transparency? This
is easy (not only in perl-fu, btw), just use plug_in_colortoalpha, e.g.:

$layer->colortoalpha(WHITE);

If you just want to replace a specific colour index (e.g. in an indexed
image) you can also use select_by_color and selection_clear.

> I've tried adding an alpha channel programmatically but perhaps did not
> know the proper procedure and the desired results were not achieved.

This usually suffices: "$layer->add_alpha".

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED] |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |



Re: XCF loader for gdk-pixbuf

2000-05-31 Thread Marc Lehmann

On Wed, May 31, 2000 at 03:34:17AM +, Jay Cox <[EMAIL PROTECTED]> wrote:
> Until very recently the code in xcf.c and xcf.h had no copyright notices
> at all in them.  I don't think this puts those files into the public domain

A copyright notice has not much to do with the license in most parts of
the world. According to the Berne convention (something the US has signed
but not ratified yet for example) anything you find which doesn't have an
explicit license mustn't be used, looked at, copied etc..., thus giving
authors a maximum of assurance.

> I hereby give my permission for anyone to use the portions of xcf.c
> that I have written under the terms of the LGPL.

The problem, of course, will be S&P, which are very difficult to
contact. It took quite a long time until I had the license changed from
GPL to LGPL for a single file in libgimp, so whoever weants the license
changed should act soon ;)

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED] |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |



Re: IrfanView

2000-05-31 Thread Marc Lehmann

On Tue, May 30, 2000 at 10:45:04PM +0200, "Guillermo S. Romero / Familia Romero" 
<[EMAIL PROTECTED]> wrote:
> And btw, to quick load, have anyone tried "gimp --no-data --no-splash file"?
> It is not as faster as a viewer, but it is better than other solutions.

guash is quite nice. it mimics xv's visual schnauzer (the best image
browsing interface, if you ask me ;) and it very useful in the cited
problem of perusing multiple xcf files that are different versions of the
same image.

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED] |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |



Re: XCF loader for gdk-pixbuf

2000-05-31 Thread Alan Cox

> Until very recently the code in xcf.c and xcf.h had no copyright notices
> at all in them.  I don't think this puts those files into the public domain
> but I think it does indicate that the authors may be flexible in their
> licensing terms. 

Actually it indicates there are no rights to use the file granted at all!



Re: gimp-1.1.23 compile error

2000-05-31 Thread pixel fairy

the full dist (instead of just the patch) worked fine.

--- pixel fairy <[EMAIL PROTECTED]> wrote:
> .../libtool: line 582: syntax error near unexpected
> token `|*]*)'
> .../libtool: line 582: ` 
> *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \  ]*|*]*)'
> make[2]: *** [gimp.lo] Error 2
> make[2]: Leaving directory
> `/home/pixel/stuff/gimp-1.1.23/libgimp'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory
> `/home/pixel/stuff/gimp-1.1.23'
> make: *** [all-recursive-am] Error 2
> blossom:~/stuff/gimp-1.1.23$ uname -a
> Linux blossom 2.2.14 #4 Fri Apr 14 01:04:06 PDT 2000
> i686 unknown
> 
> the last CVS gimp and 1.1.22 both compiled fine. i
> did
> update this with a patch file, so that may have
> something to do with it. i also did make clean,
> ../configure before make
> 
> __
> Do You Yahoo!?
> Kick off your party with Yahoo! Invites.
> http://invites.yahoo.com/


__
Do You Yahoo!?
Send instant messages & get email alerts with Yahoo! Messenger.
http://im.yahoo.com/



Perl-fu - transparent colour

2000-05-31 Thread Gunjan Kapoor

Hi,
Could someone help me out with this. I need to specify a transparent
colour for the entire image. Is that possible with Perl-fu. e.g: specify
white as the transparent colour.
Additionally, I need to make the background transparent for a
programmatically generated image. The image contains only one drawable.
I've tried adding an alpha channel programmatically but perhaps did not
know the proper procedure and the desired results were not achieved.
TIA
Gunjan