I want to create pdf using XSLT, ApacheFOP use in PERL. Can anyone Help me?
use 5.010;
use warnings;
use strict;
use XML::ApacheFOP;
my $Fop = XML::ApacheFOP->new();
$Fop->fop( xml => "math.xml", xsl => "math.xsl", outfile => "temp.pdf" ) or die "cannot create pdf: " . $Fop->errstr;
Error showing in cmd line can't locate XML/ApacheFOP.pm