diff options
author | Thomas White <taw@physics.org> | 2010-04-28 12:07:59 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-04-28 12:07:59 +0200 |
commit | aad3b1798b9ef488e7fb04e2a91f9b46c67d6eb6 (patch) | |
tree | ea663fbf7a0f7fd03b681bc4b39f579230cf70f2 /src/displaywindow.c | |
parent | e05ea5a21fc22aefe147d1ec519c4cfe536d6704 (diff) |
hdfsee: Add 16-bit TIFF export
Diffstat (limited to 'src/displaywindow.c')
-rw-r--r-- | src/displaywindow.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/displaywindow.c b/src/displaywindow.c index 1d737748..d6f47ac5 100644 --- a/src/displaywindow.c +++ b/src/displaywindow.c @@ -587,11 +587,11 @@ static gint displaywindow_save(GtkWidget *widget, DisplayWindow *dw) gtk_box_pack_end(GTK_BOX(hbox), GTK_WIDGET(l), FALSE, FALSE, 5); gtk_combo_box_append_text(GTK_COMBO_BOX(cb), - "PNG - 8 bit RGB (colour, binned)"); + "PNG - 8 bit RGB (colour, binned, filtered, boosted)"); gtk_combo_box_append_text(GTK_COMBO_BOX(cb), - "TIFF - Floating point (mono, unbinned)"); + "TIFF - Floating point (mono, unbinned, filtered, not boosted)"); gtk_combo_box_append_text(GTK_COMBO_BOX(cb), - "TIFF - 16 bit integer (mono, unbinned)"); + "TIFF - 16 bit integer (mono, unbinned, filtered, boosted)"); gtk_combo_box_set_active(GTK_COMBO_BOX(cb), 0); cd = malloc(sizeof(*cd)); |