CRload_image | R Documentation |
Loads an image file specified in imagefile, can be of type .bmp, .jpg, .jpeg, .png, .tif.
CRload_image(image_list, imagefile, status = NULL)
image_list |
List of images previously loaded (possibly empty), to which the loaded image is added. |
imagefile |
File of image (full path, filename, extension) of image to be loaded. |
status |
Optional list |
Returns updated image_list with loaded image added. If everything worked fine, returned image_list has an integer valid
set to 1
.
imgl <- list()
imgl <- CRload_image(imgl, "C:/Documents/picture_1.png")
imgl <- CRload_image(imgl, "C:/Documents/picture_2.png")
imgl <- CRload_image(imgl, "C:/Documents/picture_3.png")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.