<?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>blog.lundscape.com &#187; File Conversion</title>
	<atom:link href="http://blog.lundscape.com/tag/file-conversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lundscape.com</link>
	<description>The Linux Journey</description>
	<lastBuildDate>Tue, 31 Jan 2012 01:55:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Run a Shell Command in a Makefile</title>
		<link>http://blog.lundscape.com/2009/11/run-a-shell-command-in-a-makefile/</link>
		<comments>http://blog.lundscape.com/2009/11/run-a-shell-command-in-a-makefile/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 17:26:41 +0000</pubDate>
		<dc:creator>Zachary Lund</dc:creator>
				<category><![CDATA[Make]]></category>
		<category><![CDATA[File Conversion]]></category>
		<category><![CDATA[Makefile]]></category>
		<category><![CDATA[PostScript]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://blog.lundscape.com/?p=261</guid>
		<description><![CDATA[I had a directory of BMP image files that I wanted to convert to EPS (Encapsulated PostScript). Since I was planning on adding files to the directory, I did not want to hard code the names of the files into the makefile that would do the conversion. Therefore, the trick was to run a shell [...]]]></description>
			<content:encoded><![CDATA[<p>I had a directory of BMP image files that I wanted to convert to EPS (Encapsulated PostScript). Since I was planning on adding files to the directory, I did not want to hard code the names of the files into the makefile that would do the conversion. Therefore, the trick was to run a shell command inside of the makefile. The first line lists all of the BMP files and assigns it to &#8220;BMP_FILES&#8221;. The next line replaces the &#8220;bmp&#8221; extension with &#8220;eps&#8221;. The complete makefile is below.</p>
<pre>BMP_FILES = $(shell ls *.bmp)
EPS_FILES = ${BMP_FILES:%.bmp=%.eps}

all: ${EPS_FILES}

%.eps : %.bmp
	convert $*.bmp $*.eps</pre>
<p>All that is left is to type &#8220;make&#8221; in the directory, and all of the BMP files will be converted to EPS.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lundscape.com/2009/11/run-a-shell-command-in-a-makefile/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PDF to PNG Conversion on Mac OS X</title>
		<link>http://blog.lundscape.com/2009/09/pdf-to-png-conversion-on-mac-os-x/</link>
		<comments>http://blog.lundscape.com/2009/09/pdf-to-png-conversion-on-mac-os-x/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 14:15:58 +0000</pubDate>
		<dc:creator>Zachary Lund</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[File Conversion]]></category>
		<category><![CDATA[Preview]]></category>

		<guid isPermaLink="false">http://blog.lundscape.com/?p=228</guid>
		<description><![CDATA[I had a several page scanned document stored in PDF format that I needed to convert to PNG so I could upload it to a PayPal account to resolve a limited access problem. I found several solutions for Linux that produced inadequate image files. When I switched to my Mac OS X laptop, I opened [...]]]></description>
			<content:encoded><![CDATA[<p>I had a several page scanned document stored in PDF format that I needed to convert to PNG so I could upload it to a PayPal account to resolve a limited access problem. I found several solutions for Linux that produced inadequate image files. When I switched to my Mac OS X laptop, I opened the PDF in Preview. I selected &#8220;Save As&#8230;&#8221; from the File menu, selected &#8220;PNG&#8221; from the drop down menu and set the resolution to 300 pixels per inch. I hit the Save button, and the newly created PNG opened up. The quality was adequate, and the problem was solved.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lundscape.com/2009/09/pdf-to-png-conversion-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

