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