I am downloading multiple FavIcons from the Google FavIcon helper service:
FIEBitmap.IO.LoadFromStream(MemStream); // original image size from MemStream is 16x16 or 32x32
FIEBitmap.Resample(100, 100, rfLanczos3);
FIEBitmap.IO.SaveToFile(ThisOutputPath);
1. When saving to .ICO format, the 100x100 size does not work: The file instead has the native image size
How to save to a specifif ICO size?
2. When saving to .PNG format, the 100x100 size is correct, but the image results are blurred despite rfLanczos3