[Eug-lug]Multiple pictures to one sheet to be printed

2003-02-21 Thread Timothy Bolz
I was wondering if anyone knew if there was a program which you specify a number of pictures and it prints as many as it can fit on one 8.5x11 sheet. Or a program which takes many different sized pictures and prints them in either thumbnails or a size which you tell it to. What happened is I

Re: [Eug-lug]Multiple pictures to one sheet to be printed

2003-02-21 Thread Bob Miller
Timothy Bolz wrote: Also I've been using GQview and I love it. I can do a slideshow and it's great. The only problem is it doesn't like larger file sizes. It just disapears when it hits those large pictures. I can't answer your question about automatically composing pictures onto a page,

Re: [Eug-lug]Multiple pictures to one sheet to be printed

2003-02-21 Thread Ralph Zeller
Tim, I'd use Imagemagick to convert the big pictures so an appropriate sized thumbnail picture. Ralph Something like this (which also converts the files to gif): --- #!/bin/bash for i in myBigPictures/*.jpg do f=`basename $i` f=${f%.jpg} convert -resize 140x140 -colors 16