script-fu examples

2000-01-18 Thread Wandered Inn
I've followed the various links from gimp.org to the various script-fu sites. Many are non-existent or broken. I'm trying to find out how I can create a simple batch script. All I need to do is rotate some images 90 degrees. But, it's about 150 images and for obvious reasons, a non-interactive

Re: script-fu examples

2000-01-18 Thread Carl-Johan Sveningsson
> I've followed the various links from gimp.org to the various script-fu > sites. Many are non-existent or broken. I'm trying to find out how I > can create a simple batch script. All I need to do is rotate some > images 90 degrees. But, it's about 150 images and for obvious reasons, > a non-i

Re: script-fu examples

2000-01-18 Thread Wandered Inn
Thanks, worked like a charm. Carl-Johan Sveningsson wrote: > > > I've followed the various links from gimp.org to the various script-fu > > sites. Many are non-existent or broken. I'm trying to find out how I > > can create a simple batch script. All I need to do is rotate some > > images 90

Re: script-fu examples

2000-01-18 Thread Wandered Inn
Actually, I mis-spoke. It did not work. convert complains: convert: Missing an image file name [No such file or directory] Using 'convert -rotate 90 14.jpeg' and 14.jpeg is in the current directory. Suggestions?? Carl-Johan Sveningsson wrote: > > > I've followed the various links from gim

Re: script-fu examples

2000-01-18 Thread Michael Johnson
you need to have the output filename at the end. that should work, try this: 'convert -rotate 90 14.jpeg 14.jpeg' also, the script-fu stuff you were looking for is in the GIMP User Manual (manual.gimp.org) There are two chapters in there and I think they are the same as the two limks that are (w

Re: script-fu examples

2000-01-18 Thread Wandered Inn
Michael Johnson wrote: > > you need to have the output filename at the end. > that should work, try this: > > 'convert -rotate 90 14.jpeg 14.jpeg' That did it thanks. > > also, the script-fu stuff you were looking for is in the GIMP User Manual > (manual.gimp.org) There are two chapters in th