Help for this page

Select Code to Download


  1. or download this
      use Converter;
      my $document = new Converter;
    ...
      );
      my $convert_args_hashref = \%convert_args_hash;
      my $status = $document->convert($convert_args_hashref);
    
  2. or download this
      my $status = $document->convert(
        {
    ...
          'Output' => '[Out file]'
        }
      );
    
  3. or download this
       sub convert {
          my $args_hashref = shift;
          print "The MIME-Type parameter = $args_hashref->{'MIME-Type'}\n"
    +;
          ### blah blah ###
       } # end sub convert