View Single Post
Old 11-30-2008, 06:16 PM   #4
moggie
Enthusiast
moggie is on a distinguished road
 
moggie's Avatar
 
Posts: 34
Karma: 74
Join Date: Nov 2008
Location: Cambridge,UK
Device: sony 505
I am using the following code:


Code:
#!/bin/bash
IN=$1
OUT=`echo $IN| sed -e 's/\.cb.$/\.lrf/' `
if [  -f "$OUT" ];
then
        echo skipping $OUT
        exit 0
fi

comic2lrf -w  -l -r  "$IN" -o "$OUT"
What I mean is that the screen is nominally 584x754 pixels, if comic2lrf generated images that where 754x1168 would ( well 754x973 ) would the reader display them correctly in portrait mode but also show them better in landscape as it has enough information to show the picture better ?
moggie is offline   Reply With Quote