Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jefferis/bmp
A simple R package to read Windows BMP format images
https://github.com/jefferis/bmp
Last synced: 27 days ago
JSON representation
A simple R package to read Windows BMP format images
- Host: GitHub
- URL: https://github.com/jefferis/bmp
- Owner: jefferis
- Created: 2011-12-06T22:27:55.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2017-09-11T10:47:47.000Z (about 7 years ago)
- Last Synced: 2023-04-16T09:10:56.115Z (over 1 year ago)
- Language: R
- Homepage:
- Size: 120 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Travis-CI Build Status](https://travis-ci.org/jefferis/bmp.svg?branch=master)](https://travis-ci.org/jefferis/bmp)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/bmp)](https://cran.r-project.org/package=bmp)Introduction
============
* Simple R package to read [Windows BMP format][bmp] images.
* No external dependencies
* Currently only reads 8 bit greyscale and 24 or 32 bit RGB images.
* Limited testing## Installation
### Released versions
The recommendation is to install from [CRAN](https://cran.r-project.org/).```r
install.packages("bmp")
```### Bleeding Edge
You can, however, download the [tar ball](https://github.com/jefferis/bmp/tarball/master), and run `R CMD INSTALL` on it, or use the **devtools** package to install the development version:```r
# install.packages("devtools")library(devtools)
install_github("bmp", "jefferis")
```Note: Windows users need [Rtools](http://www.murdoch-sutherland.com/Rtools/) and [devtools](https://CRAN.R-project.org/package=devtools) to install this way.
----[bmp]: http://en.wikipedia.org/wiki/BMP_file_format