Are there any known size/space limitation of QPixmap
and/or QImage
objects documented? I did not find any useful information regarding this. I\'m c
I actually had occasion to look into this at one time. Do a search in the source code of qimage.cpp
for "sanity check for potential overflows" and you can see the checks that Qt is doing. Basically,
INT_MAX
.malloc
those bytes at the point you are creating the QImage
instance.