summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-04-21 13:22:32 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-04-21 13:22:32 +0200
commit45cea3f777a67eecadedffc0e3235bc1d5209bb1 (patch)
treeee296ee70423c88c73eee8ae280ac8651cd08992
parenta17487eddbf327d17e7bccaa210304b342536b39 (diff)
fix 16bit tiff output in stitching mode
-rw-r--r--NEWS3
-rw-r--r--src/gipfel.cxx2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 55cda38..b7bbf4c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,9 @@
gipfel ChangeLog
=================
+gipfel-0.3.2
+* Fix 16bit tiff output in stitching mode.
+
gipfel-0.3.1
* Fix compile error and warnings on Linux.
diff --git a/src/gipfel.cxx b/src/gipfel.cxx
index 9dbf4e6..4fbf26f 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -685,7 +685,7 @@ stitch(GipfelWidget::sample_mode_t m, int b_16,
} else if (type & STITCH_TIFF) {
- st->set_output(new TIFFOutputImage(path, 90));
+ st->set_output(new TIFFOutputImage(path, b_16 ? 16 : 8));
st->resample(m, stitch_w, stitch_h, from, to);
} else {