|
|
|
|
|
by manigandham
2661 days ago
|
|
Don't do this. Browsers are very optimized for subrequests and especially parsing image data. By forcing base64, you're eliminating all the caching and using much more CPU power to parse that back into a binary image. You're also making the page load slower as the initial payload is bigger and image data has to be handled in line rather than asynchronously. |
|