I have an image in tif format and I want to print 4 copies of the image on the same piece of paper. Is there a way to do this in Ubuntu 12?
Asked
Active
Viewed 406 times
1 Answers
3
Here's an example for making a comp with ImageMagick.
convert xc:white -page A4 \
-page +0+0 image.tiff \
-page +250+0 image.tiff \
-page +0+250 image.tiff \
-page +250+250 image.tiff \
-flatten output.pdf
I don't know what the exact coordinates will be, but try this and play around with it.
The quick alternative would just be using something like Inkscape or GIMP to create a composition manually.

Oli
- 293,335
-
thanks a lot. worked well, since the image was small great idea – Pedro Teran Oct 17 '13 at 18:27