mmh... would you use a simple object QImage in the loader thread and then assign?
Qt Code:
  1. image = imageReader.read();
To copy to clipboard, switch view to plain text mode 
my doubt is that I can start again the thread which should load another QImage. So, if in the following run of my thread I have another:
Qt Code:
  1. image = imageReader.read();
To copy to clipboard, switch view to plain text mode 
is the previous image that was stored in the object deleted? I suppose this is a C++ doubt
Thanks for your help!