From 1a5404e45456afff29f43fb0bb1d0bffdb40850b Mon Sep 17 00:00:00 2001 From: David Rose Date: Wed, 4 Feb 2004 00:53:22 +0000 Subject: [PATCH] output maxval too --- pandatool/src/imageprogs/imageInfo.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandatool/src/imageprogs/imageInfo.cxx b/pandatool/src/imageprogs/imageInfo.cxx index bc7a271e94..cfb5e890e8 100755 --- a/pandatool/src/imageprogs/imageInfo.cxx +++ b/pandatool/src/imageprogs/imageInfo.cxx @@ -53,7 +53,7 @@ run() { // Successfully read the image header. nout << filename << ": " << header.get_x_size() << " x " << header.get_y_size() << " x " << header.get_num_channels() - << "\n"; + << " (maxval = " << header.get_maxval() << ")\n"; } } }