Jon:
For non-DRM'ed ereader .pdb to .html, you may want to try
EBook-Tools by Zed Pobre (member
AZed here).
I have installed it and using a very simple script (see below) can convert ereader .pdb to .html (mind you I only tried it on a couple of .pdb's as I normally only use PalmDoc .pdb!)
If you get it installed correctly, you can use this simple Perl script (just copy it and save it to
ereader2html.pl):
Code:
#!/usr/bin/env perl
# Usage: ereader2html.pl [ebook.pdb]
use EBook::Tools::EReader;
my $ebook = shift || 'ebook.pdb';
my $pdb = EBook::Tools::EReader->new();
$pdb->Load($ebook);
#print "Loaded '",$pdb->{title},"' by ",$pdb->{author},"\n";
#my $html = $pdb->html;
#my $pml = $pdb->pml;
$pdb->write_html($ebook.'.html');
$pdb->write_unknown_records;
and run it as follows on your
ebook.pdb:
Code:
ereader2html.pl ebook.pdb
- or for the windows executable -
ereader2html.exe ebook.pdb
If you want to try it out for yourself, I also provide a compiled .exe in the .zip below. This is crude and could be improved on. This is just to see if it can convert any ereader .pdb file you want to convert.