blob: ed36eefce2be0e12192a9e1a5d8d146747bdbc3b [file] [log] [blame]
Hao Zhu73cf3732018-05-11 17:50:05 -04001#' Save kable to files
2#'
3#' @param x A piece of HTML code for tables, usually generated by kable and
4#' kableExtra
Hao Zhu7f8b6842018-10-23 17:41:13 -04005#' @param file save to files. If the input table is in HTML and the output file
6#' ends with `.png`, `.pdf` and `.jpeg`, `webshot` will be used to do the
Hao Zhu7039ecf2019-01-06 17:51:21 -05007#' conversion.
Hao Zhu73cf3732018-05-11 17:50:05 -04008#' @param bs_theme Which Bootstrap theme to use
9#' @param self_contained Will the files be self-contained?
Hao Zhu7039ecf2019-01-06 17:51:21 -050010#' @param extra_dependencies Additional HTML dependencies. For example,
11#' `list(`
12#' @param ... Additional variables being passed to `webshot::webshot`. This
13#' is for HTML only.
14#' @param latex_header_includes A character vector of extra LaTeX header stuff.
15#' Each element is a row. You can have things like
16#' `c("\\\\usepackage{threeparttable}", "\\\\usepackage{icons}")` You could
17#' probably add your language package here if you use non-English text in your
18#' table, such as `\\\\usepackage[magyar]{babel}`.
19#' @param keep_tex A T/F option to control if the latex file that is initially created
20#' should be kept. Default is `FALSE`.
Hao Zhuab670942020-08-19 15:35:35 -040021#' @param density density argument passed to magick if needed. Default is 300.
Jiaxiang Lie4b24f22019-04-05 13:38:11 +080022#' @examples
23#' \dontrun{
24#' library(kableExtra)
Hao Zhu73cf3732018-05-11 17:50:05 -040025#'
Jiaxiang Lie4b24f22019-04-05 13:38:11 +080026#' kable(mtcars[1:5, ], "html") %>%
27#' kable_styling("striped") %>%
28#' row_spec(1, color = "red") %>%
29#' save_kable("inst/test.pdf")
30#' }
Hao Zhu73cf3732018-05-11 17:50:05 -040031#' @export
32save_kable <- function(x, file,
Hao Zhu7039ecf2019-01-06 17:51:21 -050033 bs_theme = "simplex", self_contained = TRUE,
34 extra_dependencies = NULL, ...,
Hao Zhuab670942020-08-19 15:35:35 -040035 latex_header_includes = NULL, keep_tex = FALSE,
36 density = 300) {
Vincent Arel-Bundock75ecb622020-10-11 17:47:07 -040037
38 if (!is.null(attr(x, "format"))) {
39
40 # latex
41 if (attr(x, "format") == "latex") {
42 return(save_kable_latex(x, file, latex_header_includes, keep_tex, density))
43
44 # markdown
45 } else if (attr(x, "format") == "pipe") {
46
47 # good file extension: write to file
48 if (tools::file_ext(file) %in% c("txt", "md", "markdown", "Rmd")) {
49 return(save_kable_markdown(x, file))
50
51 # bad file extension: warning + keep going to html writer
52 } else {
53 warning('`save_kable` can only save markdown tables to files with the following extensions: .txt, .md, .markdown, .Rmd. Since the supplied file name has a different extension, `save_kable` will try to use the HTML writer. This is likely to produce suboptimal results. To save images or other file formats, try supplying a LaTeX or HTML table to `save_kable`.')
54 }
55
56 }
57
Hao Zhu7f8b6842018-10-23 17:41:13 -040058 }
Vincent Arel-Bundock75ecb622020-10-11 17:47:07 -040059
60 # html
Hao Zhu7039ecf2019-01-06 17:51:21 -050061 return(save_kable_html(x, file, bs_theme, self_contained,
Hao Zhuab670942020-08-19 15:35:35 -040062 extra_dependencies, density, ...))
Hao Zhu7f8b6842018-10-23 17:41:13 -040063}
64
Vincent Arel-Bundock75ecb622020-10-11 17:47:07 -040065
66save_kable_markdown <- function(x, file, ...) {
67 out <- paste(x, collapse="\n")
68 writeLines(text=out, con=file)
69 return(invisible(file))
70}
71
72
Hao Zhu7039ecf2019-01-06 17:51:21 -050073save_kable_html <- function(x, file, bs_theme, self_contained,
Hao Zhuab670942020-08-19 15:35:35 -040074 extra_dependencies, density, ...) {
Hao Zhu7039ecf2019-01-06 17:51:21 -050075 dependencies <- list(
Hao Zhu73cf3732018-05-11 17:50:05 -040076 rmarkdown::html_dependency_jquery(),
77 rmarkdown::html_dependency_bootstrap(theme = bs_theme),
Hao Zhuab670942020-08-19 15:35:35 -040078 html_dependency_lightable(),
Hao Zhu73cf3732018-05-11 17:50:05 -040079 html_dependency_kePrint()
80 )
Hao Zhu7039ecf2019-01-06 17:51:21 -050081 if (!is.null(extra_dependencies)) {
82 dependencies <- append(dependencies, extra_dependencies)
83 }
84
Hao Zhu46a42a12019-01-22 00:11:11 -050085 html_header <- htmltools::tags$head(dependencies)
Hao Zhu73cf3732018-05-11 17:50:05 -040086 html_table <- htmltools::HTML(as.character(x))
87 html_result <- htmltools::tagList(html_header, html_table)
Hao Zhu7f8b6842018-10-23 17:41:13 -040088
ghaarsma8e786ad2019-02-16 21:28:01 -060089
90 # Check if we are generating an image and use webshot to do that
Hao Zhu7f8b6842018-10-23 17:41:13 -040091 if (tools::file_ext(file) %in% c("png", "jpg", "jpeg", "pdf")) {
Hao Zhu454bb422020-10-19 16:36:36 -040092 file_temp_html <- tempfile(
93 pattern = tools::file_path_sans_ext(basename(file)),
94 fileext = ".html")
ghaarsma8e786ad2019-02-16 21:28:01 -060095 file.create(file_temp_html)
96 file_temp_html <- normalizePath(file_temp_html)
Hao Zhu454bb422020-10-19 16:36:36 -040097
ghaarsma8e786ad2019-02-16 21:28:01 -060098 file.create(file)
99 file <- normalizePath(file)
100
101 # Generate a random temp lib directory. The sub is to remove any back or forward slash at the beginning of the temp_dir
Hao Zhu454bb422020-10-19 16:36:36 -0400102 temp_dir <- sub(pattern = '^[\\\\/]{1,2}',
103 replacement = '',
104 tempfile(pattern = 'lib', tmpdir = '' , fileext = ''))
105 save_HTML(html_result, file = file_temp_html, libdir = temp_dir)
ghaarsma8e786ad2019-02-16 21:28:01 -0600106
107 result <- webshot::webshot(file_temp_html, file, ...)
108 if (is.null(result)) {
109 # A webshot could not be created. Delete newly created files and issue msg
110 file.remove(file)
111 file.remove(file_temp_html)
112 message('save_kable could not create image with webshot package. Please check for any webshot messages')
Hao Zhuf1873a42019-01-07 15:57:01 -0500113 } else {
ghaarsma8e786ad2019-02-16 21:28:01 -0600114 if (tools::file_ext(file) == "pdf") {
115 message("Note that HTML color may not be displayed on PDF properly.")
116 }
117 # Remove temp html file and temp lib directory
118 file.remove(file_temp_html)
119 unlink(file.path(dirname(file_temp_html), temp_dir), recursive = TRUE)
120
121 if (requireNamespace("magick", quietly = TRUE)) {
Hao Zhuab670942020-08-19 15:35:35 -0400122 img_rework <- magick::image_read(file, density = density)
ghaarsma8e786ad2019-02-16 21:28:01 -0600123 img_rework <- magick::image_trim(img_rework)
124 img_info <- magick::image_info(img_rework)
Hao Zhuab670942020-08-19 15:35:35 -0400125 magick::image_write(img_rework, file, density = density)
ghaarsma8e786ad2019-02-16 21:28:01 -0600126 attr(file, "info") <- img_info
127 } else {
128 message("save_kable will have the best result with magick installed. ")
129 }
Hao Zhuf1873a42019-01-07 15:57:01 -0500130 }
ghaarsma8e786ad2019-02-16 21:28:01 -0600131
Hao Zhu7f8b6842018-10-23 17:41:13 -0400132 } else {
Hao Zhuf1873a42019-01-07 15:57:01 -0500133 file.create(file)
134 file <- normalizePath(file)
ghaarsma8e786ad2019-02-16 21:28:01 -0600135
Hao Zhu7f8b6842018-10-23 17:41:13 -0400136 if (self_contained) {
ghaarsma8e786ad2019-02-16 21:28:01 -0600137 # Generate a random temp lib directory. The sub is to remove any back or forward slash at the beginning of the temp_dir
Hao Zhu454bb422020-10-19 16:36:36 -0400138 temp_dir <- sub(pattern = '^[\\\\/]{1,2}',
139 replacement = '',
140 tempfile(pattern = 'lib', tmpdir = '' , fileext = ''))
141 save_HTML(html_result, file = file, libdir = temp_dir)
ghaarsma8e786ad2019-02-16 21:28:01 -0600142 #remove_html_doc(file)
Hao Zhu7f8b6842018-10-23 17:41:13 -0400143 rmarkdown::pandoc_self_contained_html(file, file)
ghaarsma8e786ad2019-02-16 21:28:01 -0600144 unlink(file.path(dirname(file), temp_dir), recursive = TRUE)
145 } else {
146 # Simply use the htmltools::save_html to write out the files. Dependencies go to the standard lib folder
147 htmltools::save_html(html_result, file = file)
Hao Zhu7f8b6842018-10-23 17:41:13 -0400148 }
Hao Zhu73cf3732018-05-11 17:50:05 -0400149 }
Hao Zhud8516932019-01-06 18:56:47 -0500150
Hao Zhuf1873a42019-01-07 15:57:01 -0500151 return(invisible(file))
Hao Zhu73cf3732018-05-11 17:50:05 -0400152}
Hao Zhu7f8b6842018-10-23 17:41:13 -0400153
Hao Zhu454bb422020-10-19 16:36:36 -0400154# Local version of htmltools::save_html with fix to relative path.
155# See https://github.com/rstudio/htmltools/pull/105
156save_HTML <- function(html, file, background = "white", libdir="lib") {
157 base_file <- basename(file)
158 dir <- dirname(file)
159 file <- file.path(dir, base_file)
160 oldwd <- setwd(dir)
161 on.exit(setwd(oldwd), add = TRUE)
162 rendered <- htmltools::renderTags(html)
163 deps <- lapply(rendered$dependencies, function(dep) {
164 dep <- htmltools::copyDependencyToDir(dep, libdir, FALSE)
165 dep <- htmltools::makeDependencyRelative(dep, dir, FALSE)
166 dep
167 })
168 html <- c("<!DOCTYPE html>", "<html>", "<head>",
169 "<meta charset=\"utf-8\" title=\"table output\"/>",
170 sprintf("<style>body{background-color:%s;}</style>",
171 htmltools::htmlEscape(background)),
172 htmltools::renderDependencies(deps, c("href", "file")),
173 rendered$head, "</head>", "<body>",
174 rendered$html, "</body>", "</html>")
175 writeLines(html, file, useBytes = TRUE)
176}
177
Hao Zhu46a42a12019-01-22 00:11:11 -0500178remove_html_doc <- function(x){
179 out <- paste(readLines(x)[-1], collapse = "\n")
180 writeLines(out, x)
181}
182
Hao Zhuab670942020-08-19 15:35:35 -0400183save_kable_latex <- function(x, file, latex_header_includes, keep_tex, density) {
Vincent Arel-Bundock97166b32020-08-26 11:42:23 -0400184
185 # if file extension is .tex, write to file, return the table as an
186 # invisible string, and do nothing else
187 if (tools::file_ext(file) == "tex") {
188 writeLines(x, file, useBytes = T)
189 return(invisible(x))
190 }
191
Hao Zhu7039ecf2019-01-06 17:51:21 -0500192 temp_tex <- c(
193 "\\documentclass[border=1mm, preview]{standalone}",
194 "\\usepackage[active,tightpage]{preview}",
195 "\\usepackage{varwidth}",
196 "\\usepackage{amssymb, amsmath}",
197 "\\usepackage{ifxetex,ifluatex}",
198 "\\usepackage{fixltx2e}",
199 "\\usepackage{polyglossia}",
Hao Zhu7039ecf2019-01-06 17:51:21 -0500200 latex_pkg_list(),
201 "\\usepackage{graphicx}",
Hao Zhu7039ecf2019-01-06 17:51:21 -0500202 "\\usepackage{xltxtra,xunicode}",
Hao Zhueac7b032020-08-19 14:07:03 -0400203 "\\usepackage{xcolor}",
Hao Zhu7039ecf2019-01-06 17:51:21 -0500204 latex_header_includes,
205 "\\begin{document}",
206 solve_enc(x),
207 "\\end{document}"
208 )
209 temp_tex <- paste(temp_tex, collapse = "\n")
Hao Zhu7f8b6842018-10-23 17:41:13 -0400210
Hao Zhud8516932019-01-06 18:56:47 -0500211 temp_tex_file <- paste0(tools::file_path_sans_ext(file), ".tex")
Hao Zhu7039ecf2019-01-06 17:51:21 -0500212 writeLines(temp_tex, temp_tex_file, useBytes = T)
Hao Zhuf1873a42019-01-07 15:57:01 -0500213 temp_tex_file <- normalizePath(temp_tex_file)
214 file_no_ext <- tools::file_path_sans_ext(temp_tex_file)
215
216 owd <- setwd(dirname(temp_tex_file))
217
AC Craft7cea5332020-04-19 16:01:07 -0400218 system(paste0('xelatex -interaction=batchmode "', temp_tex_file,'"'))
Hao Zhu7039ecf2019-01-06 17:51:21 -0500219 if (!keep_tex) {
Hao Zhuf1873a42019-01-07 15:57:01 -0500220 temp_file_delete <- paste0(file_no_ext, c(".tex", ".aux", ".log"))
Hao Zhu7039ecf2019-01-06 17:51:21 -0500221 unlink(temp_file_delete)
222 }
223
Hao Zhuf1873a42019-01-07 15:57:01 -0500224 table_img_info <- NULL
Hao Zhud8516932019-01-06 18:56:47 -0500225 if (tools::file_ext(file) != "pdf") {
226 table_img_pdf <- try(
Hao Zhuf1873a42019-01-07 15:57:01 -0500227 magick::image_read(paste0(file_no_ext, ".pdf"),
Hao Zhuab670942020-08-19 15:35:35 -0400228 density = density), silent = T)
Bill Evans30b84f52020-09-11 09:54:58 -0700229 if (inherits(table_img_pdf, "try-error")) {
Hao Zhud8516932019-01-06 18:56:47 -0500230 stop("We hit an error when trying to use magick to read the generated ",
Hao Zhu53e59612019-01-15 12:16:06 -0600231 "PDF file. You may check your magick installation and try to ",
232 "use magick::image_read to read the PDF file manually. It's also ",
233 "possible that you didn't have ghostscript installed.")
Hao Zhud8516932019-01-06 18:56:47 -0500234 }
Hao Zhuf1873a42019-01-07 15:57:01 -0500235 unlink(paste0(file_no_ext, ".pdf"))
Hao Zhud8516932019-01-06 18:56:47 -0500236 table_img <- magick::image_convert(table_img_pdf,
237 tools::file_ext(file))
Hao Zhuf1873a42019-01-07 15:57:01 -0500238 table_img_info <- magick::image_info(table_img)
239 magick::image_write(table_img,
Hao Zhuab670942020-08-19 15:35:35 -0400240 paste0(file_no_ext, ".", tools::file_ext(file)),
241 density = density)
Hao Zhu7039ecf2019-01-06 17:51:21 -0500242 }
Hao Zhu7039ecf2019-01-06 17:51:21 -0500243
Hao Zhuf1873a42019-01-07 15:57:01 -0500244 setwd(owd)
245
246 out <- paste0(file_no_ext, ".", tools::file_ext(file))
247 attr(out, "info") <- table_img_info
248 return(invisible(out))
Hao Zhu7f8b6842018-10-23 17:41:13 -0400249}