Browse Source

output maxval too

David Rose 22 years ago
parent
commit
1a5404e454
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pandatool/src/imageprogs/imageInfo.cxx

+ 1 - 1
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";
     }
   }
 }