Description Usage Arguments Value Examples
View source: R/read-any-bitmap.R
Currently works for png, jpeg, BMP, and tiff images. Will seek to start of file if passed a connection. For details of magic values for files, see e.g. http://en.wikipedia.org/wiki/Magic_number_(programming)#Magic_numbers_in_files
1 | image_type(source, Verbose = FALSE)
|
source |
Path to file or connection |
Verbose |
Whether to write a message to console on failure (Default
|
character value corresponding to standard file extension of image
format (i.e. jpg, png, bmp, tif) or NA_character_
on failure.
1 2 3 4 5 6 | jpegfile=system.file("img", "Rlogo.jpg", package="jpeg")
image_type(jpegfile)
jpeg_pretending_to_be_png=tempfile(fileext = '.png')
file.copy(jpegfile, jpeg_pretending_to_be_png)
image_type(jpeg_pretending_to_be_png)
unlink(jpeg_pretending_to_be_png)
|
[1] "jpg"
[1] TRUE
[1] "jpg"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.