I want to pickle QPixmap object dict in Python 3
For example,
ImageQpixmapDict = {}
ImageQpixmapDict['XXX'] = QPixmap()
In this situation, I want to pickle ImageQpixmapDict variable
like
pickle.dump(ImageQpixmapDict, 'filePath')
I tried to pickle QPixmap object by using QSettings, but it doesn't work.
But as you know, QPixmap object couldn't be pickled. So, How can I solve this problem.