Google Analytics是否跟踪使用javascript更改的图像?

Google Analytics是否跟踪使用javascript更改的图像?,javascript,image,google-analytics,Javascript,Image,Google Analytics,我有以下一段HTML,它使用用户选择的图像更改页面上的图像: HTML: <input name="photo" type="file" accept="image/*" onchange="changePhoto(this.files[0])"> <img id='image' src="starting.png"/> function changePhoto(subm

我有以下一段HTML,它使用用户选择的图像更改页面上的图像:

HTML

<input name="photo" type="file" accept="image/*" onchange="changePhoto(this.files[0])">
<img id='image' src="starting.png"/>
function changePhoto(submitted_file) {
    document.getElementById('image').src = window.URL.createObjectURL(submitted_file);
}

如果我添加Google Analytics,所选图像是否会上载到Google服务器上?我试图理解这一点是出于隐私目的。

不,谷歌分析不会跟踪图像更改或将图像上载到谷歌服务器。

谢谢。你对此还有什么见解吗?