I have written a library to get JPG files from a webserver continously. It worked fine with Qt 4.6.3 but with the new Qt 4.7.0 I have get the following error for every frame:
The workaround is the following:
Turn off the automatic format detection, and set the file format explititly:
And no more warnings
Reading ras files from sequential devices not supported
The workaround is the following:
Turn off the automatic format detection, and set the file format explititly:
imageReader->setAutoDetectImageFormat(false);
imageReader->setFormat("JPG"
And no more warnings