https://github.com/s-u/tiff
Read and write TIFF images in R
https://github.com/s-u/tiff
Last synced: 5 months ago
JSON representation
Read and write TIFF images in R
- Host: GitHub
- URL: https://github.com/s-u/tiff
- Owner: s-u
- Created: 2013-07-18T15:54:43.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-11-27T23:22:16.000Z (almost 2 years ago)
- Last Synced: 2024-05-18T15:38:41.947Z (over 1 year ago)
- Language: C
- Size: 136 KB
- Stars: 9
- Watchers: 5
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- Awesome-Geospatial - tiff - Read and write TIFF images in R. (R)
README
# tiff
[](https://cran.r-project.org/package=tiff)
[](https://RForge.net/tiff)
[](https://github.com/s-u/tiff/actions/workflows/check.yml)
__tiff__ R package supports TIFF (Tag Image File Format) image format. [readTIFF](https://rforge.net/doc/packages/tiff/readTIFF.html) reads one of more images from a TIFF file, [writeTIFF](https://rforge.net/doc/packages/tiff/writeTIFF.html) writes image data into a TIFF file. See the corresponsing [R documentation](https://rforge.net/doc/packages/tiff/00Index.html).
See also [tiff on RForge.net](https://rforge.net/tiff)
## Installation
On Windows and macOS you can install `tiff` directly from CRAN using
```r
install.packages("tiff")
```
On Linux, you need `libtiff` library and corresponding development files, e.g. on Debian/Ubuntu that is `libtiff-dev`, as well as all tools necessary to build R packages. Once you have it all, then you can use the same method as above.