This repository was archived by the owner on Aug 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNEWS
67 lines (44 loc) · 1.95 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
NEWS/Changelog
0.1.7
o Support `~` in paths passed to `writeTIFF`. #1
0.1.6
o Add limited support for tiled images. Supports 8-, 16- and 32-bit
integer and float images with spp=1 or 3. No support for indexed,
color map, as.is, or planar format color.
o Add readTIFFDirectory() function to read image tags without
reading the actual image.
o Add the ability to read (or get info on) selected images by passing
a vector in the `all` parameter.
o Add width, length, x.position, y.position, and, if available,
rows.per.strip, tile.width, tile.length to the directory
info returned when `info=TRUE` (and by readTIFFDirectory).
o Update to libtiff 4.0.6 from the Rtools site.
o Stop with an error if `as.is=TRUE` is used with a float image.
o Fixed documentation typos.
0.1-5 2013-09-03
o bugfix: output of readTIFF(..., as.is=TRUE) with integer
values was shifted by one (i.e., stored integer value x
was returned as x + 1)
o writeTIFF() now supports 32-bit (integer) output
o writeTIFF() issues a warning if the input data range
is outside [0, 1]
0.1-4 2013-02-19
o remove debugging output (it is now only shown if tiff
is compiled with -DTIFF_DEBUG=1)
0.1-3 2012-11-05
o add support for 12-bit grayscale TIFF images in readTIFF()
(Note that 12-bit TIFFs are outside of the standard, so
we assume big-endian packing order)
o add readTIFF(..., as.is=TRUE) which preserves the integer
values used in the TIFF as they are (if applicable) instead
of rescaling to reals
0.1-2 2012-08-30
o fixed a bug in writeTIFF() for 16-bit images
0.1-1 2012-08-24
o add readTIFF(..., indexed=TRUE) which return indexed images as
color map and an index matrix.
o fixed a bug in writing a TIFF file consisting of multiple
subimages
o prevent TIFF from re-entering error calls
0.1-0 2012-08-04
o first CRAN release