Jump to content

Recommended Posts

Posted

I need to get the image size, in bytes, of an image that is part of a webpage. The image is a standard gif.

I tried the DOM image object doesn't seem to have a property I can easily reference.

Does anyone know an easy way.... or failing that a hard way?

Posted (edited)

Get image URL from page, then use InetGetSize() ?

Nice. Thanks Rarst

Heres the code for people coming later...

$oImg = _IEImgGetCollection ($oIE, 3)

$sInfo = "Src: " & $oImg.src

$size = InetGetSize($oImg.src)

The three at the end of the first line means the 4th image on the page.

Edited by gruntydatsun

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...