Skip to content
Snippets Groups Projects
Commit 52025b9e authored by Andreas Schenk's avatar Andreas Schenk
Browse files

fixed subimage initialization in tiff file format ctor

parent 62b02e58
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,8 @@ String TIF::FORMAT_STRING="defined_tiff"; ...@@ -51,7 +51,8 @@ String TIF::FORMAT_STRING="defined_tiff";
normalize_on_save_(normalize_on_save), normalize_on_save_(normalize_on_save),
bit_depth_(bit_depth), bit_depth_(bit_depth),
signed_(sign), signed_(sign),
phasecolor_(phasecolor) phasecolor_(phasecolor),
subimage_(-1)
{ {
} }
...@@ -60,7 +61,8 @@ TIF::TIF(String format_string, boost::logic::tribool normalize_on_save, Format ...@@ -60,7 +61,8 @@ TIF::TIF(String format_string, boost::logic::tribool normalize_on_save, Format
normalize_on_save_(normalize_on_save), normalize_on_save_(normalize_on_save),
bit_depth_(bit_depth), bit_depth_(bit_depth),
signed_(sign), signed_(sign),
phasecolor_(phasecolor) phasecolor_(phasecolor),
subimage_(-1)
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment