Hi all,

I have a quick question and would appreciate it someone could tell me if im completely off the track.

What I'm trying to do save to disc all loaded images in memory that come from a page that is loaded by webkit.
What I have done is intercept each QUrl by subclassing the QNetworkAccessManager which gives me the URL of the file its is referencing on override method "createRequest". This is fine however I am interested in the URL and image data when the request is finished (when createRequest is called the data parameter is empty although I do get the URL and other bit of information). I would like to intercept the loaded image data and save each to the harddrive. How would I intercept the loaded image data?

Am I heading in the right direction with this or there another better way to do this?

Thanks in advance