Ignore:
Timestamp:
2018-06-21T21:41:12+12:00 (6 years ago)
Author:
ak19
Message:

First set of commits to do with implementing the new 'paged_html' output option of PDFPlugin that uses using xpdftools' new pdftohtml. So far tested only on Linux (64 bit), but things work there so I'm optimistically committing the changes since they work. 2. Committing the pre-built Linux binaries of XPDFtools for both 32 and 64 bit built by the XPDF group. 2. To use the correct bitness variant of xpdftools, setup.bash now exports the BITNESS env var, consulted by gsConvert.pl. 3. All the perl code changes to do with using xpdf tools' pdftohtml to generate paged_html and feed it in the desired form into GS(3): gsConvert.pl, PDFPlugin.pm and its parent ConvertBinaryPFile.pm have been modified to make it all work. xpdftools' pdftohtml generates a folder containing an html file and a screenshot for each page in a PDF (as well as an index.html linking to each page's html). However, we want a single html file that contains each individual 'page' html's content in a div, and need to do some further HTML style, attribute and structure modifications to massage the xpdftool output to what we want for GS. In order to parse and manipulate the HTML 'DOM' to do this, we're using the Mojo::DOM package that Dr Bainbridge found and which he's compiled up. Mojo::DOM is therefore also committed in this revision. Some further changes and some display fixes are required, but need to check with the others about that.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/plugins/ConvertBinaryFile.pm

    r31766 r32205  
    161161    }
    162162
    163     if ($convert_to =~ /^html/) { # may be html or html_multi
     163    if ($convert_to =~ /^html/ || $convert_to eq "paged_html") { # may be html or html_multi, or paged_html with the new Xpdf's own pdftohtml
    164164    $self->{'convert_to_plugin'} = "HTMLPlugin";
    165165    $self->{'convert_to_ext'} = "html";
     
    349349        $output_filename = $tmp_dirname . "\/$utf8_tailname\/" . $utf8_tailname . ".$output_type";
    350350    }
     351    } elsif ($output_type eq "paged_html") {
     352    $output_filename =~ s/$lc_suffix$/.html/;
    351353    } else {
    352354    $output_filename =~ s/$lc_suffix$/.$output_type/;
     
    371373       
    372374    if ("$conv_filename" eq "") {return -1;} # had an error, will be passed down pipeline
    373     if (! -e "$conv_filename") {return -1;}
     375
     376    # We used to return -1 here if $conv_filename didn't exist at this stage
     377    # However, for "paged_html" convert_to mode, the converted HTML file $conv_filename
     378    # will only be created from conversion products *after* convert_post_process() returns
     379    my $output_type=$self->{'convert_to'};
     380    if ($output_type ne "paged_html" && ! -e "$conv_filename") {return -1;} 
    374381    $self->{'conv_filename'} = $conv_filename;
    375382    $self->convert_post_process($conv_filename);
     383    if ($output_type eq "paged_html" && ! -e "$conv_filename") {return -1;} 
    376384
    377385    # Run the "fribidi" (http://fribidi.org) Unicode Bidirectional Algorithm program over the converted file
Note: See TracChangeset for help on using the changeset viewer.