Re: [Gimp-user] how to write vertical text

2003-07-20 Thread John Culleton
On Friday 18 July 2003 12:17, charkee berekeke wrote: > fellow gimp users, >Can anyone teach me how to write text > vertically ( top to bottom ) ? > > TIA > charkee > > do you mean text rotated 90 degrees? Or do you mean text like T H I S The solution depends on answering the above fi

Re: [Gimp-user] how to write vertical text

2003-07-20 Thread Tom Williams
John Culleton wrote: > On Friday 18 July 2003 12:17, charkee berekeke wrote: > > fellow gimp users, > >Can anyone teach me how to write text > > vertically ( top to bottom ) ? > > > > TIA > > charkee > > > > > do you mean text rotated 90 degrees? Or do > you mean text like > T > H > I > S

Re: [Gimp-user] how to write vertical text

2003-07-20 Thread John Culleton
On Sunday 20 July 2003 10:20, Tom Williams wrote: > John Culleton wrote: > > On Friday 18 July 2003 12:17, charkee berekeke wrote: > > > fellow gimp users, > > >Can anyone teach me how to write text > > > vertically ( top to bottom ) ? > > > > > > TIA > > > charkee > > > > do you mean text

Re: [Gimp-user] how to write vertical text

2003-07-20 Thread charkee berekeke
guys, That piece on writing text on a curve is really interesting =). I would still like to know if gimp can write vertical text, like T H I S Can anyone teach me, pls? =) TIA charkee --- John Culleton <[EMAIL PROTECTED]> wrote: > On Sunday 20 July 2003 10:20, Tom Wi

Re: [Gimp-user] how to write vertical text

2003-07-20 Thread Sven Neumann
Hi, charkee berekeke <[EMAIL PROTECTED]> writes: > That piece on writing text on a curve is really > interesting =). I would still like to know if gimp can > > write vertical text, like > T > H > I > S It cannot do this. At least not without major hassle like moving the glyphs around

Re: [Gimp-user] how to write vertical text

2003-07-20 Thread Tom Williams
Sven Neumann wrote: Hi, charkee berekeke <[EMAIL PROTECTED]> writes: >  That piece on writing text on a curve is really > interesting =). I would still like to know if gimp can > > write vertical text, like > T > H > I > S It cannot do this. At least not without major hassle like moving the g

[Gimp-user] How to convert a bunch of files from one format to theother

2003-07-20 Thread Phillip Bruce
Hi, I have a bunch of bmp images that I want to convert to jpeg format. How can I do this without having to go thru each image at a time? I'm running gimp on a unix platform. -- *** Phillip B. Bruce

Re: [Gimp-user] How to convert a bunch of files from one format tothe other

2003-07-20 Thread Harish Narayanan
Hi, You could use "convert" from the ImageMagick suite and a small bash script like: #!/bin/bash for image in *.bmp; do target=`echo $image | sed s/.bmp/.jpg/` convert $image $target done Or something similar. Harish Phillip Bruce wrote: > Hi, > > I have a bunch of bmp images that I want t

Re: [Gimp-user] how to write vertical text

2003-07-20 Thread Harish Narayanan
Tom Williams wrote: While, we're on the topic of text, are there any tutorials on making text along an arc? The "curvebend" filter _almost_ does what I want but not quite. Thanks... Peace... Tom ___ Gimp-user mailing list [EMAIL PROTECTED] http://

Re: [Gimp-user] how to write vertical text

2003-07-20 Thread Tom Williams
Harish Narayanan wrote: > You could try the "Text Circle" in the GIMP menu. Xtns > Script-fu > > Logos > Text Circle I think. > > Harish Thanks... I've tried that but it curved the text TOO much... :) Peace... Tom ___ Gimp-user mailing list [EMAIL PR

[Gimp-user] Crop and register marks

2003-07-20 Thread Joao S. O. Bueno
I am working on a python-fu script to add crop and register printing marks to the GIMP images. Not pratical - it have to be run manually before printing, and the marks have to be cropped out if one is going to scale the image further afterwards (last the cropmarks get out of proportion). There

Re: [Gimp-user] How to convert a bunch of files from one format tothe other

2003-07-20 Thread Phillip Bruce
Harish Narayanan wrote: Hi, You could use "convert" from the ImageMagick suite and a small bash script like: #!/bin/bash for image in *.bmp; do target=`echo $image | sed s/.bmp/.jpg/` convert $image $target done Or something similar. Harish Harish, Thanks that exactly what I was missing. The