Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If I understand correctly, you have this:</p> <ol> <li><code>logo.jpg</code> (1 image of unknown dimensions)</li> <li><code>montage.pdf</code> (a 6-page PDF with some arbitrary page size)</li> <li><code>textPdf.pdf</code> (a 1-page PDF with a very weird page size).</li> </ol> <p>You want to create an output PDF of 7 pages named <code>contactsheet.pdf</code>, where </p> <ul> <li>...the 1st page consists of the <code>logo.jpg</code> with the vertically appended 1st page from <code>montage.pdf</code></li> <li>...the 2nd page consists of the <code>logo.jpg</code> with the vertically appended 2nd page from <code>montage.pdf</code></li> <li>...the 3rd page consists of the <code>logo.jpg</code> with the vertically appended 3rd page from <code>montage.pdf</code></li> <li>...the 4th page consists of the <code>logo.jpg</code> with the vertically appended 4th page from <code>montage.pdf</code></li> <li>...the 5th page consists of the <code>logo.jpg</code> with the vertically appended 5th page from <code>montage.pdf</code></li> <li>...the 6th page consists of the <code>logo.jpg</code> with the vertically appended 6th page from <code>montage.pdf</code></li> <li>...the 7th page consist of the one weird pagesized <code>textPdf.pdf</code>.</li> </ul> <p>This result can be achieved with the following command:</p> <pre><code> convert \ \( logo.jpg tiled.pdf[0] -background none -append \) \ \( logo.jpg tiled.pdf[1] -background none -append \) \ \( logo.jpg tiled.pdf[2] -background none -append \) \ \( logo.jpg tiled.pdf[3] -background none -append \) \ \( logo.jpg tiled.pdf[4] -background none -append \) \ \( logo.jpg tiled.pdf[5] -background none -append \) \ textPdf.pdf \ contactsheet.pdf </code></pre> <p>It makes use of the following advanced ImageMagick commandline features:</p> <ol> <li><p><em>bracketing</em> sub-commands inside <code>\( ... \)</code> (which each require a space before and after!) to create partial picture results;</p></li> <li><p>using the 0-based <code>[N]</code>-index to address a particular image/frame/page of a multi-page image or PDF file.</p></li> </ol>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload