blob: c0745cf627f733ba859500e875e9a2d5b5af9b5b [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")) {
ghaarsma8e786ad2019-02-16 21:28:01 -060092 file_temp_html <- tempfile(pattern = tools::file_path_sans_ext(file), tmpdir = '.', fileext = ".html")
93
94 file.create(file_temp_html)
95 file_temp_html <- normalizePath(file_temp_html)
96 file.create(file)
97 file <- normalizePath(file)
98
99 # Generate a random temp lib directory. The sub is to remove any back or forward slash at the beginning of the temp_dir
100 temp_dir <- sub(pattern = '^[\\\\/]{1,2}', replacement = '', tempfile(pattern = 'lib', tmpdir = '' , fileext = ''))
101 htmltools::save_html(html_result, file = file_temp_html, libdir = temp_dir)
102
103 result <- webshot::webshot(file_temp_html, file, ...)
104 if (is.null(result)) {
105 # A webshot could not be created. Delete newly created files and issue msg
106 file.remove(file)
107 file.remove(file_temp_html)
108 message('save_kable could not create image with webshot package. Please check for any webshot messages')
Hao Zhuf1873a42019-01-07 15:57:01 -0500109 } else {
ghaarsma8e786ad2019-02-16 21:28:01 -0600110 if (tools::file_ext(file) == "pdf") {
111 message("Note that HTML color may not be displayed on PDF properly.")
112 }
113 # Remove temp html file and temp lib directory
114 file.remove(file_temp_html)
115 unlink(file.path(dirname(file_temp_html), temp_dir), recursive = TRUE)
116
117 if (requireNamespace("magick", quietly = TRUE)) {
Hao Zhuab670942020-08-19 15:35:35 -0400118 img_rework <- magick::image_read(file, density = density)
ghaarsma8e786ad2019-02-16 21:28:01 -0600119 img_rework <- magick::image_trim(img_rework)
120 img_info <- magick::image_info(img_rework)
Hao Zhuab670942020-08-19 15:35:35 -0400121 magick::image_write(img_rework, file, density = density)
ghaarsma8e786ad2019-02-16 21:28:01 -0600122 attr(file, "info") <- img_info
123 } else {
124 message("save_kable will have the best result with magick installed. ")
125 }
Hao Zhuf1873a42019-01-07 15:57:01 -0500126 }
ghaarsma8e786ad2019-02-16 21:28:01 -0600127
Hao Zhu7f8b6842018-10-23 17:41:13 -0400128 } else {
Hao Zhuf1873a42019-01-07 15:57:01 -0500129 file.create(file)
130 file <- normalizePath(file)
ghaarsma8e786ad2019-02-16 21:28:01 -0600131
Hao Zhu7f8b6842018-10-23 17:41:13 -0400132 if (self_contained) {
ghaarsma8e786ad2019-02-16 21:28:01 -0600133 # Generate a random temp lib directory. The sub is to remove any back or forward slash at the beginning of the temp_dir
134 temp_dir <- sub(pattern = '^[\\\\/]{1,2}', replacement = '', tempfile(pattern = 'lib', tmpdir = '' , fileext = ''))
135 htmltools::save_html(html_result, file = file, libdir = temp_dir)
136 #remove_html_doc(file)
Hao Zhu7f8b6842018-10-23 17:41:13 -0400137 rmarkdown::pandoc_self_contained_html(file, file)
ghaarsma8e786ad2019-02-16 21:28:01 -0600138 unlink(file.path(dirname(file), temp_dir), recursive = TRUE)
139 } else {
140 # Simply use the htmltools::save_html to write out the files. Dependencies go to the standard lib folder
141 htmltools::save_html(html_result, file = file)
Hao Zhu7f8b6842018-10-23 17:41:13 -0400142 }
Hao Zhu73cf3732018-05-11 17:50:05 -0400143 }
Hao Zhud8516932019-01-06 18:56:47 -0500144
Hao Zhuf1873a42019-01-07 15:57:01 -0500145 return(invisible(file))
Hao Zhu73cf3732018-05-11 17:50:05 -0400146}
Hao Zhu7f8b6842018-10-23 17:41:13 -0400147
Hao Zhu46a42a12019-01-22 00:11:11 -0500148remove_html_doc <- function(x){
149 out <- paste(readLines(x)[-1], collapse = "\n")
150 writeLines(out, x)
151}
152
Hao Zhuab670942020-08-19 15:35:35 -0400153save_kable_latex <- function(x, file, latex_header_includes, keep_tex, density) {
Vincent Arel-Bundock97166b32020-08-26 11:42:23 -0400154
155 # if file extension is .tex, write to file, return the table as an
156 # invisible string, and do nothing else
157 if (tools::file_ext(file) == "tex") {
158 writeLines(x, file, useBytes = T)
159 return(invisible(x))
160 }
161
Hao Zhu7039ecf2019-01-06 17:51:21 -0500162 temp_tex <- c(
163 "\\documentclass[border=1mm, preview]{standalone}",
164 "\\usepackage[active,tightpage]{preview}",
165 "\\usepackage{varwidth}",
166 "\\usepackage{amssymb, amsmath}",
167 "\\usepackage{ifxetex,ifluatex}",
168 "\\usepackage{fixltx2e}",
169 "\\usepackage{polyglossia}",
Hao Zhu7039ecf2019-01-06 17:51:21 -0500170 latex_pkg_list(),
171 "\\usepackage{graphicx}",
Hao Zhu7039ecf2019-01-06 17:51:21 -0500172 "\\usepackage{xltxtra,xunicode}",
Hao Zhueac7b032020-08-19 14:07:03 -0400173 "\\usepackage{xcolor}",
Hao Zhu7039ecf2019-01-06 17:51:21 -0500174 latex_header_includes,
175 "\\begin{document}",
176 solve_enc(x),
177 "\\end{document}"
178 )
179 temp_tex <- paste(temp_tex, collapse = "\n")
Hao Zhu7f8b6842018-10-23 17:41:13 -0400180
Hao Zhud8516932019-01-06 18:56:47 -0500181 temp_tex_file <- paste0(tools::file_path_sans_ext(file), ".tex")
Hao Zhu7039ecf2019-01-06 17:51:21 -0500182 writeLines(temp_tex, temp_tex_file, useBytes = T)
Hao Zhuf1873a42019-01-07 15:57:01 -0500183 temp_tex_file <- normalizePath(temp_tex_file)
184 file_no_ext <- tools::file_path_sans_ext(temp_tex_file)
185
186 owd <- setwd(dirname(temp_tex_file))
187
AC Craft7cea5332020-04-19 16:01:07 -0400188 system(paste0('xelatex -interaction=batchmode "', temp_tex_file,'"'))
Hao Zhu7039ecf2019-01-06 17:51:21 -0500189 if (!keep_tex) {
Hao Zhuf1873a42019-01-07 15:57:01 -0500190 temp_file_delete <- paste0(file_no_ext, c(".tex", ".aux", ".log"))
Hao Zhu7039ecf2019-01-06 17:51:21 -0500191 unlink(temp_file_delete)
192 }
193
Hao Zhuf1873a42019-01-07 15:57:01 -0500194 table_img_info <- NULL
Hao Zhud8516932019-01-06 18:56:47 -0500195 if (tools::file_ext(file) != "pdf") {
196 table_img_pdf <- try(
Hao Zhuf1873a42019-01-07 15:57:01 -0500197 magick::image_read(paste0(file_no_ext, ".pdf"),
Hao Zhuab670942020-08-19 15:35:35 -0400198 density = density), silent = T)
Bill Evans30b84f52020-09-11 09:54:58 -0700199 if (inherits(table_img_pdf, "try-error")) {
Hao Zhud8516932019-01-06 18:56:47 -0500200 stop("We hit an error when trying to use magick to read the generated ",
Hao Zhu53e59612019-01-15 12:16:06 -0600201 "PDF file. You may check your magick installation and try to ",
202 "use magick::image_read to read the PDF file manually. It's also ",
203 "possible that you didn't have ghostscript installed.")
Hao Zhud8516932019-01-06 18:56:47 -0500204 }
Hao Zhuf1873a42019-01-07 15:57:01 -0500205 unlink(paste0(file_no_ext, ".pdf"))
Hao Zhud8516932019-01-06 18:56:47 -0500206 table_img <- magick::image_convert(table_img_pdf,
207 tools::file_ext(file))
Hao Zhuf1873a42019-01-07 15:57:01 -0500208 table_img_info <- magick::image_info(table_img)
209 magick::image_write(table_img,
Hao Zhuab670942020-08-19 15:35:35 -0400210 paste0(file_no_ext, ".", tools::file_ext(file)),
211 density = density)
Hao Zhu7039ecf2019-01-06 17:51:21 -0500212 }
Hao Zhu7039ecf2019-01-06 17:51:21 -0500213
Hao Zhuf1873a42019-01-07 15:57:01 -0500214 setwd(owd)
215
216 out <- paste0(file_no_ext, ".", tools::file_ext(file))
217 attr(out, "info") <- table_img_info
218 return(invisible(out))
Hao Zhu7f8b6842018-10-23 17:41:13 -0400219}