I am using Qt.
Can anyone tell me how to use string inside QProcess?
To be more clear I am making a image convertor in which I take target file path of png file to a string using QFileDialog.
Now I have a exe file which does all conversion of png to jpeg and I need to do somehing like this:
convertor.exe path/to/png/file path/for/storing/converted/output
How I can do this in Qt?
QProcess conv;
conv.start("C:/converter.exe" ??) what to do here?