Since a friend requested me to show him enTourage edge's Journal capabilities (e-ink side), you may find here something inspirational for developing JBC's scribbling.
http://www.box.com/s/j7g6eod1d9alscsbdktr
ESJ file is the journal.
PDF is the same file, exported from the Journal.
I added to the folder a random *.esa file which should contain a small annotation made over an epub file.
These files are similar to Xournal ones. Copy-paste from here:
https://www.mobileread.com/forums/sho...urnal+location
These files appear to be xournal files, but you cannot open them with xournal. You need to do the following first:
copy foo.esj to another machine with xournal installed.
mv foo.esj foo.gz
unzip foo.gz
Then open foo with text editor, and replace line
<page width="396.00" height="540.00" tabname="">
with line
<page width="396.00" height="540.00">
Then do:
gzip foo
mv foo.gz foo.xoj
The resulting foo.xoj file can then be opened with xournal.
--
There's another difference - xournal doesn't understand the "landscape" or "activity" (calendar) background style, so instead of just
Code:
zcat $infile | sed -e 's/\(^.*<page .*\) tabname.*$/\1>/' | gzip -c > $outfile
you need to do:
Code:
zcat $infile | sed -e 's/\(^.*<page .*\) tabname.*$/\1>/' -e 's/landscape/plain/' *-e 's/activity/plain/'| gzip -c > $outfile
A user developed an app to convert these annotations with MS OneNote:
http://edgesync.codeplex.com/