Quote:
Originally Posted by myelinator
This program relies on two other pieces of software: - Mobiperl (https://www.mobileread.com/forums/sho...&highlight=prc) and its dependencies (perl, etc.)
- ImageMagick (http://www.imagemagick.org/)
After you have downloaded Mobiperl you need to make modifications to the source perl to optimize it for use with the Kindle. In the file [...your perl libraries...]/MobiPerl/Util.pm in the subroutine get_image_data() change the lines that read:
Code:
my $maxwidth = 480;
my $maxheight = 640;
to:
Code:
my $maxwidth = 525;
my $maxheight = 700;
|
So you got Mobiperl to work on a Mac. Was there any problem with the Perl code? And could you write something about how to install Perl and the required modules on a Mac that I could put on the web page for Mobiperl?
This 480x640 limit is because of a bug in the Cybook. When I try to use larger images then sometimes the file cannot be read. So to be safe for all devices I have this limit until Bookeen fix their bug.