Results 1 to 2 of 2

Thread: Error when Loading QImage

  1. #1
    Join Date
    Apr 2024
    Posts
    1
    Qt products
    Qt5
    Platforms
    Windows

    Default Error when Loading QImage

    My program crashes when I try to load an image from my computer into a QImage. I made sure that the path to the file is correct and tried to make a QImage pointer, but it still results in an error. This was originally part of a larger program, but even in this simple recreation, it doesn't work.

    Here is my code in main.cpp:

    Qt Code:
    1. #include "mainwindow.h"
    2.  
    3. #include <QApplication>
    4.  
    5. int main(int argc, char *argv[])
    6. {
    7. QApplication a(argc, argv);
    8. MainWindow w;
    9. QImage test;
    10. test.load("C:/IMAGES/IMAGE.png"); // crashes program
    11. w.show();
    12. return a.exec();
    13. }
    To copy to clipboard, switch view to plain text mode 

    Here is the error received when I used the debugger:

    qt.gui.imageio: libpng warning: iCCP: known incorrect sRGB profile
    HEAP[sdf.exe]:
    Invalid address specified to RtlFreeHeap( 00000000000D0000, 0000000000DF7240 )

    There are also no changes in mainwindow.cpp and the header file, but I added "CONFIG += console" to the .pro file.

  2. #2
    Join Date
    Jul 2008
    Location
    Germany
    Posts
    508
    Thanks
    11
    Thanked 76 Times in 74 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: Error when Loading QImage

    Hi, is the image a valid .png file? How large is it? Have you tried other .png files?

    Ginsengelf

Similar Threads

  1. loadFromData() of QImage -crash in case of .gif loading
    By santosh.kumar in forum Qt Programming
    Replies: 1
    Last Post: 3rd March 2011, 11:56
  2. Loading an Image into QImage
    By jstippey in forum Qt Programming
    Replies: 5
    Last Post: 4th January 2011, 14:36
  3. Loading corrupt jpeg images with QImage
    By mikeee7 in forum Qt Programming
    Replies: 15
    Last Post: 3rd December 2010, 01:59
  4. Loading a raw image into QImage
    By Luc4 in forum Qt Programming
    Replies: 6
    Last Post: 16th May 2010, 15:20
  5. QImage not loading successively.
    By node_ex in forum Qt Programming
    Replies: 3
    Last Post: 26th July 2008, 13:20

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.