<?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>Linux Neophyte &#187; PDF</title>
	<atom:link href="http://linuxneophyte.com/tag/pdf/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxneophyte.com</link>
	<description>Trials of a Linux Newb.</description>
	<lastBuildDate>Mon, 20 Oct 2008 12:42:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PDF splitting with pdftk</title>
		<link>http://linuxneophyte.com/pdf-splitting-with-pdftk/</link>
		<comments>http://linuxneophyte.com/pdf-splitting-with-pdftk/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 15:32:27 +0000</pubDate>
		<dc:creator>M@</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://linuxneophyte.com/pdf-splitting-with-pdftk/</guid>
		<description><![CDATA[Just a quickie, this morning I needed to post the monthly payroll calendars for 2007 to our website. These calendars are created using Word&#8217;s calendar template and are then sent to me for conversion to PDF and publishing. This year I was able to handle the task a little differently.
I opened the 12 page doc [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quickie, this morning I needed to post the monthly payroll calendars for 2007 to our website. These calendars are created using Word&#8217;s calendar template and are then sent to me for conversion to PDF and publishing. This year I was able to handle the task a little differently.</p>
<p>I opened the 12 page doc file in OpenOffice and exported it to PDF.  There wasn&#8217;t a clear way to save each page as an individual file so my output was a single PDF.  I needed a fast and easy way to split the pages up for publishing.  I remembered some chatter on the <a href="http://gnhlug.org">GNHLUG</a> list regarding <em>pdftk</em> so I installed it, took a brief look at the man page and did the following:</p>
<p><code>pdftk Calender2007.pdf burst output ~/tmp/%02d-2007.pdf</code></p>
<p>Poof!  Calendar split out to 12 files named <em>01-2007.pdf</em>, <em>02-2007.pdf</em> and so on.</p>
<p>This saved time and eliminated the annoyance factor completely!  The tools available for Linux blow my mind, these are programs I never would have even heard of when I was strictly Windows.  Change is GOOD.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxneophyte.com/pdf-splitting-with-pdftk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print to PDF: cups-pdf</title>
		<link>http://linuxneophyte.com/print-to-pdf-cups-pdf/</link>
		<comments>http://linuxneophyte.com/print-to-pdf-cups-pdf/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 16:14:12 +0000</pubDate>
		<dc:creator>M@</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CUPS]]></category>
		<category><![CDATA[Edgy]]></category>
		<category><![CDATA[FC6]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://newbie.linuxworldnet.com/print-to-pdf-cups-pdf/</guid>
		<description><![CDATA[Something I&#8217;ve been missing since my migration to Linux is the ability to print whatever I want to a PDF.  I find it insanely useful when I want a copy of purchase receipts or just about anything else that I should have a record of.  I usually don&#8217;t print anything to paper, simply [...]]]></description>
			<content:encoded><![CDATA[<p>Something I&#8217;ve been missing since my migration to Linux is the ability to print whatever I want to a PDF.  I find it insanely useful when I want a copy of purchase receipts or just about anything else that I should have a record of.  I usually don&#8217;t print anything to paper, simply because I&#8217;ll just lose it or recycle it and then regret it 6 months later when I need a copy.  Enter cups-pdf, a super easy way of outputting &#8220;stuff&#8221; to PDF.</p>
<p><strong>Installing on Ubuntu 6.10:</strong></p>
<p><font face="Courier, monospace">sudo apt-get install cups-pdf </font></p>
<p>Create the printer:</p>
<ol>
<li>From the Gnome System menu, navigate to System > Administration > Printing.</li>
<li>Double click on New Printer</li>
<li>PDF Printer should already be selected under Use a detected printer, click Forward</li>
<li>Select Generic from the Manufacturer drop down menu</li>
<li>Select Postscript Printer in the Model section, click Forward</li>
<li>Name your printer (I chose PDF-Printer) and click Apply</li>
</ol>
<p>All set, you can now opt to print web pages, or whatever else to your Cups/PDF-Printer.  Ubuntu saves the PDFs to your <font face="Courier, monospace">~/PDF/</font> directory (if you want to change the default location, use the last paragraph on this post as a guide).</p>
<p><strong>Installing on Fedora Core 6:</strong></p>
<p>Fedora keeps this package in the extras repo, you can install it using the command below.</p>
<p><font face="Courier, monospace">su -c &#8216;yum install cups-pdf&#8217;</font></p>
<p>A few seconds later I had a new printer named <em>Cups-PDF</em>, that when selected would print whatever I wanted to a PDF on my desktop.  I personally don&#8217;t want all of my PDFs saved to the desktop so I created a PDF folder in my home dir and made a change to the config file:</p>
<p>As root, edit <font face="Courier, monospace">/etc/cups/cups-pdf.conf</font>, locate the line that reads <font face="Courier, monospace">Out ${HOME}/Desktop</font> and change it to <font face="Courier, monospace">Out ${HOME}/PDF</font>.  I didn&#8217;t need to restart the CUPS service to apply the change, it just worked. <img src='http://linuxneophyte.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://linuxneophyte.com/print-to-pdf-cups-pdf/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fun With PDFs</title>
		<link>http://linuxneophyte.com/fun-with-pdfs/</link>
		<comments>http://linuxneophyte.com/fun-with-pdfs/#comments</comments>
		<pubDate>Tue, 31 Oct 2006 04:00:26 +0000</pubDate>
		<dc:creator>M@</dc:creator>
				<category><![CDATA[FC6]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[PDF]]></category>

		<guid isPermaLink="false">http://newbie.linuxworldnet.com/fun-with-pdfs/</guid>
		<description><![CDATA[Thanks to my trusty Fedora box, I was able to please one of the Big Cheeses here at work.  I had a PDF that needed to be converted to a Word document.  The first thing I tried to do was open it in Acrobat Pro and run a quick Save As.  On [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to my trusty Fedora box, I was able to please one of the Big Cheeses here at work.  I had a PDF that needed to be converted to a Word document.  The first thing I tried to do was open it in Acrobat Pro and run a quick Save As.  On a normal PDF this would have been the fastest way to get the job done.  Of course this PDF was restricted with password security (Save As failed due to those restrictions).  How annoying!  I remembered using a command line tool a few months ago to convert a PDF to some other file type and figured I&#8217;d give it a shot.  I installed the “xpdf-utils” package from Fedora&#8217;s core repo and ran the file through pdf2ps (Ubuntu installs the pdf tools by default).  I then copied it back to the machine running Acrobat Pro, opened the postscript file and saved it as a Word doc.  Task completed and lessons learned.  The lessons??  Linux has a tool for that, and just because something is supposed to be secure (like a PDF that isn&#8217;t supposed to be changed) doesn&#8217;t mean it is.</p>
<p>To satisfy my own curiosity, I took a few minutes to create a PDF that required a password to open.  I attempted to run it through the pdf2ps tool and I was unable to convert the file without providing the password.  I should note that Acrobat Pro issued a warning when I saved the pdf stating that Adobe products enforce the restrictions set by password security but some third party products might be able to bypass some of the restrictions.</p>
<p><strong>Note:</strong>  This PDF did belong to the University, since it was ours I don&#8217;t feel that it was immoral to circumvent the restrictions.</p>
]]></content:encoded>
			<wfw:commentRss>http://linuxneophyte.com/fun-with-pdfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
