Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Sony Reader

Notices

Reply
 
Thread Tools Search this Thread
Old 07-16-2015, 09:37 PM   #241
gbgbgb
Member
gbgbgb began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Jul 2015
Device: Sony DPT-S1
Quote:
Originally Posted by md02439 View Post
@gbgbgb, @rem736: could you make a photo of the DPT-S1 in the Padfolio?

Thanks
The one I bought (which at $40+ costs twice as much as @rem736's) looks like this:
http://www.officedepot.com/a/product...Closure-Black/ (actually $20+ on Amazon..)
If you take out the pages on the right, the DPT-S1 fits in, along with its sleeve and pen. It is not anchored to anything but the whole thing fits inside the pad. Zipper easily closes on it. More a hardened carrying case than anything else.
HTH

Last edited by gbgbgb; 07-18-2015 at 01:53 PM.
gbgbgb is offline   Reply With Quote
Old 07-18-2015, 07:29 AM   #242
FarhanS
Junior Member
FarhanS began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Jul 2015
Device: Nook ST
I've tried searching, but any idea what the max SD capacity is on this device (in GB)?
FarhanS is offline   Reply With Quote
Old 07-18-2015, 01:54 PM   #243
gbgbgb
Member
gbgbgb began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Jul 2015
Device: Sony DPT-S1
Quote:
Originally Posted by FarhanS View Post
I've tried searching, but any idea what the max SD capacity is on this device (in GB)?
The manual says 32GB. Not tried myself.
gbgbgb is offline   Reply With Quote
Old 07-20-2015, 02:24 PM   #244
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,788
Karma: 103362673
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by ManDay View Post
I just figured someone could be interested in the script I had lying around my computer for quite some time now. I use it to crop PDFs for the reader. Example invocation

:/croppdf -o outfile.pdf infile.pdf 10 20. 500. 700 20 30. 500. 700

If you just run it without arguments, it gives a command summary for all features. Runs on Linux/Bash with ghostscript (command gs) installed.
Worked great the very first run!

From time to time, I search the net for how to crop a PDF. It seems to be a common problem, and a wide variety of answers have been posted at a wide variety of sites. None of them have ever worked for me. This one does. I didn't even have any copy/paste errors. (It was a bit cruel not to also attach the file to the message.)

I was also in luck that the document I tried it on only needed a single crop specification. I have to confess to being completely confused as to how to specify cyclical groups of pages.

Does your example use the second group for all pages after the first?

How would one specify odd/even page cropping?

Thanks for a great script!
j.p.s is online now   Reply With Quote
Old 07-21-2015, 03:45 AM   #245
ManDay
E-Reader
ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.
 
Posts: 274
Karma: 1606616
Join Date: Oct 2012
Device: DPT-S1
Quote:
Originally Posted by j.p.s View Post
Worked great the very first run!

From time to time, I search the net for how to crop a PDF. It seems to be a common problem, and a wide variety of answers have been posted at a wide variety of sites. None of them have ever worked for me. This one does. I didn't even have any copy/paste errors. (It was a bit cruel not to also attach the file to the message.)

I was also in luck that the document I tried it on only needed a single crop specification. I have to confess to being completely confused as to how to specify cyclical groups of pages.

Does your example use the second group for all pages after the first?

How would one specify odd/even page cropping?

Thanks for a great script!
Helo, I'm happy it works for you. Thanks to your telling me I found there is a bug in the page cycling :-/ I fixed it now. For odd/even pages you'd do something like that (I guess you already knew but were irritated because it didn't work)


croppdf file.pdf 10 10 500 700 40 10 500 730

I didn't know one can attach files to posts This time! (I had to rename it to croppdf.txt because it wouldn't let me upload it otherwise).

Hope it works better now!

(The cyclic thing works like that:

croppdf file.pdf <4 margins for 1st page> <4 margins for 2nd page> <4 margins for 3rd page> ... <4 margins for n-th page>

and the n+1-th page will start over with the margins from the 1st page again. hth)

Last edited by ManDay; 07-23-2015 at 03:33 AM.
ManDay is offline   Reply With Quote
Old 07-22-2015, 05:59 PM   #246
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,788
Karma: 103362673
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by ManDay View Post
Helo, I'm happy it works for you. Thanks to your telling me I found there is a bug in the page cycling :-/ I fixed it now. For odd/even pages you'd do something like that (I guess you already knew but were irritated because it didn't work)

croppdf file.pdf 10 10 500 700 40 10 500 730
No, not at all irritated. I had not tried because all the documents I had cropped needed the same crop box for each page. I was confused about the multiple box case because I was assuming some more general and complicated scheme that probably does not even have an actual example.

I have since cropped "Pro Git" by Scott Chacon, which does have right and left pages shifted with respect to each other. It is also the only document I've come across so far with an ideal (actual text on page) aspect ratio taller than an android tablet (even with header and footer cropped). That worked great! Thanks again!
Quote:
Originally Posted by ManDay View Post
I didn't know one can attach files to posts This time! (I had to rename it to croppdf.txt because it wouldn't let me upload it otherwise).
I've found a number of things on this board only after accidentally scrolling down way more than I thought was present on the page.

You can gzip any file as .gz is allowed. For multiple files tar and zip are also allowed, which also means tar.gz is allowed.

I am having trouble with the -a option. It just goes into an infinite loop, I think stuck processing the option.

Syntax highlighting in vim turns the last ")" character on the line:
(( i++ ))
red, but I don't know what that is implying since the parentheses seem to match up.

Quote:
Originally Posted by ManDay View Post

Hope it works better now!

(The cyclic thing works like that:

croppdf file.pdf <4 margins for 1st page> <4 margins for 2nd page> <4 margins for 3rd page> ... <4 margins for n-th page>

and the n+1-th page will start over with the margins from the 1st page again. hth)

Last edited by j.p.s; 07-22-2015 at 06:01 PM. Reason: Had omitted "[" from a [/QUOTE] tag
j.p.s is online now   Reply With Quote
Old 07-23-2015, 03:32 AM   #247
ManDay
E-Reader
ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.
 
Posts: 274
Karma: 1606616
Join Date: Oct 2012
Device: DPT-S1
Oh, well... more bugs Thanks for reporting I hope that's fixed now
Attached Files
File Type: gz croppdf.tar.gz (2.7 KB, 338 views)
ManDay is offline   Reply With Quote
Old 07-24-2015, 06:09 PM   #248
arabian
Junior Member
arabian began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Jul 2015
Device: Kobo Aura H2O & Sony DPT S1
Quote:
Originally Posted by Marc Mertens View Post
Thanks for your reply,

unfortunately Sony US refuses to sell the DPT-S1 to people outside the US, I have tried to buy from Sony US and their formal answer was that they will not sell the product outside the US. It is a pity because I think they have a great product for reading and annotating mathematical papers.

Marc
guys, sony affiliate resellers do sell to any one.

you can buy it and send it to a forwarding service within the USA. I have tried Iparcel which is in a deal with the local post in saudi arabia and I'm trying fishisfast for the 1st time. It has very acceptable shipping forwarding service but yet to see how good they are.

Currently my sony dpt s1 is on the way with fedex to my forwarding service!

in the reseller websie I did not see away to buy, so I sent them an e mail asking how and they gave me the number through whiich I made the order after I give them address order name etc through the e mail.

Last edited by arabian; 07-24-2015 at 06:12 PM. Reason: adding more information
arabian is offline   Reply With Quote
Old 07-25-2015, 08:49 AM   #249
Colognese
eReader
Colognese began at the beginning.
 
Posts: 6
Karma: 10
Join Date: Feb 2010
Location: Germany
Device: Tolino Vision 2; iRex Iliad ER0141; PocketBook Color Lux; Sony DPT-S1
To keep everything in a single thread - Calibre now supports the DPT-S1 from release 2.33 on.
Colognese is offline   Reply With Quote
Old 07-26-2015, 07:10 AM   #250
ManDay
E-Reader
ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.
 
Posts: 274
Karma: 1606616
Join Date: Oct 2012
Device: DPT-S1
Is anyone aware of a website which can view the PDF with annotations? Unfortunally, none of the PDF viewers on my PC appears to be capable of viewing the annotations made on the DPT-S1 and none of the websites with PDF viewing capabilities appear to be able, either. I'd also gladly accept a way to just get them out there *somehow*...
ManDay is offline   Reply With Quote
Old 07-27-2015, 12:38 PM   #251
rem736
purpose priority passion
rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.
 
Posts: 645
Karma: 9002000
Join Date: Jan 2010
Location: socal, usa
Device: sony prs-350, b&n ngp, rM2, kindle scribe, boox poke5
Quote:
Originally Posted by ManDay View Post
Is anyone aware of a website which can view the PDF with annotations? Unfortunally, none of the PDF viewers on my PC appears to be capable of viewing the annotations made on the DPT-S1 and none of the websites with PDF viewing capabilities appear to be able, either. I'd also gladly accept a way to just get them out there *somehow*...
i just tested a pdf by handwriting on a page, creating a sticky note, and also adding highlights.
in either foxit reader or adobe reader for windows and i can see all that i've added. hovering over the sticky note shows the content. and double-clicking on it opens it up for editing.

i am unaware of any web-based pdf viewers. what pdf reader is installed on your PC?

Last edited by rem736; 07-27-2015 at 12:45 PM.
rem736 is offline   Reply With Quote
Old 07-28-2015, 12:38 AM   #252
j.p.s
Grand Sorcerer
j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.j.p.s ought to be getting tired of karma fortunes by now.
 
Posts: 5,788
Karma: 103362673
Join Date: Apr 2011
Device: pb360
Quote:
Originally Posted by ManDay View Post
Is anyone aware of a website which can view the PDF with annotations? Unfortunally, none of the PDF viewers on my PC appears to be capable of viewing the annotations made on the DPT-S1 and none of the websites with PDF viewing capabilities appear to be able, either. I'd also gladly accept a way to just get them out there *somehow*...
xpdf for highlights and drawing/writing, but sticky notes just show up as an icon for a stcky note.

pdftk name.pdf unpack output outdir_name

puts pdfs of the sticky notes into the directory outdir_name with names like
ClipMemo_20150727_202446.pdf
which xpdf is able to display.

evince does even better. The drawing and highlighting are visible, and the sticky note icon is clickable. When clicked, the sticky note is displayed in a new window.
j.p.s is online now   Reply With Quote
Old 07-28-2015, 02:32 AM   #253
ManDay
E-Reader
ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.ManDay ought to be getting tired of karma fortunes by now.
 
Posts: 274
Karma: 1606616
Join Date: Oct 2012
Device: DPT-S1
Quote:
Originally Posted by j.p.s View Post
xpdf for highlights and drawing/writing, but sticky notes just show up as an icon for a stcky note.

pdftk name.pdf unpack output outdir_name

puts pdfs of the sticky notes into the directory outdir_name with names like
ClipMemo_20150727_202446.pdf
which xpdf is able to display.

evince does even better. The drawing and highlighting are visible, and the sticky note icon is clickable. When clicked, the sticky note is displayed in a new window.
Great. These are two really good solutions, thanks!

rem736: I'm using Linux and had only mupdf and zathura installed for viewers.
ManDay is offline   Reply With Quote
Old 07-28-2015, 04:04 AM   #254
rkomar
Wizard
rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.rkomar ought to be getting tired of karma fortunes by now.
 
Posts: 3,054
Karma: 18821071
Join Date: Oct 2010
Location: Sudbury, ON, Canada
Device: PRS-505, PB 902, PRS-T1, PB 623, PB 840, PB 633
You might also try okular. It has pretty good support for annotations. See the internal Help document for instructions.
rkomar is offline   Reply With Quote
Old 07-28-2015, 12:41 PM   #255
rem736
purpose priority passion
rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.rem736 ought to be getting tired of karma fortunes by now.
 
Posts: 645
Karma: 9002000
Join Date: Jan 2010
Location: socal, usa
Device: sony prs-350, b&n ngp, rM2, kindle scribe, boox poke5
Quote:
Originally Posted by rkomar View Post
You might also try okular. It has pretty good support for annotations. See the internal Help document for instructions.
foxit reader is also available for linux
rem736 is offline   Reply With Quote
Reply

Tags
crop, croppdf


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Testmode app on sony DPT-S1 Yokowa Sony Reader 32 02-15-2024 03:39 AM
In depth Look through of Sony Digital Paper davidspitzer Sony Reader 5 08-24-2014 03:38 PM
Sony Digital Paper Quick look video davidspitzer Sony Reader 6 08-16-2014 12:10 PM
How can one get Sony DPT-S1 repaired bbhuston Sony Reader 6 07-20-2014 02:03 PM
Wo/wie einen Sony DPT-S1 Reader bestellen? joblack Sony Reader 4 05-07-2014 06:30 AM


All times are GMT -4. The time now is 06:25 PM.


MobileRead.com is a privately owned, operated and funded community.