[Gimp-user] Working with Hand Written Text

2002-12-27 Thread Phillip Bruce
Hi, I have a Hand Written Text that I want to make into a Nice Logo. How is that best accomplished. I'm using gimp 1.2.1 So far I use lasso to capture the text and have pasted it onto the background I want. But I want to bold out the text itself so it can look rounded and stand out

[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-21 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