Hello
I need open large TIFF file. My code is the following
QGraphicsScene *scene = new QGraphicsScene;
scene->addPixmap(QPixmap(inputFilename));
ui.graphicsView->setScene(scene);
ui.graphicsView->show();
if i open image 150Mb, it’s showing ok, if i open image with size around 600 Mb
program crushes. How correct read large images ?
Thanks
↧