![]() PSP - JPEG seriesPSP/JPEGs — Text converted to a collection of numbered JPEGs to load onto your Sony PSP. 21MB ZIP archive (Thanks to Sean Bell for preparing this file!) 8 Responses to “PSP - JPEG series”Leave a Reply |
Alan, the eldest son of a mountain and a washing machine, refurbishes a house in Toronto, meets an anarchist bent on blanketing the city in free wireless Internet access, and falls for a woman with leathery wings on her back in Someone Comes to Town, Someone Leaves Town. But Alan is forced to return home and confront his misfit past when his murderous and deformed brother David reappears. Cory Doctorow adroitly interconnects these peculiar plots — e.g., the wireless blanket is used to track David’s movements — and successfully experiments with a risky prose style.`
Noah Robischon, Entertainment Weekly [Read more quotes about the book] [Order now to get a signed, inscribed copy shipped to your door!] [FAQ] |
|
Someone Comes to Town, Someone Leaves Town is proudly powered by
WordPress
|
|
June 21st, 2005 at 3:17 am
This file seems to be corrupt. WinZip cannot open it.
June 21st, 2005 at 8:07 am
Weird — works fine for me. Just confirmed it.
June 21st, 2005 at 9:42 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!
June 23rd, 2005 at 11:12 am
Nope, winzip gives errors. Same deal with Down and Out.
August 20th, 2005 at 7:17 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.)
November 9th, 2005 at 3:06 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.
March 23rd, 2007 at 1:45 pm
There is an OSX app called pdf2psp that can convert pdfs to image files for transfer to a psp. http://pdf2psp.sourceforge.net/
March 30th, 2007 at 1:30 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 150×150 -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