<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Dec 12, 2013 at 12:11 PM, Mike Miller <span dir="ltr"><<a href="mailto:mbmiller+l@gmail.com" target="_blank">mbmiller+l@gmail.com</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>On Thu, 12 Dec 2013, Josh More wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
You need to do it in two steps:<br>
<br>
convert *.png test.mng<br>
convert test.mng test.pdf<br>
<br>
This is how I did my security comic book.  The only gotcha is to check the page order with an "ls *.png" first.  I had to preface each file with the pagenumber (00 - 24) to get them in the right order.<br></blockquote>


</div></blockquote><div><br></div><div>I ended up getting the same results with both </div><div><br></div><div>convert output/*.png output.pdf </div><div>as with the two-step process. </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div></div>
I'm not 100% sure that it would work for you, but here's a trick I sometimes use in this kind of situation (in Bash):<br>
<br>
convert $(\ls -1v *.png) test.mng<br>
<br>
The backslash turns of aliasing (which might be adding color to the text). The -v option uses "version" ordering of filenames.<br></blockquote><div><br></div><div>I'll have to remember that for the future. I had already sorted and named my pages. </div>

<div><br></div><div>In the end I was able to work around the imagemagick page size issue I was having by doing an extra padding step to get all the images centered and the right size before converting to pdf.</div><div><br>

</div><div>Thanks,</div><div>Michael Moore</div></div><br>

</div></div>