diff --git a/src/Magnum/Trade/imageconverter.cpp b/src/Magnum/Trade/imageconverter.cpp index aae6c796e..9c9c5b4c6 100644 --- a/src/Magnum/Trade/imageconverter.cpp +++ b/src/Magnum/Trade/imageconverter.cpp @@ -270,7 +270,10 @@ key=true; configuration subgroups are delimited with /.)") for(const Trade::Implementation::ImageInfo& info: infos) { Debug d; if(info.level == 0) { - d << "Image" << info.image << Debug::nospace << ":"; + if(info.size.z()) d << "3D image"; + else if(info.size.y()) d << "2D image"; + else d << "1D image"; + d << info.image << Debug::nospace << ":"; if(!info.name.empty()) d << info.name; if(!compact) d << Debug::newline; }