qt qimage load from file

#include <QImage>
#include <QString>

int main() {
    // Step 1: Declare a QString variable to store the file path.
    QString filePath = "path/to/your/image.jpg";

    // Step 2: Declare a QImage variable to hold the image data.
    QImage image;

    // Step 3: Load the image from the file into the QImage variable.
    image.load(filePath);

    // Optional Step: Check if the image loading was successful.
    if (image.isNull()) {
        // Handle the case when the image loading fails.
        // You may print an error message or take appropriate actions.
        return -1;
    }

    // The 'image' variable now contains the loaded image data.
    // You can perform further operations on the QImage if needed.

    return 0;
}