How to copy one QImage into another QImage? I do not want to change the size of image
QImage src=function_name(); QImage dst;
You can use the QImage::copy() function. For example:
QImage::copy()
QImage src = function_name(); QImage dst = src.copy();
2.1m questions
2.1m answers
60 comments
57.0k users