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 06-26-2015, 05:51 PM   #226
Marc Mertens
Mathematician
Marc Mertens began at the beginning.
 
Posts: 24
Karma: 10
Join Date: Oct 2008
Device: IRex Digital Reader
Quote:
Originally Posted by haoeryu View Post
Anyone know that?
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
Marc Mertens is offline   Reply With Quote
Old 06-26-2015, 07:04 PM   #227
sirneb
Junior Member
sirneb began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Jun 2015
Device: Sony DPT-RP1
Quote:
Originally Posted by Marc Mertens View Post
Hello,

I will go to Japan in September and want to buy the DPT-S1 there as it seems to be impossible to get access to this device in Belgium. I have however some questions :
1. Is it possible to buy the DPT-S1 in retail in Tokyo?
2. Can you buy the DPT-S1 in Japan with the English menu's and if not
is it possible to modify the menu's to English on on a Japanese DPT-S1.
3. Can someone recommend a shop in Tokyo for the DPT-S1 (if (1) is possible of course.

Thanks a lot in advance

Marc Mertens
1. I highly doubt it because there just isn't a market for a foreign version of the same product.
2. Based on many sources, you cannot turn on English in the Japanese model. There is no known way to do this at the moment.
3. I've only been to Japan a few times. I recommend going to Akihabara, that's where all the geeks go to buy their electronics, Akihabara is famous for that. The selection there is just ridiculous. I'm certain you can find the DPT-S1 there.
sirneb is offline   Reply With Quote
Old 06-27-2015, 05:36 PM   #228
kocoman
Connoisseur
kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.kocoman solves Fermat’s last theorem while doing the crossword.
 
Posts: 97
Karma: 28464
Join Date: Dec 2006
is there a case for this unit? thx
kocoman is offline   Reply With Quote
Old 06-28-2015, 05:52 AM   #229
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
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.

Code:
#!/bin/bash

page_dimension=2
testmode=0
viewer=xdgopen
first_page=0
last_page=0
usage=0

for (( i = 0; i<page_dimension; i++ ))
do
	ratio[ i ]=1
done

ratio[ 0 ]=596
ratio[ 1 ]=842

while getopts :tf:l:v:a:o:d: name
do
	case "$name" in
	t)
		testmode=1
		;;
	f)
		first_page=$(( OPTARG*1 ))
		;;
	l)
		last_page=$(( OPTARG*1 ))
		;;
	o)
		outfile="$OPTARG"
		;;
	v)
		viewer="$OPTARG"
		;;
	d)
		page_dimension=$((OPTARG))
		;;
	a)
		remainder="${OPTARG}"
		i=0
		while echo "$remainder" | grep -oq '^[[:digit:]]*'
		do
			value=$(echo "$remainder" | grep -o '^[[:digit:]]*')
			ratio[ i ]=$value
			remainder=${remainder#${value},}
			(( i++ ))
		done
		;;
	?)
		usage=1
		;;
	esac
done

shift $((OPTIND - 1))

edge_count=$((2*page_dimension))

if (( usage || $#<5 || ( $#-1 )%edge_count ))
then
	echo "Usage $0 \\"
	echo " (-t)? \\"
	echo " (-a <Width>,<Height>)? \\"
	echo " (-f <First Page>)? (-l <Last Page>)? \\"
	echo " (-o <Out File>)? \\"
	echo " (-d <Dimension>)? \\"
	echo " (-v <Viewer>)? \\"
	echo " <In File> (<Left> <Bottom> ... <Right> <Top> ... )+"
	echo ""
	printf "Crop pages of PDF document <In File> to remove margins. If <First Page> is specified, will only output pages after that page. If <Last Page> is specified, will only output pages before that page.\nThe first group of <Left>, <Bottom>, <Right>, and <Top> specify the desired area to be cropped to on the first page of <In File>. The desired area for the n-th page after that page is obtained from the according group, with the groups being cyclically continued.\n\nTESTMODE\nIf -t is given, all outputted pages are cropped to their respective, desired areas and the resulting pdf is shown with the command specified by <Viewer> or \`xdgopen\`, if <Viewer> is not specified. This allows to tweak the areas to the exact desired amount.\n\nNORMAL MODE\nIf -t is not given, the smallest possible area with an optimal aspect ratio of width and height that contains the desired area is calculated. The outputted pages are then cropped to that optimal area with the optimal aspect ratio. If any of the values of <Left>, <Bottom>, <Right> or <Bottom> were suffixed by a period sign (.), the desired area will be aligned with the according edge of the optimal area. Otherwise, the desired area is centered within the optimal area. If no <Out File> is given, a filename is guessed based upon the <In File>. Otherwise, the output will be written to <Out File>.\nThe optimal aspect ratio can be specified by passing <Width> and <Height> and defaults to portrait oriented DIN A4. The dimensionality of pages can be specified by <Dimension>. Currently, the Ghostscript backend only supports 2 dimensional pages." | fmt -s
	exit 1
fi

infile=$1
shift 1

loop_count=$(($#/edge_count))

if [[ "$outfile" == "" ]]
then
	if echo "$infile" | grep -q '\.[^\/]*$'
	then
		outfile="${infile%.*}_cropped.pdf"
	else
		outfile="${infile}_cropped"
	fi
fi


optimal_ratio=$(echo "scale=3;${ratio[ 1 ]}/${ratio[ 0 ]}" | bc)
echo "Optimal ratio set to $optimal_ratio"

if (( testmode ))
then
	outfile="$(mktemp)"
else
	echo "Cropping '$infile' to '$outfile'"

	if [[ -f "$outfile" ]]
	then
		echo "'$outfile' already exists. Overwrite? y/[n]"
		read confirm
		if [[ "$confirm" == "y" ]]
		then
			rm "$outfile"
		else
			exit 1
		fi
	fi
fi

# GHOST SCRIPT DATA
declare -a lefts bottoms rights tops transx transy

for (( i = 0; i < loop_count; i++ ))
do
	echo "CropBox #$i:"
	
	declare -a desired
	aligns=(0 0)

	for (( edge = 0; edge<edge_count; edge++ ))
	do
		index=$((1+edge+i*edge_count))
		desired_value=${!index}

		if [[ "$desired_value" == *'.' ]]
		then
			desired_value=${desired_value:0:-1}
			(( aligns[ edge%page_dimension ]+=2*( edge/page_dimension )-1 ))
		fi
		desired[ edge ]=$((desired_value))
	done

	echo " Desired box: ${desired[ 0 ]} ${desired[ 1 ]} ${desired[ 2 ]} ${desired[ 3 ]}"

	echo " H-Alignment: ${aligns[ 0 ]}"
	echo " V-Alignment: ${aligns[ 1 ]}"

	if ! (( testmode ))
	then
		# Find constraining dimension, expand page in all other dimensions
		normalization=1
		for (( axis = 0; axis<page_dimension; axis++ ))
		do
			(( normalization*=ratio[ axis ] ))
		done

		constraining_axis=0
		constraining_factor=0

		for (( axis = 0; axis<page_dimension; axis++ ))
		do
			desired_distance=$((desired[ axis+page_dimension ]-desired[ axis ]))
			testfactor=$((( desired_distance*normalization )/ratio[ axis ]))

			if (( testfactor>constraining_factor ))
			then
				constraining_axis=$axis
				constraining_factor=$testfactor
			fi
		done

		constraining_distance=$((desired[ constraining_axis+page_dimension ]-desired[ constraining_axis ]))

		echo " Fit axis: $constraining_axis"

		# Now expand all other directions
		for (( align_dir = 0; align_dir<page_dimension; align_dir++ ))
		do
			if (( align_dir != constraining_axis ))
			then
				desired_distance=$((desired[ align_dir+page_dimension ]-desired[ align_dir ]))
				needed_distance=$((( constraining_distance*ratio[ align_dir ] )/ratio[ constraining_axis ]))

				margin=$((needed_distance-desired_distance))
				echo " Margin along axis $align_dir: $margin"
				
				for side in {0..1}
				do
					factor=$((( (-1)+2*side )-aligns[ align_dir ] ))
					(( desired[ align_dir+2*side ]+=( margin*factor )/2 ))
				done
			fi
		done
	fi

	echo " Effective box: ${desired[ 0 ]} ${desired[ 1 ]} ${desired[ 2 ]} ${desired[ 3 ]}"

	# BEGIN GHOSTSCRIPT SPECIFIC DATA PREPARATION
	if (( desired[ 0 ]>=0 ))
	then
		lefts[ i ]=${desired[ 0 ]}
		rights[ i ]=${desired[ 2 ]}
		transx[ i ]=0
	else
		lefts[ i ]=0
		rights[ i ]=$((desired[ 2 ]-desired[ 0 ]))
		transx[ i ]=$((-desired[ 0 ]))
	fi

	if (( desired[ 1 ]>=0 ))
	then	
		bottoms[ i ]=${desired[ 1 ]}
		tops[ i ]=${desired[ 3 ]}
		transy[ i ]=0
	else
		bottoms[ i ]=0
		tops[ i ]=$((desired[ 3 ]-desired[ 1 ]))
		transy[ i ]=$((-desired[ 1 ]))
	fi
	# END GHOSTSCRIPT SPECIFIC DATA PREPARATION
done

pages_string=''
if (( $first_page ))
then
	pages_string=" -dFirstPage=$first_page"
fi

if (( $last_page ))
then
	pages_string="$pages_string -dLastPage=$last_page"
fi

if (( first_page ))
then
	page_offset=$((first_page-1))
else
	page_offset=0
fi

read -d '' code <<endcode
	<<
		/BeginPage
		{
			${page_offset} add
			${loop_count} mod
				[ ${transx[@]} ]
					1 index
				get
					[ ${transy[@]} ]
						2 index
					get
			translate
		}
		/EndPage
		{
			0 eq
			{
				${page_offset} add
				${loop_count} mod
				[
					/CropBox
						[
							[ ${lefts[@]} ]
								4 index
							get
								[ ${bottoms[@]} ]
									5 index
								get
									[ ${rights[@]} ]
										6 index
									get
										[ ${tops[@]} ]
											7 index
									get
						]
							/PAGE
				pdfmark
				[
					/MediaBox
						[
							0
								0
									[ ${rights[@]} ]
										6 index
									get
										[ ${tops[@]} ]
											7 index
									get
						]
							/PAGE
				pdfmark
				true
			}
			{false}
			ifelse
		}
	>>
setpagedevice
endcode

gs -o "$outfile"$pages_string -sDEVICE=pdfwrite -c "$code" -f "$infile"

if (( testmode ))
then
	$viewer "$outfile"
	rm "$outfile"
fi
ManDay is offline   Reply With Quote
Old 06-29-2015, 08:48 AM   #230
haoeryu
Junior Member
haoeryu began at the beginning.
 
Posts: 4
Karma: 10
Join Date: Jun 2015
Device: dpt-s1
You can buy it from some kind of company in the US

Or you can buy it through your friends in the US. One friend of mine bought it through a transferring company

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
haoeryu is offline   Reply With Quote
Old 07-05-2015, 02:59 AM   #231
Huyggy
Zealot
Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.Huyggy knows better than to ask about the Gravitic Imploder Lance.
 
Huyggy's Avatar
 
Posts: 119
Karma: 87860
Join Date: May 2007
Location: Strasbourg France
Device: Onyx Max 3 & Onyx Lumi 2
Looking only at the self-promoting video at the Sony website, I'm a bit worried about the contrast of the display. The background is quite grey...
https://store.sony.com/gsi/webstore/...2FHVavA8FOFTe2

The video would like you to think it's better than paper for lots of think but what strikes me in this vid is that I can't read so well than on the paper due to this apparently low contrast...
I had the same problem with my PocketBook Pro 903.

Last edited by Huyggy; 07-05-2015 at 03:04 AM.
Huyggy is offline   Reply With Quote
Old 07-05-2015, 02:02 PM   #232
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
It's kinda like unbleached newspaper print. Not particularly shining but nothing to worry about, either, imo.
ManDay is offline   Reply With Quote
Old 07-06-2015, 03:35 PM   #233
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,787
Karma: 103362673
Join Date: Apr 2011
Device: pb360
DPT-S1 web browser local file access

Is the web browser on the DPT-S1 able to acess local files via file:///path/to/local/file.html URL method?
j.p.s is offline   Reply With Quote
Old 07-07-2015, 03:47 PM   #234
gbgbgb
Member
gbgbgb began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Jul 2015
Device: Sony DPT-S1
Question Hard Shell Case for the DPT-S1

Hi all,
I am starting to really enjoy my new DPT-S1.

I'd love to take it on the road with me (think packed carry-on bag for airplane rides and what not).

The device is beautiful but it feels delicate. The sleeve that comes with the device is nice and elegant but it does not seem to provide much protection when placed in a packed bag - in particular I am afraid the (tall) device will bend in a packed backpack...

Has anyone found a hard shell case that fits the DPT-S1?

Deosnt have to be a perfect fit. Even something as old fashioned as a tin box the device the device can be placed inside with a bit of padding, for travel protection, will be fine.

Any and all advice/experiences welcome.
Many thanks!
gbgbgb is offline   Reply With Quote
Old 07-07-2015, 07:35 PM   #235
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 gbgbgb View Post
Hi all,
I am starting to really enjoy my new DPT-S1.

I'd love to take it on the road with me (think packed carry-on bag for airplane rides and what not).

The device is beautiful but it feels delicate. The sleeve that comes with the device is nice and elegant but it does not seem to provide much protection when placed in a packed bag - in particular I am afraid the (tall) device will bend in a packed backpack...

Has anyone found a hard shell case that fits the DPT-S1?

Deosnt have to be a perfect fit. Even something as old fashioned as a tin box the device the device can be placed inside with a bit of padding, for travel protection, will be fine.

Any and all advice/experiences welcome.
Many thanks!
as far as i know, there is no case made for the DPT-S1 at all, from anyone. if you find a suitably sized tin with room enough for padding, i guess you can use that. i ended up purchasing a folio made for a note pad, took the paper pad out, and slipped in the reader. i purchase this from office depot: FORAY Pad & Tablet Folio, 9 1/2" x 12 1/4", Black (# 844148).
rem736 is offline   Reply With Quote
Old 07-07-2015, 09:26 PM   #236
gbgbgb
Member
gbgbgb began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Jul 2015
Device: Sony DPT-S1
Quote:
Originally Posted by rem736 View Post
as far as i know, there is no case made for the DPT-S1 at all, from anyone. if you find a suitably sized tin with room enough for padding, i guess you can use that. i ended up purchasing a folio made for a note pad, took the paper pad out, and slipped in the reader. i purchase this from office depot: FORAY Pad & Tablet Folio, 9 1/2" x 12 1/4", Black (# 844148).
Thank you, rem736! I did see mention of this item earlier in the thread. Alas, Office Depot currently says "Out of stock for delivery". No luck at the local Office Depot either.

Amazon has some options (if you search DPT-S1) but they all seem not much hardier than the original we get from Sony.

Last edited by gbgbgb; 07-07-2015 at 09:52 PM.
gbgbgb is offline   Reply With Quote
Old 07-08-2015, 04:36 PM   #237
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 gbgbgb View Post
Thank you, rem736! I did see mention of this item earlier in the thread. Alas, Office Depot currently says "Out of stock for delivery". No luck at the local Office Depot either.

Amazon has some options (if you search DPT-S1) but they all seem not much hardier than the original we get from Sony.
you should be able to find it almost anywhere. it shouldn't be limited to office depot. on amazon, search for "FORAY Pad & Tablet Folio, 9 1/2" x 12 1/4", Black (# 844148)"
rem736 is offline   Reply With Quote
Old 07-08-2015, 06:31 PM   #238
gbgbgb
Member
gbgbgb began at the beginning.
 
Posts: 14
Karma: 10
Join Date: Jul 2015
Device: Sony DPT-S1
Quote:
Originally Posted by rem736 View Post
you should be able to find it almost anywhere. it shouldn't be limited to office depot. on amazon, search for "FORAY Pad & Tablet Folio, 9 1/2" x 12 1/4", Black (# 844148)"
Good point. Ended up buying at Office Depot (thanks to you):
FORAY® Leather Padfolio, Zipper Closure, Black
Item # 173150 OfficeMax # 25003629

Slightly more expensive, had more junk for me to take out (inc a calculator but the thing "swallows" the DPT-S1 while still in its Sony sleeve. So I'm happy. Thanks again!
gbgbgb is offline   Reply With Quote
Old 07-09-2015, 07:24 AM   #239
md02439
Enthusiast
md02439 can extract oil from cheesemd02439 can extract oil from cheesemd02439 can extract oil from cheesemd02439 can extract oil from cheesemd02439 can extract oil from cheesemd02439 can extract oil from cheesemd02439 can extract oil from cheesemd02439 can extract oil from cheese
 
Posts: 33
Karma: 1022
Join Date: Jul 2011
Device: M92 black
@gbgbgb, @rem736: could you make a photo of the DPT-S1 in the Padfolio?

Thanks
md02439 is offline   Reply With Quote
Old 07-09-2015, 12:18 PM   #240
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
FORAY Pad & Tablet Folio, 9 1/2" x 12 1/4", Black (# 844148)

@md02439, here you go. this folio has an elastic strap that wraps around to keep the folio closed. it is sized too perfectly for the DPT-S1, leaving the pen sticking out of the cover, which is a negative. it does have a pen holster on the inside spine. however, using it will cause the reader to stick out. so i decided not to use that holster. besides, removing the holster from the DPT-S1 leaves a hole, which could lead to dust entering the unit.
Attached Thumbnails
Click image for larger version

Name:	folio1.jpg
Views:	3187
Size:	48.8 KB
ID:	140127   Click image for larger version

Name:	folio2.jpg
Views:	754
Size:	40.0 KB
ID:	140128   Click image for larger version

Name:	folio3.jpg
Views:	804
Size:	33.1 KB
ID:	140129   Click image for larger version

Name:	folio4.jpg
Views:	662
Size:	44.5 KB
ID:	140130  

Last edited by rem736; 07-09-2015 at 12:22 PM.
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 08:40 AM.


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