iminfo | R Documentation |
This function calls ImageMagick's "identify" utility on an image file to get some information. You need ImageMagick on your path for this to work.
iminfo(fname)
fname |
path to a file |
a list with fields name, format, width (pix.), height (pix.), size (bytes)
Simon Barthelme
## Not run:
someFiles <- dir("*.png") #Find all PNGs in directory
iminfo(someFiles[1])
#Get info on all files, as a data frame
info <- purrr::map_df(someFiles,function(v) iminfo(v) %>% as.data.frame)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.