Learn R Programming

rtiff (version 1.4.8)

writeTiff: A function to load TIFF images into a pixmap.

Description

Loads a TIFF image from a file and returns the image as a pixmap object, with optional scaling.

Usage

writeTiff(pixmap, fn)

Arguments

pixmap

Either a pixmapRGB or matrix containing the image to save. In the case of a matrix, a new pixmapRGB will be created from it. The resulting TIFF file will be RGB, but will appear grey because each channel will be identical.

fn

What to call the new tiff file.

Value

None. Used for its handy side effect of creating a tiff file.

Details

This function saves the given pixmap or matrix raster as an unencrypted TIFF image, utilizing libtiff's TIFFWriteEncodedStrip, with the entire raster in a single strip (for simplicity).

Examples

Run this code
# NOT RUN {
tif <- readTiff(system.file("tiff", "jello.tif", package="rtiff"))
writeTiff(tif@red, "atesttif.tif")
# }

Run the code above in your browser using DataLab