The default behavior of the browsershot is to capture requested addresses.
So when you use data urls on the HTML document , this capturing is not good for memory because more addresses consume more memory.
You can disable this option by calling disableCaptureURLs().
Browsershot
::html('More data urls exists in this document')
->disableCaptureURLs()
;