EMF+: Log the stride too.

Change-Id: I903d8e5629c578f292307bf3abdb2f58ef9dd92c
This commit is contained in:
Jan Holesovsky 2013-12-05 09:07:44 +01:00
parent 4aa1c8d914
commit eb45c69b64

View File

@ -959,7 +959,7 @@ namespace cppcanvas
if (type == 1) { // bitmap
s >> width >> height >> stride >> pixelFormat >> unknown;
SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << width << " height: " << height << " stride: " << "pixelFormat: 0x" << std::hex << pixelFormat << std::dec);
SAL_INFO("cppcanvas.emf", "EMF+\tbitmap width: " << width << " height: " << height << " stride: " << stride << " pixelFormat: 0x" << std::hex << pixelFormat << std::dec);
if (width == 0) { // non native formats
GraphicFilter filter;