blob: 8fcdce4d5d6813ddd1b23bb63ef8f7cb3398f9b7 [file] [log] [blame]
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/as_image.R
\name{as_image}
\alias{as_image}
\title{Render the table as an format-independent image and use it in rmarkdown}
\usage{
as_image(x, width = NULL, height = NULL, ...)
}
\arguments{
\item{x}{kable input. Either HTML or LaTeX}
\item{width}{Image width in inches. (1 inch = 2.54 cm)}
\item{height}{Image height in inches. (1 inch = 2.54 cm)}
\item{...}{Additional arguments passed to save_kable.}
\item{file}{By default, as_image saves to an temp file, which works for
normal rmarkdown. However if you are using things like xaringan, which can't
be a standalone html, you can specify this file be the path you need, eg.
"img/something.png"}
}
\description{
This function generates a temporary png file using \code{save_kable}
and then try to put it in an rmarkdown document using
\code{knitr::include_graphics}.
}