On Fri, May 09, 2008 at 04:15:07PM +0200, André Myrbråten <[EMAIL PROTECTED]>
wrote:
> Is this something the pdf2swf -c option or swfbbox can do? How would I go
> about doing this?
I'd use
pdf2swf -I file.pdf
to find out the page size width/height and then
pdf2swf -c 0:0:width/2:height -m 0:0 file.pdf -o page1.swf
for the first page (substitute "width/2" and "height" by the
corresponding values) and
pdf2swf -c 0:0:width/2:height -m -width/2:0 file.pdf -o page2.swf
for the second.
Alternatively, you can first generate a SWF of both pages, and
then use
swfcombine -d -X width/2 -Y height -x 0 -y 0 file.swf -o page1.swf
swfcombine -d -X width/2 -Y height -x -width/2 -y 0 file.swf -o page2.swf
.
The latter produces bigger SWF files, though, so the former method is
preferrable.
Greetings
Matthias