Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用CAM::PDF. 我还有最后一个要求是获得 PDF 阅读语言。我需要知道它是英语还是法语等。
CAM::PDF
my $pdf = CAM::PDF->new($filePath) || die "<br/>Error: $filePath"; my $info = $pdf->getValue($pdf->{trailer}->{Info});
$info转储变量时,我没有看到有关语言类型的任何其他信息。这不可能获得PDF语言吗?
$info
正如 amon 所说,我认为您无法在元数据中找到此信息。
您可以检查Lingua::Identify模块。