Skip to content

Commit 4bb6aa3

Browse files
committed
ggsave: add emf support
1 parent 020fc1a commit 4bb6aa3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

R/save.r

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ ggsave <- function(filename=default_name(plot), plot = last_plot(), device=defau
4646
grDevices::svg(...)
4747
wmf <- function(..., width, height)
4848
grDevices::win.metafile(..., width=width, height=height)
49+
emf <- function(..., width, height)
50+
grDevices::win.metafile(..., width=width, height=height)
4951

5052
png <- function(..., width, height)
5153
grDevices::png(..., width=width, height=height, res = dpi, units = "in")

0 commit comments

Comments
 (0)