Images are not actually displayed but the image name appears in its place.
Searching the internet I found the following code in javascript that seems to solve the problem but I do not know how to implement it:
Sub WebView_PageFinished (Url As String)
WebViewExtras.ExecuteJavascript("for(i=document.images.length-1;i>=0;i--) { document.images[i].remove() }")
End Sub
Sub WebView_PageFinished (Url As String)
WebViewExtras.ExecuteJavascript("for(i=document.images.length-1;i>=0;i--) { document.images[i].remove() }")
End Sub