How to Make Pictures into Posters ?

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ths
Posts: 3
Joined: 2012-02-01T04:20:16-07:00
Authentication code: 8675308

How to Make Pictures into Posters ?

Post by ths »

hello !

I'm not very good in Image magick and i would like to do a program like : http://www.blockposters.com/
Is IM able to do that ? I saw this: http://imagemagick.org/Usage/crop/#croptile ... but is it the good tools ?
I saw pdfposter and poster (Deb package), but it will mean i must install a server ...

Thant a lot in advance, i'm not searching about ready to use solution, just direction to begin ...
User avatar
glennrp
Posts: 1147
Joined: 2006-04-01T08:16:32-07:00
Location: Maryland 39.26.30N 76.16.01W

Re: How to Make Pictures into Posters ?

Post by glennrp »

Yes, IM can do that, and you were looking at the right documentation. Use

Code: Select all

convert rose: -crop 20x20 +repage rose%03d.png
mogrify -resize 2500% rose*png
to split up the image into tiles,
then resize them all to the size you want.
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: How to Make Pictures into Posters ?

Post by anthony »

A better technique is to probably use 'cropping (near) equal divisions'
http://www.imagemagick.org/Usage/crop/#crop_equal

For example the 6x3 division from 'blockposters'...

Code: Select all

   convert image.png -crop 6x3@  +repage  page_%02d.png
You may like to do some resizing (enlarging) of the image to fit your pages but essentially that is how to do it.

The advantage of using equal division method is you can also generate some 'overlap' between the tiles. That will make piecing together the individual tile 'pages' easier, as the pages are slightly overlapped.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply