RSS feed for comments on this post.
Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
0.280 Powered by WordPress
This file seems to be corrupt. WinZip cannot open it.
Comment by Wayne — June 21, 2005 @ 3:17 am
Weird -- works fine for me. Just confirmed it.
Comment by Cory Doctorow — June 21, 2005 @ 8:07 am
I was able to pull it from my work PC, must be something screwy on my home system. Could you provide details as to how Sean did the conversion?
Thanks for the free read BTW!
Comment by Wayne — June 21, 2005 @ 9:42 am
Nope, winzip gives errors. Same deal with Down and Out.
Comment by jim — June 23, 2005 @ 11:12 am
Confirmed open with WinRAR, version 3.50 beta 2. No problems here.
(I rather like the inverted color scheme, BTW. Less harsh on the eyes.)
Comment by Anthony — August 20, 2005 @ 7:17 am
There's a problem with this: some of the images are duplicates and for each duplicate, a page is skipped.
Example pages: 102 and 103 are the same image, and the real page 103 is missing.
Also: 118 and 119, 189 and 190. I didn't look any further but I imagine this will recur throughout.
Comment by Nic — November 9, 2005 @ 3:06 am
There is an OSX app called pdf2psp that can convert pdfs to image files for transfer to a psp. http://pdf2psp.sourceforge.net/
Comment by Jesse — March 23, 2007 @ 1:45 pm
bah! just use this:
mkdir $1_book
cd $1_book
# split pdf into individual pdf pages
pdftk ../$1 burst
# convert each pdf to jpeg and rotate to landscape for psp
for file in *pdf
do
convert -density 150x150 -trim -rotate 90 $file $file.jpeg
rm -f $file
done
# remove "pdf" from filenames
for file in *jpeg
do
mv $file ${file%pdf.*}jpeg
done
# remove pdftk's burst report
rm -f doc_data.txt
Comment by willie — March 30, 2007 @ 1:30 pm
Just a quick suggestion for the PSP owners with custom firmwares : install the Bookr app and you've got a perfect ebook reader supporting text and pdf files. I find that much more convenient than jpg files, but I understand that it's not an option for official firmware users.
Comment by Yom — January 7, 2009 @ 2:26 am