A Photography forum. PhotoBanter.com

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PhotoBanter.com forum » Digital Photography » Digital Photography
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Printing multiple pics in Linux



 
 
Thread Tools Display Modes
  #1  
Old September 21st 04, 10:50 AM
Martyn
external usenet poster
 
Posts: n/a
Default Printing multiple pics in Linux

Hi all,
Under Windows I used to use HP Photo Printing software (not sure of the
exact name but it was a freebie with the Photosmart printer). This SW
allowed me to choose a paper size, then choose a print template that
would fit the paper (e.g. one 8x10 or three 5x7 or 12 passport etc....)
I could then drag and drop pictures into the templates and quickly print
several images per page.

I'm looking for somthing similar under Linux, I'm guessing there might
be something attached to one of the picture library packages but can't
find out for sure.

Does anyone know of anything available?

Note I'm not looking for Drivers, I can print single images, and if I
really wanted I could use GIMP to compose a single image from multiple
selections but I want something thats quick to use.

TIA for any advice

--
Speak to the Penguin, he is your friend.

  #2  
Old September 21st 04, 09:57 PM
Martyn
external usenet poster
 
Posts: n/a
Default



Martyn wrote:
Hi all,
Under Windows I used to use HP Photo Printing software (not sure of
the exact name but it was a freebie with the Photosmart printer). This
SW allowed me to choose a paper size, then choose a print template that
would fit the paper (e.g. one 8x10 or three 5x7 or 12 passport etc....)
I could then drag and drop pictures into the templates and quickly print
several images per page.

I'm looking for somthing similar under Linux, I'm guessing there
might be something attached to one of the picture library packages but
can't find out for sure.

Does anyone know of anything available?

Note I'm not looking for Drivers, I can print single images, and if I
really wanted I could use GIMP to compose a single image from multiple
selections but I want something thats quick to use.

TIA for any advice


Well,
To answer my own query (in case anyone else is looking in future)
gnome-photo-printer (gpp) does what I'm looking for, it doesn't have
some of the more complex features of the HP software on Windows but it
does allow drag & drop of images and printing them a various common
sizes of print on various common paper sizes.

I'd still be gratefull for any other SW if anyone knows of any.

--
Speak to the Penguin, he is your friend.

Remove WINDOZE before replying by Email

  #3  
Old September 21st 04, 09:57 PM
Martyn
external usenet poster
 
Posts: n/a
Default



Martyn wrote:
Hi all,
Under Windows I used to use HP Photo Printing software (not sure of
the exact name but it was a freebie with the Photosmart printer). This
SW allowed me to choose a paper size, then choose a print template that
would fit the paper (e.g. one 8x10 or three 5x7 or 12 passport etc....)
I could then drag and drop pictures into the templates and quickly print
several images per page.

I'm looking for somthing similar under Linux, I'm guessing there
might be something attached to one of the picture library packages but
can't find out for sure.

Does anyone know of anything available?

Note I'm not looking for Drivers, I can print single images, and if I
really wanted I could use GIMP to compose a single image from multiple
selections but I want something thats quick to use.

TIA for any advice


Well,
To answer my own query (in case anyone else is looking in future)
gnome-photo-printer (gpp) does what I'm looking for, it doesn't have
some of the more complex features of the HP software on Windows but it
does allow drag & drop of images and printing them a various common
sizes of print on various common paper sizes.

I'd still be gratefull for any other SW if anyone knows of any.

--
Speak to the Penguin, he is your friend.

Remove WINDOZE before replying by Email

  #4  
Old September 21st 04, 11:03 PM
Michael Meissner
external usenet poster
 
Posts: n/a
Default

Martyn writes:

Martyn wrote:
Hi all,
Under Windows I used to use HP Photo Printing software (not sure of the
exact name but it was a freebie with the Photosmart printer). This SW allowed
me to choose a paper size, then choose a print template that would fit the
paper (e.g. one 8x10 or three 5x7 or 12 passport etc....) I could then drag
and drop pictures into the templates and quickly print several images per
page.
I'm looking for somthing similar under Linux, I'm guessing there might be
something attached to one of the picture library packages but can't find out
for sure.
Does anyone know of anything available?
Note I'm not looking for Drivers, I can print single images, and if I
really wanted I could use GIMP to compose a single image from multiple
selections but I want something thats quick to use.
TIA for any advice


Well,
To answer my own query (in case anyone else is looking in future)
gnome-photo-printer (gpp) does what I'm looking for, it doesn't have some of
the more complex features of the HP software on Windows but it does allow drag
& drop of images and printing them a various common sizes of print on various
common paper sizes.

I'd still be gratefull for any other SW if anyone knows of any.


I tend to use montage from ImageMagick to do tiled views. The one catch is you
have to specify a -geometry option for the tile otherwise the defaults are real
low, but usually if you are dealing with uncropped files, you know the image
size of your camera. Here is a simple line:

$ montage -tile 2x2 -geometry 1600x1200 -bordercolor black \
-borderwidth 10 a.jpg b.jpg c.jpg d.jpg output.jpg
$ lpr output.jpg

Here is a slighty more complex line:

$ montage -tile 2x2 -geometry 1600x1200 -pointsize 20 -font gothic \
-bordercolor black -borderwidth 10 \
-label "This is A's picture" a.jpg \
-label "This is B rotated 90 degrees" -rotate 90 b.jpg \
c.jpg \
d.jpg \
output.jpg

--
Michael Meissner
email:
http://www.the-meissners.org
  #5  
Old September 21st 04, 11:03 PM
Michael Meissner
external usenet poster
 
Posts: n/a
Default

Martyn writes:

Martyn wrote:
Hi all,
Under Windows I used to use HP Photo Printing software (not sure of the
exact name but it was a freebie with the Photosmart printer). This SW allowed
me to choose a paper size, then choose a print template that would fit the
paper (e.g. one 8x10 or three 5x7 or 12 passport etc....) I could then drag
and drop pictures into the templates and quickly print several images per
page.
I'm looking for somthing similar under Linux, I'm guessing there might be
something attached to one of the picture library packages but can't find out
for sure.
Does anyone know of anything available?
Note I'm not looking for Drivers, I can print single images, and if I
really wanted I could use GIMP to compose a single image from multiple
selections but I want something thats quick to use.
TIA for any advice


Well,
To answer my own query (in case anyone else is looking in future)
gnome-photo-printer (gpp) does what I'm looking for, it doesn't have some of
the more complex features of the HP software on Windows but it does allow drag
& drop of images and printing them a various common sizes of print on various
common paper sizes.

I'd still be gratefull for any other SW if anyone knows of any.


I tend to use montage from ImageMagick to do tiled views. The one catch is you
have to specify a -geometry option for the tile otherwise the defaults are real
low, but usually if you are dealing with uncropped files, you know the image
size of your camera. Here is a simple line:

$ montage -tile 2x2 -geometry 1600x1200 -bordercolor black \
-borderwidth 10 a.jpg b.jpg c.jpg d.jpg output.jpg
$ lpr output.jpg

Here is a slighty more complex line:

$ montage -tile 2x2 -geometry 1600x1200 -pointsize 20 -font gothic \
-bordercolor black -borderwidth 10 \
-label "This is A's picture" a.jpg \
-label "This is B rotated 90 degrees" -rotate 90 b.jpg \
c.jpg \
d.jpg \
output.jpg

--
Michael Meissner
email:
http://www.the-meissners.org
  #6  
Old September 21st 04, 11:03 PM
Michael Meissner
external usenet poster
 
Posts: n/a
Default

Martyn writes:

Martyn wrote:
Hi all,
Under Windows I used to use HP Photo Printing software (not sure of the
exact name but it was a freebie with the Photosmart printer). This SW allowed
me to choose a paper size, then choose a print template that would fit the
paper (e.g. one 8x10 or three 5x7 or 12 passport etc....) I could then drag
and drop pictures into the templates and quickly print several images per
page.
I'm looking for somthing similar under Linux, I'm guessing there might be
something attached to one of the picture library packages but can't find out
for sure.
Does anyone know of anything available?
Note I'm not looking for Drivers, I can print single images, and if I
really wanted I could use GIMP to compose a single image from multiple
selections but I want something thats quick to use.
TIA for any advice


Well,
To answer my own query (in case anyone else is looking in future)
gnome-photo-printer (gpp) does what I'm looking for, it doesn't have some of
the more complex features of the HP software on Windows but it does allow drag
& drop of images and printing them a various common sizes of print on various
common paper sizes.

I'd still be gratefull for any other SW if anyone knows of any.


I tend to use montage from ImageMagick to do tiled views. The one catch is you
have to specify a -geometry option for the tile otherwise the defaults are real
low, but usually if you are dealing with uncropped files, you know the image
size of your camera. Here is a simple line:

$ montage -tile 2x2 -geometry 1600x1200 -bordercolor black \
-borderwidth 10 a.jpg b.jpg c.jpg d.jpg output.jpg
$ lpr output.jpg

Here is a slighty more complex line:

$ montage -tile 2x2 -geometry 1600x1200 -pointsize 20 -font gothic \
-bordercolor black -borderwidth 10 \
-label "This is A's picture" a.jpg \
-label "This is B rotated 90 degrees" -rotate 90 b.jpg \
c.jpg \
d.jpg \
output.jpg

--
Michael Meissner
email:
http://www.the-meissners.org
  #7  
Old September 22nd 04, 10:25 AM
Bill Sheppard
external usenet poster
 
Posts: n/a
Default

Martyn writes:

Under Windows I used to use HP Photo Printing software (not sure of
the exact name but it was a freebie with the Photosmart printer). This
SW allowed me to choose a paper size, then choose a print template that
would fit the paper (e.g. one 8x10 or three 5x7 or 12 passport etc....)
I could then drag and drop pictures into the templates and quickly print
several images per page.

I'm looking for somthing similar under Linux


To answer my own query (in case anyone else is looking in future)
gnome-photo-printer (gpp) does what I'm looking for, it doesn't have
some of the more complex features of the HP software on Windows but it
does allow drag & drop of images and printing them a various common
sizes of print on various common paper sizes.


I'd still be gratefull for any other SW if anyone knows of any.


Digikam (http://digikam.sourceforge.net) has a print wizard which will do what
you're looking for (including outputting it to Gimp rather than to a printer),
plus lots of other nice features for photo cataloging and basic batch and
editing options.

Bill
--
@@@@@@@ If my laptop battery is almost empty,
* @@@ * shouldn't my laptop be lighter?
*@@*
-\*
  #8  
Old September 22nd 04, 10:25 AM
Bill Sheppard
external usenet poster
 
Posts: n/a
Default

Martyn writes:

Under Windows I used to use HP Photo Printing software (not sure of
the exact name but it was a freebie with the Photosmart printer). This
SW allowed me to choose a paper size, then choose a print template that
would fit the paper (e.g. one 8x10 or three 5x7 or 12 passport etc....)
I could then drag and drop pictures into the templates and quickly print
several images per page.

I'm looking for somthing similar under Linux


To answer my own query (in case anyone else is looking in future)
gnome-photo-printer (gpp) does what I'm looking for, it doesn't have
some of the more complex features of the HP software on Windows but it
does allow drag & drop of images and printing them a various common
sizes of print on various common paper sizes.


I'd still be gratefull for any other SW if anyone knows of any.


Digikam (http://digikam.sourceforge.net) has a print wizard which will do what
you're looking for (including outputting it to Gimp rather than to a printer),
plus lots of other nice features for photo cataloging and basic batch and
editing options.

Bill
--
@@@@@@@ If my laptop battery is almost empty,
* @@@ * shouldn't my laptop be lighter?
*@@*
-\*
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Does Epson's direct memory card printing suck? Dogger the Filmgoblin Digital Photography 0 August 7th 04 05:29 PM
WinXP Microsoft Photo Printing Wizard, and Scanner and Camera Wizard Orak Listalavostok Digital Photography 2 July 10th 04 08:15 PM
Photo Printing Service vs Home Computer Printing? Dave Johnson Digital Photography 1 July 5th 04 07:08 PM
What is "lith" printing, anyway? David Nebenzahl In The Darkroom 8 April 3rd 04 04:28 AM


All times are GMT +1. The time now is 03:54 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PhotoBanter.com.
The comments are property of their posters.