Use get_resources instead of get_icons that will get you the raw image data which you can use with the Image object as
img.load(data)
instead of image.open(data)
but if all you want to do is resize and save the image, the QIcon class is perfectly capable of doing that, like this
qicon.pixmap(width, height).save(path to file)
|