gpt4 book ai didi

html - 将文件转换(打印)为 PDF - 使用 R? (在窗口中)

转载 作者:太空狗 更新时间:2023-10-29 14:11:44 26 4
gpt4 key购买 nike

我想使用 R 将 HTML 文件转换为 PDF 文件。

是否有可以执行此转换的命令或工具/命令的组合?

最佳答案

更新:如果你安装了 Pandoc,你可以使用类似的东西

html_to_pdf <- function(html_file, pdf_file) {
cmd <- sprintf("pandoc %s -t latex -o %s", html_file, pdf_file)
system(cmd)
}

有一些网络服务可以将 HTML 转换为 PDF 并具有 REST API,因此您可以使用 RCurl 调用它们。快速的互联网搜索给出了 pdfcrowd.com .他们允许您上传文档以及转换 URL,但这是一项付费服务​​。

下一个匹配项是 joliprint ,这是免费的。试试这个:

library(RCurl)
url_to_convert <- curlEscape("http://lifehacker.com/5706937/dont-make-important-decisions-until-your-decision-time") #or wherever

the_pdf <- getForm(
"http://eu.joliprint.com/api/rest/url/print",
url = url_to_convert
)

关于html - 将文件转换(打印)为 PDF - 使用 R? (在窗口中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7481838/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com