Thank you so much. It is in fact a URL and you can use this to load it into a Image.
void dataSender::fetchImage(QString filePath)
{
const QUrl url =filePath;
if (url.isValid()) {
qDebug() << "Valid URL: " ;
QString test = url.path();
QImage myImage(test);
qDebug() << "Image Size " << myImage.size();
}
else{
qDebug() << "the url is invalid";
}
}