请记住,.djvu 文件不像 EPUB、MOBI、PDF 和其他电子书文件格式等类似格式那样受欢迎,我将采用以下方法来解决该问题。
1) 创建一个 Web 服务来将 djvu 文件转换为 pdf ex.:http://example.com/djvuToPdf/djvuFile/outputFile
2)阅读PDF文件UIWebView
要创建 Web 服务,我假设您可以访问任何 Linux 分布式服务器,在我的例子中是 Ubuntu 16.04。
第一步:安装 djvulibre
sudo apt-get install djvulibre-bin ghostscript
第二步:试运行$ djvups inputFile.djvu | ps2pdf - outputFile.pdf
。您也可以使用该ddjvu
命令。但是,使用命令转换的文件ddjvu
比djvups
命令大 10 倍。您可能要考虑使用--help
探索设置,如mode
,quality
等等。
第三步:创建一个 Web 服务(为了简单起见,我使用 PHP,在你方便的时候使用任何东西 [Python golang])
<?php
$inputFile = $_GET['input_file'];
$outputFile = $_GET['output_file'];
// use shell exec to execute the command
// keep in mind that the conversion takes quite a long time
shell_exec(sprintf("djvups %s | ps2pdf - %s", $inputFile, $outputFile));
$name = $outputFile;
//file_get_contents is standard function
$content = file_get_contents($name);
header('Content-Type: application/pdf');
header('Content-Length: '.strlen( $content ));
header('Content-disposition: inline; filename="' . $name . '"');
header('Cache-Control: public, must-revalidate, max-age=0');
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
echo $content;
?>
最后一步:在 App 中加载 PDF
正如 Apple 建议的那样,考虑使用 WKWebView 代替 UIWebView。
if let pdfURL = Bundle.main.url(forResource: "pdfFile", withExtension: "pdf", subdirectory: nil, localization: nil) {
do {
let data = try Data(contentsOf: pdfURL)
let webView = WKWebView(frame: CGRect(x:20,y:20,width:view.frame.size.width-40, height:view.frame.size.height-40))
webView.load(data, mimeType: "application/pdf", characterEncodingName:"", baseURL: pdfURL.deletingLastPathComponent())
view.addSubview(webView)
}
catch {
// catch errors here
}
}