Learn R Programming

r2rtf (version 1.0.2)

rtf_read_figure: Read Figures into Binary Files

Description

Supported format is listed in r2rtf:::fig_format().

Usage

rtf_read_figure(file)

Value

a list of binary data vector returned by readBin

Arguments

file

A character vector of figure file paths.

Specification

The contents of this section are shown in PDF user manual only.

Examples

Run this code
if (FALSE) {

# Read in PNG file in binary format
file <- tempfile("figure", fileext = ".png")
png(file)
plot(1:10)
dev.off()


rtf_read_figure(file)

# Read in EMF file in binary format
library(devEMF)
file <- tempfile("figure", fileext = ".emf")
emf(file)
plot(1:10)
dev.off()

rtf_read_figure(file)
}

Run the code above in your browser using DataLab