<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>wrighters.net &#187; howto</title>
	<atom:link href="http://www.wrighters.net/blog/articles/category/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wrighters.net/blog</link>
	<description>some writing about some things</description>
	<lastBuildDate>Sat, 15 May 2010 22:05:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Easy way to combine pdf files into one</title>
		<link>http://www.wrighters.net/blog/articles/2010/03/13/easy-way-to-combine-pdf-files-into-one/</link>
		<comments>http://www.wrighters.net/blog/articles/2010/03/13/easy-way-to-combine-pdf-files-into-one/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 20:08:46 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[techie]]></category>

		<guid isPermaLink="false">http://www.wrighters.net/blog/?p=164</guid>
		<description><![CDATA[This is a bit of a techie post, but I wanted to document how I do this since it seems to come up once or twice a year and I always forget the steps.
I had to submit a form via email to get reimbursed for my flex spending account and had to include scanned copies [...]]]></description>
			<content:encoded><![CDATA[<p>This is a bit of a techie post, but I wanted to document how I do this since it seems to come up once or twice a year and I always forget the steps.</p>
<p>I had to submit a form via email to get reimbursed for my flex spending account and had to include scanned copies of my receipts.  I wanted to send this as one file, but couldn&#8217;t remember how to combine the tiff files that my scanner software generated into one file.  If you do a google search, you end up finding little utilities for windows or a tutorial of how to use Adobe Acrobat to accomplish this.  Using a mac or linux machine, this is pretty straightforward with some free software.</p>
<p>You need ImageMagick and ghostscript installed.  For the mac, the easiest thing is to use the wonderful <a href="http://darwinports.com/">Darwin ports</a> to do this.  To do this with ports is easy:</p>
<pre>$ sudo port install ImageMagick ghostscript</pre>
<p>Then, if you have tiff files (or other formats) from your scanner you want to convert them to pdf.  This is easy using the ImageMagick convert tool.  For example:</p>
<pre>$ convert filename.tiff filename.pdf</pre>
<p>The convert command determines the format based on the file suffix, so this will convert the tiff file to a pdf.  It really is a swiss army knife of tools and this is just one of the most basic things you can do with it.</p>
<p>Then, take the multiple pdfs and combine them into one using ghostscript:</p>
<pre>$ gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=combined.pdf file1.pdf file2.pdf</pre>
<p>Tada!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wrighters.net/blog/articles/2010/03/13/easy-way-to-combine-pdf-files-into-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
